blob: e4ea31a62c55ef8ee7a367148e4df9fe32f568a9 [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
Simon Hormane66ac3f2011-09-15 20:13:00 +090022CONFIG_PHYSICAL_START ?= $(CONFIG_MEMORY_START)
Paul Mundtcf00e202006-12-07 17:00:32 +090023
Magnus Damm9e24c7e2009-10-26 10:12:39 +000024suffix-y := bin
Paul Mundtc7b16ef2010-01-13 13:29:19 +090025suffix-$(CONFIG_KERNEL_GZIP) := gz
26suffix-$(CONFIG_KERNEL_BZIP2) := bz2
27suffix-$(CONFIG_KERNEL_LZMA) := lzma
Paul Mundt50cfa792011-01-14 15:52:54 +090028suffix-$(CONFIG_KERNEL_XZ) := xz
Paul Mundtc7b16ef2010-01-13 13:29:19 +090029suffix-$(CONFIG_KERNEL_LZO) := lzo
Paul Mundtef9b5422009-07-21 17:24:36 +090030
Paul Mundtc7b16ef2010-01-13 13:29:19 +090031targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz \
Paul Mundt50cfa792011-01-14 15:52:54 +090032 uImage.bz2 uImage.lzma uImage.xz uImage.lzo uImage.bin
Paul Mundtc7b16ef2010-01-13 13:29:19 +090033extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \
Paul Mundt50cfa792011-01-14 15:52:54 +090034 vmlinux.bin.xz vmlinux.bin.lzo
Magnus Damm3c928322009-07-29 15:04:05 +000035subdir- := compressed romimage
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
38 $(call if_changed,objcopy)
Paul Mundtcf00e202006-12-07 17:00:32 +090039 @echo ' Kernel: $@ is ready'
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41$(obj)/compressed/vmlinux: FORCE
42 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
43
Magnus Damm3c928322009-07-29 15:04:05 +000044$(obj)/romImage: $(obj)/romimage/vmlinux FORCE
45 $(call if_changed,objcopy)
46 @echo ' Kernel: $@ is ready'
47
48$(obj)/romimage/vmlinux: $(obj)/zImage FORCE
49 $(Q)$(MAKE) $(build)=$(obj)/romimage $@
50
Paul Mundta0ab3662010-01-13 18:31:48 +090051KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \
Simon Hormane66ac3f2011-09-15 20:13:00 +090052 $$[$(CONFIG_PHYSICAL_START) & 0x1fffffff]')
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090053
54KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \
55 $$[$(CONFIG_PAGE_OFFSET) + \
56 $(KERNEL_MEMORY) + \
57 $(CONFIG_ZERO_PAGE_OFFSET)]')
Thomas Betker453ec9c2007-11-30 18:22:10 +090058
Paul Mundt66b5bf42008-03-14 17:19:38 +090059KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \
Paul Mundt6fc51532007-12-17 16:08:49 +090060 $$[$(CONFIG_PAGE_OFFSET) + \
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090061 $(KERNEL_MEMORY) + \
Yoshihiro Shimoda82cb1f62008-07-23 16:49:06 +090062 $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]')
Paul Mundtcf00e202006-12-07 17:00:32 +090063
64quiet_cmd_uimage = UIMAGE $@
65 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \
Paul Mundtef9b5422009-07-21 17:24:36 +090066 -C $(2) -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \
Paul Mundtcf00e202006-12-07 17:00:32 +090067 -n 'Linux-$(KERNELRELEASE)' -d $< $@
68
Thomas Betker453ec9c2007-11-30 18:22:10 +090069$(obj)/vmlinux.bin: vmlinux FORCE
70 $(call if_changed,objcopy)
71
72$(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
73 $(call if_changed,gzip)
74
Paul Mundtef9b5422009-07-21 17:24:36 +090075$(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE
76 $(call if_changed,bzip2)
77
78$(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
79 $(call if_changed,lzma)
80
Paul Mundt50cfa792011-01-14 15:52:54 +090081$(obj)/vmlinux.bin.xz: $(obj)/vmlinux.bin FORCE
82 $(call if_changed,xzkern)
83
Paul Mundtc7b16ef2010-01-13 13:29:19 +090084$(obj)/vmlinux.bin.lzo: $(obj)/vmlinux.bin FORCE
85 $(call if_changed,lzo)
86
Paul Mundtef9b5422009-07-21 17:24:36 +090087$(obj)/uImage.bz2: $(obj)/vmlinux.bin.bz2
88 $(call if_changed,uimage,bzip2)
89
90$(obj)/uImage.gz: $(obj)/vmlinux.bin.gz
91 $(call if_changed,uimage,gzip)
92
93$(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma
94 $(call if_changed,uimage,lzma)
95
Paul Mundt50cfa792011-01-14 15:52:54 +090096$(obj)/uImage.xz: $(obj)/vmlinux.bin.xz
97 $(call if_changed,uimage,xz)
98
Paul Mundtc7b16ef2010-01-13 13:29:19 +090099$(obj)/uImage.lzo: $(obj)/vmlinux.bin.lzo
100 $(call if_changed,uimage,lzo)
101
Magnus Damm9e24c7e2009-10-26 10:12:39 +0000102$(obj)/uImage.bin: $(obj)/vmlinux.bin
103 $(call if_changed,uimage,none)
104
Paul Mundtcf00e202006-12-07 17:00:32 +0900105OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec
106$(obj)/vmlinux.srec: $(obj)/compressed/vmlinux
107 $(call if_changed,objcopy)
108
109OBJCOPYFLAGS_uImage.srec := -I binary -O srec
110$(obj)/uImage.srec: $(obj)/uImage
111 $(call if_changed,objcopy)
112
Paul Mundtef9b5422009-07-21 17:24:36 +0900113$(obj)/uImage: $(obj)/uImage.$(suffix-y)
114 @ln -sf $(notdir $<) $@
115 @echo ' Image $@ is ready'
116
117export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \
Simon Hormane66ac3f2011-09-15 20:13:00 +0900118 CONFIG_PHYSICAL_START CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET \
119 KERNEL_MEMORY suffix-y