blob: 2a07f752afe629cf1acf5684017ad4d0a6a443d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile
index da226ab..cd49d65 100644
--- a/arch/arm/boot/Makefile
+++ b/arch/arm/boot/Makefile
@@ -55,6 +55,10 @@ $(obj)/compressed/vmlinux: $(obj)/Image FORCE
$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
$(call if_changed,objcopy)
+ devio > foo 'wl 0xe3a01c06,4' 'wl 0xe381109d,4'
+ cat foo $(obj)/zImage > zImage.new
+ mv zImage.new $(obj)/zImage
+ rm foo
@echo ' Kernel: $@ is ready'
endif
@@ -67,7 +71,7 @@ quiet_cmd_uimage = UIMAGE $@
ifeq ($(CONFIG_ZBOOT_ROM),y)
$(obj)/uImage: LOADADDR=$(CONFIG_ZBOOT_ROM_TEXT)
else
-$(obj)/uImage: LOADADDR=$(ZRELADDR)
+$(obj)/uImage: LOADADDR=0x02000000
endif
$(obj)/uImage: $(obj)/zImage FORCE
|