Changes between Version 13 and Version 14 of buildroot
- Timestamp:
- 12/02/2019 09:07:20 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
buildroot
v13 v14 156 156 * The latest [http://dev.gateworks.com/newport/boot_firmware/firmware-newport.img firmware-newport.img] boot firmware if you would like to create a compressed disk image. 157 157 158 With the Newport BSP installed , and Buildroot cloned, configure Buildroot in make menuconfig with the two following options:158 With the Newport BSP installed and Buildroot cloned set target architecture to AArch64: 159 159 {{{#!bash 160 160 cd buildroot 161 make menuconfig 162 }}} 163 * Target options -> Target Architecture -> AArch64 (little endian) (BR2_aarch64) 164 * Filesystem images -> tar the root filesystem -> Compression method (xz) (BR2_TARGET_ROOTFS_CPIO_XZ) 165 166 Save the .config and exit. 161 cat << EOF > configs/my_defconfig 162 BR2_aarch64=y 163 EOF 164 }}} 167 165 168 166 Now: 169 167 {{{#!bash 168 make my_defconfig 170 169 make -j8 171 170 }}}