blob: cb8cf5572e7977f701b777c7ddf86fc04b6547fb [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 Mundtef9b5422009-07-21 17:24:36 +090024suffix-$(CONFIG_KERNEL_GZIP) := gz
25suffix-$(CONFIG_KERNEL_BZIP2) := bz2
26suffix-$(CONFIG_KERNEL_LZMA) := lzma
27
Magnus Damm9e24c7e2009-10-26 10:12:39 +000028targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz uImage.bz2 uImage.lzma uImage.bin
Paul Mundtef9b5422009-07-21 17:24:36 +090029extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma
Magnus Damm3c928322009-07-29 15:04:05 +000030subdir- := compressed romimage
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
33 $(call if_changed,objcopy)
Paul Mundtcf00e202006-12-07 17:00:32 +090034 @echo ' Kernel: $@ is ready'
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36$(obj)/compressed/vmlinux: FORCE
37 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
38
Magnus Damm3c928322009-07-29 15:04:05 +000039$(obj)/romImage: $(obj)/romimage/vmlinux FORCE
40 $(call if_changed,objcopy)
41 @echo ' Kernel: $@ is ready'
42
43$(obj)/romimage/vmlinux: $(obj)/zImage FORCE
44 $(Q)$(MAKE) $(build)=$(obj)/romimage $@
45
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090046KERNEL_MEMORY := 0x00000000
47ifeq ($(CONFIG_PMB_FIXED),y)
48KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \
49 $$[$(CONFIG_MEMORY_START) & 0x1fffffff]')
Chris Smith664718a2008-09-05 16:24:13 +090050endif
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090051ifeq ($(CONFIG_29BIT),y)
52KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \
53 $$[$(CONFIG_MEMORY_START)]')
54endif
55
56KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \
57 $$[$(CONFIG_PAGE_OFFSET) + \
58 $(KERNEL_MEMORY) + \
59 $(CONFIG_ZERO_PAGE_OFFSET)]')
Thomas Betker453ec9c2007-11-30 18:22:10 +090060
Paul Mundt66b5bf42008-03-14 17:19:38 +090061KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \
Paul Mundt6fc51532007-12-17 16:08:49 +090062 $$[$(CONFIG_PAGE_OFFSET) + \
Yoshihiro Shimoda2f47f442009-03-10 15:49:54 +090063 $(KERNEL_MEMORY) + \
Yoshihiro Shimoda82cb1f62008-07-23 16:49:06 +090064 $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]')
Paul Mundtcf00e202006-12-07 17:00:32 +090065
66quiet_cmd_uimage = UIMAGE $@
67 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \
Paul Mundtef9b5422009-07-21 17:24:36 +090068 -C $(2) -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \
Paul Mundtcf00e202006-12-07 17:00:32 +090069 -n 'Linux-$(KERNELRELEASE)' -d $< $@
70
Thomas Betker453ec9c2007-11-30 18:22:10 +090071$(obj)/vmlinux.bin: vmlinux FORCE
72 $(call if_changed,objcopy)
73
74$(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
75 $(call if_changed,gzip)
76
Paul Mundtef9b5422009-07-21 17:24:36 +090077$(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE
78 $(call if_changed,bzip2)
79
80$(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
81 $(call if_changed,lzma)
82
83$(obj)/uImage.bz2: $(obj)/vmlinux.bin.bz2
84 $(call if_changed,uimage,bzip2)
85
86$(obj)/uImage.gz: $(obj)/vmlinux.bin.gz
87 $(call if_changed,uimage,gzip)
88
89$(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma
90 $(call if_changed,uimage,lzma)
91
Magnus Damm9e24c7e2009-10-26 10:12:39 +000092$(obj)/uImage.bin: $(obj)/vmlinux.bin
93 $(call if_changed,uimage,none)
94
Paul Mundtcf00e202006-12-07 17:00:32 +090095OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec
96$(obj)/vmlinux.srec: $(obj)/compressed/vmlinux
97 $(call if_changed,objcopy)
98
99OBJCOPYFLAGS_uImage.srec := -I binary -O srec
100$(obj)/uImage.srec: $(obj)/uImage
101 $(call if_changed,objcopy)
102
Paul Mundtef9b5422009-07-21 17:24:36 +0900103$(obj)/uImage: $(obj)/uImage.$(suffix-y)
104 @ln -sf $(notdir $<) $@
105 @echo ' Image $@ is ready'
106
107export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \
108 CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET KERNEL_MEMORY suffix-y