targets: remove useless quotes around KERNELNAME

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 42780
This commit is contained in:
Felix Fietkau
2014-10-05 20:17:19 +00:00
parent 8a450a93a5
commit f35da063bc
26 changed files with 27 additions and 27 deletions

View File

@@ -24,6 +24,6 @@ define Target/Description
Build images for ARM Ltd. Realview boards to be run with qemu
endef
KERNELNAME:="zImage"
KERNELNAME:=zImage
$(eval $(call BuildTarget))

View File

@@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
define Image/BuildKernel
cp $(KDIR)/$(subst ",,$(KERNELNAME)) $(BIN_DIR)/openwrt-$(BOARD)-vmlinux.elf
cp $(KDIR)/$(KERNELNAME) $(BIN_DIR)/openwrt-$(BOARD)-vmlinux.elf
endef
define Image/BuildKernel/Initramfs
cp $(KDIR)/$(subst ",,$(KERNELNAME))-initramfs $(BIN_DIR)/openwrt-$(BOARD)-vmlinux-initramfs.elf
cp $(KDIR)/$(KERNELNAME)-initramfs $(BIN_DIR)/openwrt-$(BOARD)-vmlinux-initramfs.elf
endef
define Image/Build/squashfs