summaryrefslogtreecommitdiff
path: root/target/linux/brcm63xx/image/Makefile
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2013-06-17 19:32:56 +0000
committerFlorian Fainelli <florian@openwrt.org>2013-06-17 19:32:56 +0000
commit0ce75bc44093afd0e13ef050c27c50639cc0c2ad (patch)
tree2fc2a5148eb5d472763d4b9e5f67d52db74dcbb7 /target/linux/brcm63xx/image/Makefile
parent78a66975d65b348bb49d741e21f6399cdb27b87d (diff)
downloadmtk-20170518-0ce75bc44093afd0e13ef050c27c50639cc0c2ad.zip
mtk-20170518-0ce75bc44093afd0e13ef050c27c50639cc0c2ad.tar.gz
mtk-20170518-0ce75bc44093afd0e13ef050c27c50639cc0c2ad.tar.bz2
brcm63xx: simplify HCS image creation
$(KDIR)/vmlinux is already a binary image, there is no need to create another one. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 36949
Diffstat (limited to 'target/linux/brcm63xx/image/Makefile')
-rwxr-xr-xtarget/linux/brcm63xx/image/Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile
index 7544607..7875c54 100755
--- a/target/linux/brcm63xx/image/Makefile
+++ b/target/linux/brcm63xx/image/Makefile
@@ -1,4 +1,4 @@
-#
+#
# Copyright (C) 2006-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
@@ -11,9 +11,6 @@ LOADADDR = 0x80010000 # RAM start + 16M
KERNEL_ENTRY = $(LOADADDR) # Newer kernels add a jmp to the kernel_entry at the start of the binary
RAMSIZE = 0x01000000 # 64MB
-DROP_SECTIONS := .reginfo .mdebug .comment .note .pdr .options .MIPS.options
-OBJCOPY_BIN := $(TARGET_CROSS)objcopy -S -O binary $(addprefix --remove-section=,$(DROP_SECTIONS))
-
LOADER_MAKEOPTS= \
KDIR=$(KDIR) \
LOADADDR=$(LOADADDR) \
@@ -133,8 +130,6 @@ define Build/Clean
endef
define Image/Prepare
- # Binary kernel
- $(OBJCOPY_BIN) $(LINUX_DIR)/vmlinux $(KDIR)/vmlinux.bin
# Standard LZMA kernel
cat $(KDIR)/vmlinux | $(STAGING_DIR_HOST)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
@@ -292,7 +287,7 @@ define Image/Build
$(call Image/Build/SPW303V,$(1),96358-502V,6358,SPW303V)
# Netgear CVG834G
- $(call Image/Build/HCS,$(1),cvg834g,a020,0001,0022,$(KDIR)/vmlinux.bin)
+ $(call Image/Build/HCS,$(1),cvg834g,a020,0001,0022,$(KDIR)/vmlinux)
endif
endef