blob: 1ce63624c9b9c8140a1eb9d348442b7fa2d560e8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# arch/sh/boot/Makefile
3#
4# This file is subject to the terms and conditions of the GNU General Public
5# License. See the file "COPYING" in the main directory of this archive
6# for more details.
7#
8# Copyright (C) 1999 Stuart Menefy
9#
10
Paul Mundtcf00e202006-12-07 17:00:32 +090011MKIMAGE := $(srctree)/scripts/mkuboot.sh
12
13#
14# Assign safe dummy values if these variables are not defined,
15# in order to suppress error message.
16#
17CONFIG_PAGE_OFFSET ?= 0x80000000
18CONFIG_MEMORY_START ?= 0x0c000000
19CONFIG_BOOT_LINK_OFFSET ?= 0x00800000
20CONFIG_ZERO_PAGE_OFFSET ?= 0x00001000
Paul Mundtd27e0852008-07-29 09:15:01 +090021CONFIG_ENTRY_OFFSET ?= 0x00001000
Paul Mundtcf00e202006-12-07 17:00:32 +090022
Magnus Damm9e24c7e2009-10-26 10:12:39 +000023suffix-y := bin
Paul Mundtc7b16ef2010-01-13 13:29:19 +090024suffix-$(CONFIG_KERNEL_GZIP) := gz
25suffix-$(CONFIG_KERNEL_BZIP2) := bz2
26suffix-$(CONFIG_KERNEL_LZMA) := lzma
27suffix-$(CONFIG_KERNEL_LZO) := lzo
Paul Mundtef9b5422009-07-21 17:24:36 +090028
Paul Mundtc7b16ef2010-01-13 13:29:19 +090029targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz \
30 uImage.bz2 uImage.lzma uImage.lzo uImage.bin
31extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \
32 vmlinux.bin.lzo
Magnus Damm3c928322009-07-29 15:04:05 +000033subdir- := compressed romimage
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
36 $(call if_changed,objcopy)
Paul Mundtcf00e202006-12-07 17:00:32 +090037 @echo ' Kernel: $@ is ready'
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39$(obj)/compressed/vmlinux: FORCE
40 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
41
Magnus Damm3c928322009-07-29 15:04:05 +000042$(obj)/romImage: $(obj)/romimage/vmlinux FORCE
43 $(call if_changed,objcopy)
44 @echo ' Kernel: $@ is ready'
45
46$(obj)/romimage/vmlinux: $(obj)/zImage FORCE
47 $(Q)$(MAKE) $(build)=$(obj)/romimage $@
48
Paul Mundta0ab3662010-01-13 18:31:48 +090049KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090050 $$[$(CONFIG_MEMORY_START) & 0x1fffffff]')
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090051
52KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \
53 $$[$(CONFIG_PAGE_OFFSET) + \
54 $(KERNEL_MEMORY) + \
55 $(CONFIG_ZERO_PAGE_OFFSET)]')
Thomas Betker453ec9c2007-11-30 18:22:10 +090056
Paul Mundt66b5bf42008-03-14 17:19:38 +090057KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \
Paul Mundt6fc51532007-12-17 16:08:49 +090058 $$[$(CONFIG_PAGE_OFFSET) + \
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090059 $(KERNEL_MEMORY) + \
Yoshihiro Shimoda82cb1f62008-07-23 16:49:06 +090060 $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]')
Paul Mundtcf00e202006-12-07 17:00:32 +090061
62quiet_cmd_uimage = UIMAGE $@
63 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \
Paul Mundtef9b5422009-07-21 17:24:36 +090064 -C $(2) -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \
Paul Mundtcf00e202006-12-07 17:00:32 +090065 -n 'Linux-$(KERNELRELEASE)' -d $< $@
66
Thomas Betker453ec9c2007-11-30 18:22:10 +090067$(obj)/vmlinux.bin: vmlinux FORCE
68 $(call if_changed,objcopy)
69
70$(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
71 $(call if_changed,gzip)
72
Paul Mundtef9b5422009-07-21 17:24:36 +090073$(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE
74 $(call if_changed,bzip2)
75
76$(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
77 $(call if_changed,lzma)
78
Paul Mundtc7b16ef2010-01-13 13:29:19 +090079$(obj)/vmlinux.bin.lzo: $(obj)/vmlinux.bin FORCE
80 $(call if_changed,lzo)
81
Paul Mundtef9b5422009-07-21 17:24:36 +090082$(obj)/uImage.bz2: $(obj)/vmlinux.bin.bz2
83 $(call if_changed,uimage,bzip2)
84
85$(obj)/uImage.gz: $(obj)/vmlinux.bin.gz
86 $(call if_changed,uimage,gzip)
87
88$(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma
89 $(call if_changed,uimage,lzma)
90
Paul Mundtc7b16ef2010-01-13 13:29:19 +090091$(obj)/uImage.lzo: $(obj)/vmlinux.bin.lzo
92 $(call if_changed,uimage,lzo)
93
Magnus Damm9e24c7e2009-10-26 10:12:39 +000094$(obj)/uImage.bin: $(obj)/vmlinux.bin
95 $(call if_changed,uimage,none)
96
Paul Mundtcf00e202006-12-07 17:00:32 +090097OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec
98$(obj)/vmlinux.srec: $(obj)/compressed/vmlinux
99 $(call if_changed,objcopy)
100
101OBJCOPYFLAGS_uImage.srec := -I binary -O srec
102$(obj)/uImage.srec: $(obj)/uImage
103 $(call if_changed,objcopy)
104
Paul Mundtef9b5422009-07-21 17:24:36 +0900105$(obj)/uImage: $(obj)/uImage.$(suffix-y)
106 @ln -sf $(notdir $<) $@
107 @echo ' Image $@ is ready'
108
109export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \
110 CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET KERNEL_MEMORY suffix-y