[source] malta: remove hack to determine entry point

LEDE Commits lede-commits at lists.infradead.org
Fri Jan 13 10:47:13 PST 2017


nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/d2424d4b21c88f1bf262665389d217d3cc8ff416

commit d2424d4b21c88f1bf262665389d217d3cc8ff416
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Fri Jan 13 19:19:34 2017 +0100

    malta: remove hack to determine entry point
    
    Malta has CONFIG_BOOT_RAW set, so jumping to the load address is valid
    
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 target/linux/malta/image/Makefile | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/target/linux/malta/image/Makefile b/target/linux/malta/image/Makefile
index 180e045..31eb7ca 100644
--- a/target/linux/malta/image/Makefile
+++ b/target/linux/malta/image/Makefile
@@ -7,10 +7,6 @@
 include $(TOPDIR)/rules.mk
 include $(INCLUDE_DIR)/image.mk
 
-define get_kernel_entry
-0x$(shell $(TARGET_CROSS)nm $(1) 2>/dev/null | grep " kernel_entry" | cut -f1 -d ' ')
-endef
-
 define CompressLzma
   $(STAGING_DIR_HOST)/bin/lzma e $(1) -lc1 -lp2 -pb2 $(2)
 endef
@@ -21,7 +17,7 @@ endef
 
 define MkuImage
 	mkimage -A mips -O linux -T kernel -a 0x80100000 -C $(1) $(2) \
-		-e $(call get_kernel_entry,$(KDIR)/vmlinux.debug) -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
+		-e 0x80100000 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
 		-d $(3) $(4)
 endef
 



More information about the lede-commits mailing list