diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-11-08 07:31:25 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-11-08 07:31:25 +0000 |
commit | b6e9f1dfe08740a77da7def31ca05e8ca548bed6 (patch) | |
tree | 3fae6ede6bc76d4f6260a9c54b81d4162d81b998 | |
parent | c8dbba39195094d4c9cbe2d41732d08785a03a52 (diff) | |
download | upstream-b6e9f1dfe08740a77da7def31ca05e8ca548bed6.tar.gz upstream-b6e9f1dfe08740a77da7def31ca05e8ca548bed6.tar.bz2 upstream-b6e9f1dfe08740a77da7def31ca05e8ca548bed6.zip |
make targets provide their KERNELNAME
SVN-Revision: 23919
-rw-r--r-- | include/kernel-defaults.mk | 9 | ||||
-rw-r--r-- | target/linux/avr32/Makefile | 2 | ||||
-rw-r--r-- | target/linux/rdc/Makefile | 2 | ||||
-rw-r--r-- | target/linux/x86/Makefile | 2 |
4 files changed, 6 insertions, 9 deletions
diff --git a/include/kernel-defaults.mk b/include/kernel-defaults.mk index 5312ad4981..312664ab7a 100644 --- a/include/kernel-defaults.mk +++ b/include/kernel-defaults.mk @@ -6,15 +6,6 @@ # KERNELNAME= -ifneq (,$(findstring x86,$(BOARD))) - KERNELNAME="bzImage" -endif -ifneq (,$(findstring rdc,$(BOARD))) - KERNELNAME="bzImage" -endif -ifneq (,$(findstring avr32,$(BOARD))) - KERNELNAME="uImage" -endif KERNEL_MAKEOPTS := -C $(LINUX_DIR) \ CROSS_COMPILE="$(KERNEL_CROSS)" \ diff --git a/target/linux/avr32/Makefile b/target/linux/avr32/Makefile index 62d249610e..8c85be2fd5 100644 --- a/target/linux/avr32/Makefile +++ b/target/linux/avr32/Makefile @@ -20,4 +20,6 @@ define Target/Description Build firmware images for ATNGW100 board endef +KERNELNAME:=uImage + $(eval $(call BuildTarget)) diff --git a/target/linux/rdc/Makefile b/target/linux/rdc/Makefile index be5936cfcc..9099e783e5 100644 --- a/target/linux/rdc/Makefile +++ b/target/linux/rdc/Makefile @@ -16,6 +16,8 @@ LINUX_VERSION:=2.6.32.25 include $(INCLUDE_DIR)/target.mk +KERNELNAME:=bzImage + DEFAULT_PACKAGES += wpad-mini kmod-libphy kmod-r6040 kmod-input-core \ kmod-input-polldev kmod-input-gpio-buttons kmod-button-hotplug \ kmod-rdc321x-wdt diff --git a/target/linux/x86/Makefile b/target/linux/x86/Makefile index 3cbed95426..fb365dd8ea 100644 --- a/target/linux/x86/Makefile +++ b/target/linux/x86/Makefile @@ -16,6 +16,8 @@ LINUX_VERSION:=2.6.32.25 include $(INCLUDE_DIR)/target.mk +KERNELNAME:=bzImage + $(eval $(call BuildTarget)) $(eval $(call $(if $(CONFIG_TARGET_ROOTFS_ISO),RequireCommand,Ignore),mkisofs, \ |