The load address for BCM963xx is 0x80010000, not 0xf8001000 as in the current sources. I think this is just a typo, so this patch fixes it (tested on 96345).
Signed-off-by: Axel Gembe <[EMAIL PROTECTED]> --- .../patches/050-bcm963xx_add_trailing_zero.patch | 29 ++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 target/linux/brcm63xx/patches/050-bcm963xx_add_trailing_zero.patch diff --git a/target/linux/brcm63xx/patches/050-bcm963xx_add_trailing_zero.patch b/target/linux/brcm63xx/patches/050-bcm963xx_add_trailing_zero.patch new file mode 100644 index 0000000..9ae8e08 --- /dev/null +++ b/target/linux/brcm63xx/patches/050-bcm963xx_add_trailing_zero.patch @@ -0,0 +1,29 @@ +From d41e1a577307e7a5d3a75dbe29cf97b7a2968f1d Mon Sep 17 00:00:00 2001 +From: Axel Gembe <[EMAIL PROTECTED]> +Date: Wed, 14 May 2008 12:43:34 +0200 +Subject: [PATCH 4/8] bcm963xx: add missing trailing zero to load address + +The load address for BCM963xx is 0x80010000, not 0xf8001000 as in the current +sources. I think this is just a typo, so this patch fixes it (tested on 96345). + +Signed-off-by: Axel Gembe <[EMAIL PROTECTED]> +--- + arch/mips/Makefile | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/arch/mips/Makefile b/arch/mips/Makefile +index b50d814..bd17d23 100644 +--- a/arch/mips/Makefile ++++ b/arch/mips/Makefile +@@ -545,7 +545,7 @@ load-$(CONFIG_BCM47XX) := 0xffffffff80001000 + + core-$(CONFIG_BCM963XX) += arch/mips/bcm963xx/ + cflags-$(CONFIG_BCM963XX) += -Iinclude/asm-mips/mach-bcm963xx +-load-$(CONFIG_BCM963XX) := 0xffffffff8001000 ++load-$(CONFIG_BCM963XX) := 0xffffffff80010000 + + # + # SNI RM +-- +1.5.5.1 + -- 1.5.5.1 _______________________________________________ openwrt-devel mailing list [email protected] http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
