Patch 7022 bug
Russell King - ARM Linux
linux at arm.linux.org.uk
Thu Sep 29 18:27:12 EDT 2011
Noticed this in linux-next's build logs for assabet's defconfig:
/opt/crosstool/gcc-4.4.0-nolibc/arm-linux/bin/arm-linux-ld:--defsym zreladdr=: syntax error
@@ -1,6 +1,7 @@
- zreladdr-y := 0xc0008000
ifeq ($(CONFIG_ARCH_SA1100),y)
- zreladdr-$(CONFIG_SA1111) := 0xc0208000
+ zreladdr-$(CONFIG_SA1111) += 0xc0208000
+else
+ zreladdr-y += 0xc0008000
You deleted the initial zreladdr-y, which means that in the case of
ARCH_SA1100=y and SA1111=n, no zreladdr is set.
More information about the linux-arm-kernel
mailing list