Changes between Version 13 and Version 14 of buildroot


Ignore:
Timestamp:
12/02/2019 09:07:20 PM (4 years ago)
Author:
Cale Collins
Comment:

changed make menuconfig to defconfig method for ext4 example

Legend:

Unmodified
Added
Removed
Modified
  • buildroot

    v13 v14  
    156156* 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.
    157157
    158 With the Newport BSP installed, and Buildroot cloned, configure Buildroot in make menuconfig with the two following options:
     158With the Newport BSP installed and Buildroot cloned set target architecture to AArch64:
    159159{{{#!bash
    160160cd 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. 
     161cat << EOF > configs/my_defconfig
     162BR2_aarch64=y
     163EOF
     164}}}
    167165
    168166Now:
    169167{{{#!bash
     168make my_defconfig
    170169make -j8
    171170}}}