diff options
author | Daniel Golle <daniel@makrotopia.org> | 2021-02-21 14:19:26 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2021-02-24 01:35:20 +0000 |
commit | 330bd380e8b691833c8dcc9b579b51851cbd4b0f (patch) | |
tree | a6e6859d1888644af99fe332eef67eead435aa9c /config/Config-images.in | |
parent | e6aac8d98f5663be99163f9e61dad23ad657b7ed (diff) | |
download | upstream-330bd380e8b691833c8dcc9b579b51851cbd4b0f.tar.gz upstream-330bd380e8b691833c8dcc9b579b51851cbd4b0f.tar.bz2 upstream-330bd380e8b691833c8dcc9b579b51851cbd4b0f.zip |
image: allow building FIT and uImage with ramdisk
Instead of embedding the initrd cpio archive into the kernel, allow
for having an external ramdisk added to the FIT or uImage.
This is useful to overcome kernel size limitations present in many
stock bootloaders, as the ramdisk is then loaded seperately and doesn't
add to the kernel size. Hence we can have larger ramdisks to host ie.
installers with all binaries to flash included (or a web-based
firmware selector).
In terms of performance and total size the differences are neglectible.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'config/Config-images.in')
-rw-r--r-- | config/Config-images.in | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/config/Config-images.in b/config/Config-images.in index 957d3af18f..080fee2cce 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -35,9 +35,11 @@ menu "Target Images" bool "lzma" config TARGET_INITRAMFS_COMPRESSION_LZO + depends on !TARGET_ROOTFS_INITRAMFS_SEPERATE bool "lzo" config TARGET_INITRAMFS_COMPRESSION_LZ4 + depends on !TARGET_ROOTFS_INITRAMFS_SEPERATE bool "lz4" config TARGET_INITRAMFS_COMPRESSION_XZ @@ -56,11 +58,20 @@ menu "Target Images" Kernel uses specified external cpio as INITRAMFS_SOURCE. config TARGET_INITRAMFS_FORCE - bool "Force" - depends on TARGET_ROOTFS_INITRAMFS - default n - help - Ignore the initramfs passed by the bootloader. + bool "Force" + depends on TARGET_ROOTFS_INITRAMFS + default n + help + Ignore the initramfs passed by the bootloader. + + config TARGET_ROOTFS_INITRAMFS_SEPERATE + bool "seperate ramdisk" + depends on TARGET_ROOTFS_INITRAMFS && !TARGET_INITRAMFS_FORCE + default y if USES_SEPERATE_INITRAMFS + help + Generate seperate initrd.cpio instead of embedding it. + This is useful for generating images with a dedicated + ramdisk e.g. in U-Boot's uImage and uImage.FIT formats. comment "Root filesystem archives" |