Skip to content

Commit

Permalink
Config.in: add more options when it comes to including kernel image i…
Browse files Browse the repository at this point in the history
…nto rootfs

Signed-off-by: Luka Perkov <[email protected]>

SVN-Revision: 38517
  • Loading branch information
lperkov committed Oct 23, 2013
1 parent 7938d16 commit 0c5c12a
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,38 @@ 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
help
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
Expand Down

0 comments on commit 0c5c12a

Please sign in to comment.