Changes between Version 20 and Version 21 of buildroot


Ignore:
Timestamp:
06/05/2020 03:08:54 PM (4 years ago)
Author:
Tim Harvey
Comment:

added defconfig for newport

Legend:

Unmodified
Added
Removed
Modified
  • buildroot

    v20 v21  
    117117
    118118To configure buildroot for the Cavium CN80XX/CN81XX SoC found on the Newport product family:
    119  * Target options -> Target Architecture -> AArch64 (little endian) (BR2_aarch64)
    120  * Filesystem images -> tar the root filesystem -> Compression method (xz) (BR2_TARGET_ROOTFS_CPIO_XZ)
    121  * Filesystem images -> cpio the root filesystem (BR2_TARGET_ROOTFS_CPIO)
    122  * Filesystem images -> Compression method (xz) (BR2_TARGET_ROOTFS_TAR_XZ)
     119 - interactive menu options:
     120  * Target options -> Target Architecture -> AArch64 (little endian) (BR2_aarch64)
     121  * Filesystem images -> tar the root filesystem -> Compression method (xz) (BR2_TARGET_ROOTFS_CPIO_XZ)
     122  * Filesystem images -> cpio the root filesystem (BR2_TARGET_ROOTFS_CPIO)
     123  * Filesystem images -> Compression method (xz) (BR2_TARGET_ROOTFS_TAR_XZ)
     124 - defconfig:
     125{{{#!bash
     126cat << EOF > configs my_defconfig
     127BR2_aarch64=y
     128BR2_TARGET_ROOTFS_CPIO=y
     129BR2_TARGET_ROOTFS_CPIO_XZ=y
     130BR2_TARGET_ROOTFS_TAR_XZ=y
     131EOF
     132make my_defconfig
     133}}}
    123134
    124135This builds a ~500KiB output/images/root.tar.xz in less than 5 minutes on a typical Linux desktop.