在编译系统的时候遇到有些软件包下载特别慢,可以用浏览器下载,然后放在buildroot根目录的dl目录里面,缩短下载时间。
dl文件夹包下载:https://pan.baidu.com/s/1i7aOTm9
make
You need to executemake configat first.make config
Use default config: freescale_imx6dlsabresd_defconfigmake savedefconfig
Save default config: freescale_imx6dlsabresd_defconfigmake cleanmake help
Download: https://github.com/ZengjfOS/Buildroot/tree/fsl_uboot_L4.1.15_from_TP
#!/bin/bash
export CROSS_COMPILE=arm-buildroot-linux-gnueabi-
export ARCH=arm
make imx_v7_defconfig
make -j4 LOADADDR=0x10008000 zImage
make -j4 LOADADDR=0x10008000 dtbs
make -j4 LOADADDR=0x10008000 modules
make -j4 LOADADDR=0x10008000 modules_install INSTALL_MOD_PATH=`pwd`/_install_libDownload: https://github.com/ZengjfOS/Buildroot/tree/fsl_uboot_L4.1.15_from_TP
#!/bin/bash
export CROSS_COMPILE=arm-buildroot-linux-gnueabi-
export ARCH=arm
make mx6dlsabresd_defconfig
make -j4