blob: bc8ee6c073debc5bcc5ad345ac0b9cc5b0b79ef1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# arch/arm/boot/Makefile
3#
Paul Smith4f193362006-03-05 17:14:10 -05004# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
Linus Torvalds1da177e2005-04-16 15:20:36 -07007# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive
9# for more details.
10#
11# Copyright (C) 1995-2002 Russell King
12#
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014ifneq ($(MACHINE),)
Russell King9e84ed62010-09-09 22:39:41 +010015include $(srctree)/$(MACHINE)/Makefile.boot
Linus Torvalds1da177e2005-04-16 15:20:36 -070016endif
17
18# Note: the following conditions must always be true:
Russell King9e84ed62010-09-09 22:39:41 +010019# ZRELADDR == virt_to_phys(PAGE_OFFSET + TEXT_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020# PARAMS_PHYS must be within 4MB of ZRELADDR
21# INITRD_PHYS must be in RAM
Russell King9e84ed62010-09-09 22:39:41 +010022ZRELADDR := $(zreladdr-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023PARAMS_PHYS := $(params_phys-y)
24INITRD_PHYS := $(initrd_phys-y)
25
Russell King9e84ed62010-09-09 22:39:41 +010026export ZRELADDR INITRD_PHYS PARAMS_PHYS
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28targets := Image zImage xipImage bootpImage uImage
29
Colin Cross21b3b052013-04-17 16:58:36 -070030DTB_NAMES := $(subst $\",,$(CONFIG_BUILD_ARM_APPENDED_DTB_IMAGE_NAMES))
31ifneq ($(DTB_NAMES),)
32DTB_LIST := $(addsuffix .dtb,$(DTB_NAMES))
33else
34DTB_LIST := $(dtb-y)
35endif
36DTB_OBJS := $(addprefix $(obj)/,$(DTB_LIST))
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038ifeq ($(CONFIG_XIP_KERNEL),y)
39
40$(obj)/xipImage: vmlinux FORCE
41 $(call if_changed,objcopy)
42 @echo ' Kernel: $@ is ready (physical address: $(CONFIG_XIP_PHYS_ADDR))'
43
44$(obj)/Image $(obj)/zImage: FORCE
45 @echo 'Kernel configured for XIP (CONFIG_XIP_KERNEL=y)'
46 @echo 'Only the xipImage target is available in this case'
47 @false
48
49else
50
51$(obj)/xipImage: FORCE
52 @echo 'Kernel not configured for XIP (CONFIG_XIP_KERNEL!=y)'
53 @false
54
55$(obj)/Image: vmlinux FORCE
56 $(call if_changed,objcopy)
57 @echo ' Kernel: $@ is ready'
58
59$(obj)/compressed/vmlinux: $(obj)/Image FORCE
60 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
61
62$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
63 $(call if_changed,objcopy)
64 @echo ' Kernel: $@ is ready'
65
Colin Cross21b3b052013-04-17 16:58:36 -070066$(obj)/zImage-dtb: $(obj)/zImage $(DTB_OBJS) FORCE
67 $(call if_changed,cat)
68 @echo ' Kernel: $@ is ready'
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070endif
71
Colin Cross21b3b052013-04-17 16:58:36 -070072targets += $(DTB_LIST)
Stephen Warren7c431852012-01-09 11:38:15 -070073
Rob Herring5fd1a2e2011-07-25 09:52:12 -060074# Rule to build device tree blobs
Stephen Warren7c431852012-01-09 11:38:15 -070075$(obj)/%.dtb: $(src)/dts/%.dts FORCE
76 $(call if_changed_dep,dtc)
Rob Herring5fd1a2e2011-07-25 09:52:12 -060077
Colin Cross21b3b052013-04-17 16:58:36 -070078$(obj)/dtbs: $(DTB_OBJS)
Rob Herring5fd1a2e2011-07-25 09:52:12 -060079
Dirk B5f300ac2011-11-08 18:16:39 +010080clean-files := *.dtb
81
Stephen Warrene3393642012-03-16 15:03:55 -060082ifneq ($(LOADADDR),)
83 UIMAGE_LOADADDR=$(LOADADDR)
Uwe Kleine-König0f980142008-03-06 16:22:33 +010084else
Stephen Warrene3393642012-03-16 15:03:55 -060085 ifeq ($(CONFIG_ZBOOT_ROM),y)
86 UIMAGE_LOADADDR=$(CONFIG_ZBOOT_ROM_TEXT)
87 else
88 UIMAGE_LOADADDR=$(ZRELADDR)
89 endif
Uwe Kleine-König0f980142008-03-06 16:22:33 +010090endif
91
Sascha Hauercd227fb2011-08-17 14:23:46 +010092check_for_multiple_loadaddr = \
Stephen Warrene3393642012-03-16 15:03:55 -060093if [ $(words $(UIMAGE_LOADADDR)) -gt 1 ]; then \
94 echo 'multiple load addresses: $(UIMAGE_LOADADDR)'; \
Sascha Hauercd227fb2011-08-17 14:23:46 +010095 echo 'This is incompatible with uImages'; \
96 echo 'Specify LOADADDR on the commandline to build an uImage'; \
97 false; \
98fi
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100$(obj)/uImage: $(obj)/zImage FORCE
Sascha Hauercd227fb2011-08-17 14:23:46 +0100101 @$(check_for_multiple_loadaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 $(call if_changed,uimage)
103 @echo ' Image $@ is ready'
104
105$(obj)/bootp/bootp: $(obj)/zImage initrd FORCE
106 $(Q)$(MAKE) $(build)=$(obj)/bootp $@
107 @:
108
109$(obj)/bootpImage: $(obj)/bootp/bootp FORCE
110 $(call if_changed,objcopy)
111 @echo ' Kernel: $@ is ready'
112
Paul Smith4f193362006-03-05 17:14:10 -0500113PHONY += initrd FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114initrd:
115 @test "$(INITRD_PHYS)" != "" || \
116 (echo This machine does not support INITRD; exit -1)
117 @test "$(INITRD)" != "" || \
118 (echo You must specify INITRD; exit -1)
119
120install: $(obj)/Image
121 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
122 $(obj)/Image System.map "$(INSTALL_PATH)"
123
124zinstall: $(obj)/zImage
125 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
126 $(obj)/zImage System.map "$(INSTALL_PATH)"
127
Russell Kinga65d2922011-01-08 16:18:51 +0000128uinstall: $(obj)/uImage
129 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
130 $(obj)/uImage System.map "$(INSTALL_PATH)"
131
Russell King13d5fad2007-07-20 10:36:05 +0100132zi:
133 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
134 $(obj)/zImage System.map "$(INSTALL_PATH)"
135
136i:
137 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
138 $(obj)/Image System.map "$(INSTALL_PATH)"
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140subdir- := bootp compressed