diff options
author | Luka Perkov <luka@openwrt.org> | 2013-10-23 22:16:10 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2013-10-23 22:16:10 +0000 |
commit | 0c5c12a042bbea9cc718e139f14eb98550da6028 (patch) | |
tree | 8fc21f082372e106f02a6ec7dc9fe67f2e96ec6b /Config.in | |
parent | 7938d1645165192abaaf4e4cdbe0bbb880ec3a9c (diff) | |
download | mtk-20170518-0c5c12a042bbea9cc718e139f14eb98550da6028.zip mtk-20170518-0c5c12a042bbea9cc718e139f14eb98550da6028.tar.gz mtk-20170518-0c5c12a042bbea9cc718e139f14eb98550da6028.tar.bz2 |
Config.in: add more options when it comes to including kernel image into rootfs
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38517
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -173,7 +173,7 @@ menu "Target Images" help Allows you to change the percentage of reserved blocks in the root filesystem - config TARGET_ROOTFS_INCLUDE_KERNEL + menuconfig TARGET_ROOTFS_INCLUDE_KERNEL bool "Include kernel in root filesystem" depends on TARGET_ROOTFS_UBIFS || TARGET_ROOTFS_EXT4FS default n if USES_UBIFS @@ -181,6 +181,30 @@ menu "Target Images" Include the kernel image in the rootfs. Typically the image is placed below /boot. + config TARGET_ROOTFS_INCLUDE_UIMAGE + bool "include uImage" if TARGET_ROOTFS_INCLUDE_KERNEL + default y + help + This option might not apply to all targets. Make sure + to check target/linux/<your_target>/image/Makefile to + see if this option will have any effect. + + config TARGET_ROOTFS_INCLUDE_ZIMAGE + bool "include zImage" if TARGET_ROOTFS_INCLUDE_KERNEL + default y + help + This option might not apply to all targets. Make sure + to check target/linux/<your_target>/image/Makefile to + see if this option will have any effect. + + config TARGET_ROOTFS_INCLUDE_FIT + bool "include FIT" if TARGET_ROOTFS_INCLUDE_KERNEL + default y + help + This option might not apply to all targets. Make sure + to check target/linux/<your_target>/image/Makefile to + see if this option will have any effect. + config TARGET_ROOTFS_INCLUDE_DTB bool "Include DTB in root filesystem" depends on TARGET_ROOTFS_UBIFS || TARGET_ROOTFS_EXT4FS |