Makefile (ca31fef11dc83e672415d5925a134749761329bd) Makefile (b30d0289de72c62516df03fdad8d53f552c69839)
1# SPDX-License-Identifier: GPL-2.0
2#
3# linux/arch/arm/boot/compressed/Makefile
4#
5# create a compressed vmlinuz image from the original vmlinux
6#
7
8OBJS =

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

80compress-$(CONFIG_KERNEL_LZO) = lzo
81compress-$(CONFIG_KERNEL_LZMA) = lzma
82compress-$(CONFIG_KERNEL_XZ) = xzkern
83compress-$(CONFIG_KERNEL_LZ4) = lz4
84
85libfdt_objs := fdt_rw.o fdt_ro.o fdt_wip.o fdt.o
86
87ifeq ($(CONFIG_ARM_ATAG_DTB_COMPAT),y)
1# SPDX-License-Identifier: GPL-2.0
2#
3# linux/arch/arm/boot/compressed/Makefile
4#
5# create a compressed vmlinuz image from the original vmlinux
6#
7
8OBJS =

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

80compress-$(CONFIG_KERNEL_LZO) = lzo
81compress-$(CONFIG_KERNEL_LZMA) = lzma
82compress-$(CONFIG_KERNEL_XZ) = xzkern
83compress-$(CONFIG_KERNEL_LZ4) = lz4
84
85libfdt_objs := fdt_rw.o fdt_ro.o fdt_wip.o fdt.o
86
87ifeq ($(CONFIG_ARM_ATAG_DTB_COMPAT),y)
88CFLAGS_REMOVE_atags_to_fdt.o += -Wframe-larger-than=${CONFIG_FRAME_WARN}
89CFLAGS_atags_to_fdt.o += -Wframe-larger-than=1280
88OBJS += $(libfdt_objs) atags_to_fdt.o
89endif
90ifeq ($(CONFIG_USE_OF),y)
91OBJS += $(libfdt_objs) fdt_check_mem_start.o
92endif
93
94# -fstack-protector-strong triggers protection checks in this code,
95# but it is being used too early to link to meaningful stack_chk logic.

--- 100 unchanged lines hidden ---
90OBJS += $(libfdt_objs) atags_to_fdt.o
91endif
92ifeq ($(CONFIG_USE_OF),y)
93OBJS += $(libfdt_objs) fdt_check_mem_start.o
94endif
95
96# -fstack-protector-strong triggers protection checks in this code,
97# but it is being used too early to link to meaningful stack_chk logic.

--- 100 unchanged lines hidden ---