aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boot/romimage/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/boot/romimage/Makefile')
-rw-r--r--arch/sh/boot/romimage/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/sh/boot/romimage/Makefile b/arch/sh/boot/romimage/Makefile
new file mode 100644
index 000000000000..2216ee57f251
--- /dev/null
+++ b/arch/sh/boot/romimage/Makefile
@@ -0,0 +1,30 @@
1#
2# linux/arch/sh/boot/romimage/Makefile
3#
4# create an romImage file suitable for burning to flash/mmc from zImage
5#
6
7targets := vmlinux head.o zeropage.bin piggy.o
8load-y := 0
9
10mmcif-load-$(CONFIG_CPU_SUBTYPE_SH7724) := 0xe5200000 # ILRAM
11mmcif-obj-$(CONFIG_CPU_SUBTYPE_SH7724) := $(obj)/mmcif-sh7724.o
12load-$(CONFIG_ROMIMAGE_MMCIF) := $(mmcif-load-y)
13obj-$(CONFIG_ROMIMAGE_MMCIF) := $(mmcif-obj-y)
14
15LDFLAGS_vmlinux := --oformat $(ld-bfd) -Ttext $(load-y) -e romstart \
16 -T $(obj)/../../kernel/vmlinux.lds
17
18$(obj)/vmlinux: $(obj)/head.o $(obj-y) $(obj)/piggy.o FORCE
19 $(call if_changed,ld)
20 @:
21
22OBJCOPYFLAGS += -j .empty_zero_page
23
24$(obj)/zeropage.bin: vmlinux FORCE
25 $(call if_changed,objcopy)
26
27LDFLAGS_piggy.o := -r --format binary --oformat $(ld-bfd) -T
28
29$(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/zeropage.bin arch/sh/boot/zImage FORCE
30 $(call if_changed,ld)