diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-11 14:49:22 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-15 22:18:45 +0200 |
commit | c78d57637cd57a383e44713eb27e654b3071340e (patch) | |
tree | 2fdc835f83a3b8e17b757f4fabee5b534fb29a5c /linux/Config.in | |
parent | 58b748dc480f79f49a341ba81defc7fe7425adc9 (diff) | |
download | buildroot-c78d57637cd57a383e44713eb27e654b3071340e.tar.gz buildroot-c78d57637cd57a383e44713eb27e654b3071340e.zip |
linux: add option to explicitly specify the kernel image name
For example the upcoming qemu-xtensa patch is using this feature,
where the target is called "zImage", but the resulting kernel name
is "Image.elf".
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'linux/Config.in')
-rw-r--r-- | linux/Config.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/linux/Config.in b/linux/Config.in index 0a13b1397b..c13b9290a5 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -244,6 +244,16 @@ config BR2_LINUX_KERNEL_IMAGE_TARGET_NAME Specify the kernel make target to build the kernel that you need. +config BR2_LINUX_KERNEL_IMAGE_NAME + string "Kernel image name" + depends on BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM + help + The filename of the kernel image, if it is different from the + make target (above). Only Xtensa uses a filename different from + the make target. Defaults to BR2_LINUX_KERNEL_IMAGE_TARGET_NAME. + + If unsure, leave it empty. + config BR2_LINUX_KERNEL_UIMAGE_LOADADDR string "load address (for 3.7+ multi-platform image)" depends on BR2_arm || BR2_armeb |