|
@@ -5,10 +5,11 @@ config BR2_TARGET_ROOTFS_CPIO
|
|
used for an initial RAM filesystem that is passed to the kernel
|
|
used for an initial RAM filesystem that is passed to the kernel
|
|
by the bootloader.
|
|
by the bootloader.
|
|
|
|
|
|
|
|
+if BR2_TARGET_ROOTFS_CPIO
|
|
|
|
+
|
|
choice
|
|
choice
|
|
prompt "Compression method"
|
|
prompt "Compression method"
|
|
default BR2_TARGET_ROOTFS_CPIO_NONE
|
|
default BR2_TARGET_ROOTFS_CPIO_NONE
|
|
- depends on BR2_TARGET_ROOTFS_CPIO
|
|
|
|
help
|
|
help
|
|
Select compressor for cpio filesystem of the root filesystem.
|
|
Select compressor for cpio filesystem of the root filesystem.
|
|
If you use the cpio archive as an initial RAM filesystem, make
|
|
If you use the cpio archive as an initial RAM filesystem, make
|
|
@@ -47,3 +48,13 @@ config BR2_TARGET_ROOTFS_CPIO_XZ
|
|
|
|
|
|
endchoice
|
|
endchoice
|
|
|
|
|
|
|
|
+config BR2_TARGET_ROOTFS_CPIO_UIMAGE
|
|
|
|
+ bool "Create U-Boot image of the root filesystem"
|
|
|
|
+ select BR2_PACKAGE_HOST_UBOOT_TOOLS
|
|
|
|
+ help
|
|
|
|
+ Add a U-Boot header to the cpio root filesystem. This allows
|
|
|
|
+ the initramfs to be loaded with the bootm command in U-Boot.
|
|
|
|
+
|
|
|
|
+ The U-Boot image will be called rootfs.cpio.uboot
|
|
|
|
+
|
|
|
|
+endif # BR2_TARGET_ROOTFS_CPIO
|