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 |
| 126 | cat << EOF > configs my_defconfig |
| 127 | BR2_aarch64=y |
| 128 | BR2_TARGET_ROOTFS_CPIO=y |
| 129 | BR2_TARGET_ROOTFS_CPIO_XZ=y |
| 130 | BR2_TARGET_ROOTFS_TAR_XZ=y |
| 131 | EOF |
| 132 | make my_defconfig |
| 133 | }}} |