diff options
Diffstat (limited to 'arch/sh/boot/romimage/Makefile')
-rw-r--r-- | arch/sh/boot/romimage/Makefile | 30 |
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 | |||
7 | targets := vmlinux head.o zeropage.bin piggy.o | ||
8 | load-y := 0 | ||
9 | |||
10 | mmcif-load-$(CONFIG_CPU_SUBTYPE_SH7724) := 0xe5200000 # ILRAM | ||
11 | mmcif-obj-$(CONFIG_CPU_SUBTYPE_SH7724) := $(obj)/mmcif-sh7724.o | ||
12 | load-$(CONFIG_ROMIMAGE_MMCIF) := $(mmcif-load-y) | ||
13 | obj-$(CONFIG_ROMIMAGE_MMCIF) := $(mmcif-obj-y) | ||
14 | |||
15 | LDFLAGS_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 | |||
22 | OBJCOPYFLAGS += -j .empty_zero_page | ||
23 | |||
24 | $(obj)/zeropage.bin: vmlinux FORCE | ||
25 | $(call if_changed,objcopy) | ||
26 | |||
27 | LDFLAGS_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) | ||