Makefile (0ea8a56de21be24cb79abb03dee79aabcd60a316) | Makefile (2596a72d338481b49a678ab880338fd5a661e663) |
---|---|
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 = 9 10AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET) 11HEAD = head.o 12OBJS += misc.o decompress.o 13ifeq ($(CONFIG_DEBUG_UNCOMPRESS),y) 14OBJS += debug.o | 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 = 9 10AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET) 11HEAD = head.o 12OBJS += misc.o decompress.o 13ifeq ($(CONFIG_DEBUG_UNCOMPRESS),y) 14OBJS += debug.o |
15AFLAGS_head.o += -DDEBUG |
|
15endif 16FONTC = $(srctree)/lib/fonts/font_acorn_8x8.c 17 18# string library code (-Os is enforced to keep it much smaller) 19OBJS += string.o 20CFLAGS_string.o := -Os 21 22ifeq ($(CONFIG_ARM_VIRT_EXT),y) --- 167 unchanged lines hidden --- | 16endif 17FONTC = $(srctree)/lib/fonts/font_acorn_8x8.c 18 19# string library code (-Os is enforced to keep it much smaller) 20OBJS += string.o 21CFLAGS_string.o := -Os 22 23ifeq ($(CONFIG_ARM_VIRT_EXT),y) --- 167 unchanged lines hidden --- |