# rpad_imx6_uboot **Repository Path**: mzy2364/rpad_imx6_uboot ## Basic Information - **Project Name**: rpad_imx6_uboot - **Description**: 适用于rpad-imx6开发板的uboot源码 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-06-17 - **Last Updated**: 2024-10-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rpad_imx6_uboot ### 介绍 适用于rpad-imx6开发板的uboot源码 ### 安装必要软件 ``` sudo apt-get install lib32ncurses5 lib32tinfo5 libc6-i386 ``` ### 交叉编译工具 ``` arm-linux-gnueabihf- ``` ### 导出环境变量 ``` export PATH=$PATH:/opt/arm-linux-gcc/bin export ARCH=arm export CROSS_COMPILE=arm-linux-gnueabihf- ``` 每个电脑的交叉编译器的路径不一样,只要在终端输入`arm-linux-gnueabihf-gcc --version` 后能显示 gcc 的版本即可 ### 开始编译 ``` make distclean make mx6ull_rpad_defconfig make -j4 ``` ### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request