diff options
author | Martin Hicks <mort@bork.org> | 2011-03-21 13:39:43 -0400 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-04-01 14:53:46 +0200 |
commit | e2ed6c8e77fb810915a0f45d5f711d678469511f (patch) | |
tree | f7e71f609e676a61504b78cec0c940f4677456c5 /linux/Config.in | |
parent | 06002a58b53e27da33b2e32697e07058b5f3b9b8 (diff) | |
download | buildroot-novena-e2ed6c8e77fb810915a0f45d5f711d678469511f.tar.gz buildroot-novena-e2ed6c8e77fb810915a0f45d5f711d678469511f.zip |
linux: Add support to specify special Kernel Image make target
This is useful for ARCHes like PowerPC that have a whole lot of
special targets for each different board. The kernel image target
tells make which OpenFirmware machine description file is combined into
the kernel binary.
[Peter: fix long lines]
Signed-Off-By: Martin Hicks <mort@bork.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'linux/Config.in')
-rw-r--r-- | linux/Config.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/linux/Config.in b/linux/Config.in index 75e574f45..f7d7f88ec 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -133,8 +133,26 @@ config BR2_LINUX_KERNEL_VMLINUX bool "vmlinux" depends on BR2_mips || BR2_mipsel +config BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM + bool "custom target" + help + For certain cases a board-specific target image must be + used. For example, on powerPC where the OpenFirmware + description is attached in a board-specific kernel image + target like 'cuImage.mpc8379_rdb'. + + Select this option and specify the make target in "Kernel + image target name". + endchoice +config BR2_LINUX_KERNEL_IMAGE_TARGET_NAME + string "Kernel image target name" + depends on BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM + help + Specify the kernel make target to build the kernel that you + need. + endif # BR2_LINUX_KERNEL endmenu |