# uboot_imx6ull_mini **Repository Path**: wangjun009xx/uboot_imx6ull_mini ## Basic Information - **Project Name**: uboot_imx6ull_mini - **Description**: 野火 imx6ull mini 开发板 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-07-31 - **Last Updated**: 2025-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # imx6ull_mini_uboot ## 开发环境 **ubuntu18.04** **安装独立编译工具链** arm-linux-gnueabihf ```bash sudo apt-get install gcc-arm-linux-gnueabihf ``` **测试arm-linux-gnueabihf安装是否成功** ```bash arm-linux-gnueabihf-gcc -v ``` **如果系统是64位的** 如果出现`No such file or directory`问题,可以用以下命令解决 ```bash sudo apt-get install lib32ncurses5 lib32tinfo5 libc6-i386 ``` *** ## 编译过程 ```bash ./build.sh ``` ## 编译生成的uboot输出路径 生成`u-boot.imx`文件 ```bash imx6ull_mini_uboot/u-boot.imx ``` *** ## 其他信息 **内核版本** 来源官方 `imx_v2016.03_4.1.15_2.0.0_ga` 分支 uboot官方源码:[http://git.freescale.com/git/cgit.cgi/imx/uboot-imx.git/](http://git.freescale.com/git/cgit.cgi/imx/uboot-imx.git/) ```bash # Clone git://git.freescale.com/imx/uboot-imx.git http://git.freescale.com/git/cgit.cgi/imx/uboot-imx.git ```