diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2012-07-30 14:32:46 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-31 23:08:28 +0200 |
commit | 902609fbb31506dfe04f100c9c8099fbfa8095a1 (patch) | |
tree | 85945c3d904607883c1960cbbcfa154e083b552e /linux/Config.in | |
parent | 69fc497df0ae51bcc8a067c849447abdeb3cb2be (diff) |
Factorize the u-boot images code
This patch introduces the BR2_LINUX_KERNEL_UBOOT_IMAGE boolean to
factorize more code that will be shared in the next patches that
introduces other uImage-like targets.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'linux/Config.in')
-rw-r--r-- | linux/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/Config.in b/linux/Config.in index 16c7ea72f..84fae910e 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -129,12 +129,16 @@ config BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE # Binary format # +config BR2_LINUX_KERNEL_UBOOT_IMAGE + bool + choice prompt "Kernel binary format" config BR2_LINUX_KERNEL_UIMAGE bool "uImage" depends on BR2_arm || BR2_armeb || BR2_bfin || BR2_powerpc || BR2_avr32 || BR2_sh || BR2_sh64 + select BR2_LINUX_KERNEL_UBOOT_IMAGE config BR2_LINUX_KERNEL_BZIMAGE bool "bzImage" |