blob: 50f8d1be7fcbe7cdcecb37f54f2b24f514a65974 [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
Mark Rutland3cb59582016-07-19 11:23:37 +010014OBJCOPYFLAGS :=-O binary -R .comment -S
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016ifneq ($(MACHINE),)
Masahiro Yamada7aacad52015-03-27 20:43:35 +090017include $(MACHINE)/Makefile.boot
Linus Torvalds1da177e2005-04-16 15:20:36 -070018endif
19
20# Note: the following conditions must always be true:
Russell King9e84ed62010-09-09 22:39:41 +010021# ZRELADDR == virt_to_phys(PAGE_OFFSET + TEXT_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022# PARAMS_PHYS must be within 4MB of ZRELADDR
23# INITRD_PHYS must be in RAM
Russell King9e84ed62010-09-09 22:39:41 +010024ZRELADDR := $(zreladdr-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025PARAMS_PHYS := $(params_phys-y)
26INITRD_PHYS := $(initrd_phys-y)
27
Russell King9e84ed62010-09-09 22:39:41 +010028export ZRELADDR INITRD_PHYS PARAMS_PHYS
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30targets := Image zImage xipImage bootpImage uImage
31
32ifeq ($(CONFIG_XIP_KERNEL),y)
33
34$(obj)/xipImage: vmlinux FORCE
35 $(call if_changed,objcopy)
Masahiro Yamadac6bbfbb72016-05-30 03:01:23 +010036 @$(kecho) ' Physical Address of xipImage: $(CONFIG_XIP_PHYS_ADDR)'
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38$(obj)/Image $(obj)/zImage: FORCE
39 @echo 'Kernel configured for XIP (CONFIG_XIP_KERNEL=y)'
40 @echo 'Only the xipImage target is available in this case'
41 @false
42
43else
44
45$(obj)/xipImage: FORCE
46 @echo 'Kernel not configured for XIP (CONFIG_XIP_KERNEL!=y)'
47 @false
48
49$(obj)/Image: vmlinux FORCE
50 $(call if_changed,objcopy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52$(obj)/compressed/vmlinux: $(obj)/Image FORCE
53 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
54
55$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
56 $(call if_changed,objcopy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58endif
59
Stephen Warrene3393642012-03-16 15:03:55 -060060ifneq ($(LOADADDR),)
61 UIMAGE_LOADADDR=$(LOADADDR)
Uwe Kleine-König0f980142008-03-06 16:22:33 +010062else
Stephen Warrene3393642012-03-16 15:03:55 -060063 ifeq ($(CONFIG_ZBOOT_ROM),y)
64 UIMAGE_LOADADDR=$(CONFIG_ZBOOT_ROM_TEXT)
65 else
66 UIMAGE_LOADADDR=$(ZRELADDR)
67 endif
Uwe Kleine-König0f980142008-03-06 16:22:33 +010068endif
69
Sascha Hauercd227fb2011-08-17 14:23:46 +010070check_for_multiple_loadaddr = \
Olof Johansson938f94c2013-02-23 08:02:24 +010071if [ $(words $(UIMAGE_LOADADDR)) -ne 1 ]; then \
72 echo 'multiple (or no) load addresses: $(UIMAGE_LOADADDR)'; \
Sascha Hauercd227fb2011-08-17 14:23:46 +010073 echo 'This is incompatible with uImages'; \
74 echo 'Specify LOADADDR on the commandline to build an uImage'; \
75 false; \
76fi
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078$(obj)/uImage: $(obj)/zImage FORCE
Sascha Hauercd227fb2011-08-17 14:23:46 +010079 @$(check_for_multiple_loadaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 $(call if_changed,uimage)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82$(obj)/bootp/bootp: $(obj)/zImage initrd FORCE
83 $(Q)$(MAKE) $(build)=$(obj)/bootp $@
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85$(obj)/bootpImage: $(obj)/bootp/bootp FORCE
86 $(call if_changed,objcopy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Masahiro Yamadabc5ce152016-04-05 03:08:26 +010088PHONY += initrd install zinstall uinstall
Linus Torvalds1da177e2005-04-16 15:20:36 -070089initrd:
90 @test "$(INITRD_PHYS)" != "" || \
91 (echo This machine does not support INITRD; exit -1)
92 @test "$(INITRD)" != "" || \
93 (echo You must specify INITRD; exit -1)
94
Robert Richter19514fc2013-07-17 18:05:06 +020095install:
96 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" \
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 $(obj)/Image System.map "$(INSTALL_PATH)"
98
Robert Richter19514fc2013-07-17 18:05:06 +020099zinstall:
100 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 $(obj)/zImage System.map "$(INSTALL_PATH)"
102
Robert Richter19514fc2013-07-17 18:05:06 +0200103uinstall:
104 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" \
Russell Kinga65d2922011-01-08 16:18:51 +0000105 $(obj)/uImage System.map "$(INSTALL_PATH)"
106
Nishanth Menon9e25fe62013-01-22 15:27:29 -0600107subdir- := bootp compressed dts