blob: c16ccd4bfa16ac4b424e1032ada796f75ea88e32 [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
23export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \
Paul Mundtd27e0852008-07-29 09:15:01 +090024 CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET
Paul Mundtcf00e202006-12-07 17:00:32 +090025
26targets := zImage vmlinux.srec uImage uImage.srec
Linus Torvalds1da177e2005-04-16 15:20:36 -070027subdir- := compressed
28
29$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
30 $(call if_changed,objcopy)
Paul Mundtcf00e202006-12-07 17:00:32 +090031 @echo ' Kernel: $@ is ready'
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33$(obj)/compressed/vmlinux: FORCE
34 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
35
Chris Smith664718a2008-09-05 16:24:13 +090036ifeq ($(CONFIG_32BIT),y)
37KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \
38 $$[$(CONFIG_PAGE_OFFSET) + \
39 $(CONFIG_ZERO_PAGE_OFFSET)]')
40else
Paul Mundt66b5bf42008-03-14 17:19:38 +090041KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \
David McCullough1f257562007-07-26 17:43:41 +090042 $$[$(CONFIG_PAGE_OFFSET) + \
43 $(CONFIG_MEMORY_START) + \
Thomas Betker453ec9c2007-11-30 18:22:10 +090044 $(CONFIG_ZERO_PAGE_OFFSET)]')
Chris Smith664718a2008-09-05 16:24:13 +090045endif
Thomas Betker453ec9c2007-11-30 18:22:10 +090046
Paul Mundt66b5bf42008-03-14 17:19:38 +090047KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \
Paul Mundt6fc51532007-12-17 16:08:49 +090048 $$[$(CONFIG_PAGE_OFFSET) + \
49 $(CONFIG_MEMORY_START) + \
Yoshihiro Shimoda82cb1f62008-07-23 16:49:06 +090050 $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]')
Paul Mundtcf00e202006-12-07 17:00:32 +090051
52quiet_cmd_uimage = UIMAGE $@
53 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \
Yoshihiro Shimoda26b63e92008-03-28 15:03:39 +090054 -C gzip -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \
Paul Mundtcf00e202006-12-07 17:00:32 +090055 -n 'Linux-$(KERNELRELEASE)' -d $< $@
56
Thomas Betker453ec9c2007-11-30 18:22:10 +090057$(obj)/uImage: $(obj)/vmlinux.bin.gz FORCE
Paul Mundtcf00e202006-12-07 17:00:32 +090058 $(call if_changed,uimage)
59 @echo ' Image $@ is ready'
60
Thomas Betker453ec9c2007-11-30 18:22:10 +090061$(obj)/vmlinux.bin: vmlinux FORCE
62 $(call if_changed,objcopy)
63
64$(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
65 $(call if_changed,gzip)
66
Paul Mundtcf00e202006-12-07 17:00:32 +090067OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec
68$(obj)/vmlinux.srec: $(obj)/compressed/vmlinux
69 $(call if_changed,objcopy)
70
71OBJCOPYFLAGS_uImage.srec := -I binary -O srec
72$(obj)/uImage.srec: $(obj)/uImage
73 $(call if_changed,objcopy)
74
Thomas Betker453ec9c2007-11-30 18:22:10 +090075clean-files += uImage uImage.srec vmlinux.srec \
76 vmlinux.bin vmlinux.bin.gz