• 开发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
    
    • 1
    • 2

    二、下载 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
    
    • 1
    • 2
    • 3

    方式二:

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

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

    export PATH=~/bin:$PATH
    
    • 1

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

    三、配置git

    	$ git config --global user.name "Your Name"
    	$ git config --global user.email "Your Email"
    	$ git config –list
    
    • 1
    • 2
    • 3

    如果大家对于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
    
    • 1
    • 2
    • 3
    • 4
    • 5

    因为最近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
    
    • 1
    • 2
    • 3

    最新下载网址

    五、定制自己的机器

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

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

    执行该脚本只会就会自动进入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 '
    
    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
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

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

    bitbake core-image-base
    
    • 1

    六、构建镜像

    bitbake core-image-base
    
    • 1

    总结

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

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

  • 相关阅读:
    数人云操作系统 2.0 发布
    【数组】设计有序流
    Jupyter Notebook,学习python数据科学最好的学习开发环境
    react笔记_06react中进行事件绑定
    图片公式识别@文档公式识别@表格识别@在线和离线OCR工具
    KSO - docker部署Rabbitmq的详细讲解以及各种隐藏坑
    3天精通Postman---动态参数&断言&CSV数据驱动&Mock Server
    react源码中的fiber架构
    构建银行人工智能用户画像和自动营销体系
    数据库中查询所有表信息,查询所有字段信息
  • 原文地址:https://blog.csdn.net/qq_24093081/article/details/130903019