diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-05-18 17:29:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-05-18 17:29:39 +0000 |
commit | 46b4413fbbf9edef23cb5ec2bfdd5b983d6eb78a (patch) | |
tree | e0f486a2d4af3313d395e50cd06e580d6be0a123 /target/linux/brcm63xx/image/lzma-loader | |
parent | 6a79ee257d0f28fd5a1db80f78c959d5b8a3a702 (diff) | |
download | mtk-20170518-46b4413fbbf9edef23cb5ec2bfdd5b983d6eb78a.zip mtk-20170518-46b4413fbbf9edef23cb5ec2bfdd5b983d6eb78a.tar.gz mtk-20170518-46b4413fbbf9edef23cb5ec2bfdd5b983d6eb78a.tar.bz2 |
bcm963xx: fix load address / kernel entry
Current kernels have the same kernel entry as load address, so just set them
like this. Also, the BCM963xx uses 0x80010000 as its load address, so use this
too.
Signed-off-by: Axel Gembe <ago@bastart.eu.org>
SVN-Revision: 11169
Diffstat (limited to 'target/linux/brcm63xx/image/lzma-loader')
-rw-r--r-- | target/linux/brcm63xx/image/lzma-loader/src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/image/lzma-loader/src/Makefile b/target/linux/brcm63xx/image/lzma-loader/src/Makefile index 85a8646..83e2c52 100644 --- a/target/linux/brcm63xx/image/lzma-loader/src/Makefile +++ b/target/linux/brcm63xx/image/lzma-loader/src/Makefile @@ -17,7 +17,7 @@ # Cleaned up, modified for lzma support, removed from kernel # -TEXT_START := 0x80001000 +TEXT_START := 0x80010000 BZ_TEXT_START := 0x80300000 OBJCOPY := $(CROSS_COMPILE)objcopy -O binary -R .reginfo -R .note -R .comment -R .mdebug -S |