# rpad_imx6_linux **Repository Path**: mzy2364/rpad_imx6_linux ## Basic Information - **Project Name**: rpad_imx6_linux - **Description**: 适用于rpad的linux源码 - **Primary Language**: C - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 5 - **Created**: 2020-07-03 - **Last Updated**: 2024-06-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rpad_imx6_linux ## 介绍 适用于rpad的linux源码 ## 交叉编译工具 arm-linux-gnueabihf- ## 开始编译 ### 安装必要的库 ```shell sudo apt-get install lzop libncurses5-dev ``` ### 导出环境变量 ```shell export PATH=$PATH:/opt/arm-linux-gcc/bin export ARCH=arm export CROSS_COMPILE=arm-linux-gnueabihf- ``` ### 开始编译 ```shell make distclean make imx_rpad_defconfig make ``` ## 编译生成的镜像路径 #### 内核镜像路径 ```shell ./arch/arm/boot/zImage ``` #### 设备树输出路径 ```shell ./arch/arm/boot/dts/imx6ull-rpad.dtb ```