Makefile (664b0bae0b87f69bc9deb098f5e0158b9cf18e04) Makefile (172caf1993b7a6503a9f7faf589e2cf26eb1f219)
1#
2# arch/arm/boot/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# 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

--- 18 unchanged lines hidden (view full) ---

27
28export ZRELADDR INITRD_PHYS PARAMS_PHYS
29
30targets := Image zImage xipImage bootpImage uImage
31
32ifeq ($(CONFIG_XIP_KERNEL),y)
33
34cmd_deflate_xip_data = $(CONFIG_SHELL) -c \
1#
2# arch/arm/boot/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# 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

--- 18 unchanged lines hidden (view full) ---

27
28export ZRELADDR INITRD_PHYS PARAMS_PHYS
29
30targets := Image zImage xipImage bootpImage uImage
31
32ifeq ($(CONFIG_XIP_KERNEL),y)
33
34cmd_deflate_xip_data = $(CONFIG_SHELL) -c \
35 '$(srctree)/$(src)/deflate_xip_data.sh $< $@ || { rm -f $@; false; }'
35 '$(srctree)/$(src)/deflate_xip_data.sh $< $@'
36
37ifeq ($(CONFIG_XIP_DEFLATED_DATA),y)
38quiet_cmd_mkxip = XIPZ $@
39cmd_mkxip = $(cmd_objcopy) && $(cmd_deflate_xip_data)
40else
41quiet_cmd_mkxip = $(quiet_cmd_objcopy)
42cmd_mkxip = $(cmd_objcopy)
43endif

--- 75 unchanged lines hidden ---
36
37ifeq ($(CONFIG_XIP_DEFLATED_DATA),y)
38quiet_cmd_mkxip = XIPZ $@
39cmd_mkxip = $(cmd_objcopy) && $(cmd_deflate_xip_data)
40else
41quiet_cmd_mkxip = $(quiet_cmd_objcopy)
42cmd_mkxip = $(cmd_objcopy)
43endif

--- 75 unchanged lines hidden ---