您现在的位置是:首页 >学无止境 >开发yocto系统-1网站首页学无止境

开发yocto系统-1

不知道起个啥名“” 2024-06-30 12:01:02
简介开发yocto系统-1

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


前言

本文将记录如何搭建一个yocto的开发环境


提示:以下是本篇文章正文内容,下面案例可供参考

一、需要的主机环境?

一般来说我们的编译环境都是在Linux系统下编译YOCTO工程,比如Ubuntu,需要的电脑配置要求如下:
1.At least 90 Gbytes of free disk space 至少有90G的硬盘空间

2.At least 8 Gbytes of RAM 至少有 8G内存

3.Git 1.8.3.1 or greater

4.tar 1.28 or greater

5.Python 3.8.0 or greater.

6.gcc 8.0 or greater.

7.GNU make 4.0 or greater

大家可以依据上面参考来升级自己的电脑硬件和软件配置,以便达到编译的要求。

$ sudo apt install gawk wget git diffstat unzip texinfo gcc build-essential chrpath socat cpio python3 python3-pip python3-pexpect xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev python3-subunit mesa-common-dev zstd liblz4-tool file locales
$ sudo locale-gen en_US.UTF-8

二、下载 repo

方式一:

	$ mkdir ~/bin (this step may not be needed if the bin folder already exists)
	$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
	$ chmod a+x ~/bin/repo

方式二:

curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
chmod a+x repo

Add the following line to the .bashrc file to ensure that the ~/bin folder is in your PATH variable.

export PATH=~/bin:$PATH

如果方式一没成功的话,可能因为网络问题大家可以换下源。

三、配置git

	$ git config --global user.name "Your Name"
	$ git config --global user.email "Your Email"
	$ git config –list

如果大家对于git使用不是熟悉的话,可以看这网站:
https://git-scm.com/book/en/v2

四、下载源码

前面配置好git 和下载好repo之后就可以下载YOCTO 工程过来,这里我以NXP的YOCTO为例:

	$ mkdir imx-yocto-bsp
	$ cd imx-yocto-bsp
	$ repo init -u https://source.codeaurora.org/external/imx/imx-manifest
		-b imx-linux-gatesgarth -m imx-5.10.9-1.0.0.xml
	$ repo sync

因为最近source.codeaurora.org好像不在维护所以,可能需要替换下载源:

repo init -u https://github.com/nxp-imx/imx-manifest  -b imx-linux-gatesgarth -m imx-5.10.9-1.0.0.xml

repo sync

最新下载网址

五、定制自己的机器

比如说,我使用的是imx6ull,那么就可以,借助NXP提供的脚本来设置自己的机器:

DISTRO=fsl-imx-fb MACHINE=imx6ull14x14evk source setup-environment -b build

执行该脚本只会就会自动进入build目录,并且会打印如下提示:

Welcome to Freescale Community BSP

The Yocto Project has extensive documentation about OE including a
reference manual which can be found at:
    http://yoctoproject.org/documentation

For more information about OpenEmbedded see their website:
    http://www.openembedded.org/

You can now run 'bitbake <target>'

Common targets are:
    core-image-minimal
    meta-toolchain
    meta-toolchain-sdk
    adt-installer
    meta-ide-support

Your configuration files at build/ have not been touched.

从打印信息可以提取出:
1.可以参考http://yoctoproject.org/documentation了解更多NXP的YOCTO工程
2.可以参考http://www.openembedded.org/添加链接描述了解更多openembedded
3.可以使用bitbake 构建自己的镜像,比如:

bitbake core-image-base

六、构建镜像

bitbake core-image-base

总结

以上就是整个开发YOCTO开发环境的搭建,但是执行过程中可能会遇到各种网络下载不了的问题,所以在这里提供了一些已下载的文件:

特别说明:以下内容是别人的:
yocto源码和编译过程需要下载的东西
链接:https://pan.baidu.com/s/1ZjacarkPpEIOTbiO_GQsCA
提取码:shw1

风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。