Makefile (86d688984deefa3ae5a802880c11f2b408b5d6cf) | Makefile (80cec14a83ad0ad109d822b3f3482a379bc481ba) |
---|---|
1# 2# linux/arch/arm/boot/compressed/Makefile 3# 4# create a compressed vmlinuz image from the original vmlinux 5# 6 7HEAD = head.o 8OBJS = misc.o --- 62 unchanged lines hidden (view full) --- 71 head.o misc.o $(OBJS) 72 73ifeq ($(CONFIG_FTRACE),y) 74ORIG_CFLAGS := $(KBUILD_CFLAGS) 75KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS)) 76endif 77 78EXTRA_CFLAGS := -fpic -fno-builtin | 1# 2# linux/arch/arm/boot/compressed/Makefile 3# 4# create a compressed vmlinuz image from the original vmlinux 5# 6 7HEAD = head.o 8OBJS = misc.o --- 62 unchanged lines hidden (view full) --- 71 head.o misc.o $(OBJS) 72 73ifeq ($(CONFIG_FTRACE),y) 74ORIG_CFLAGS := $(KBUILD_CFLAGS) 75KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS)) 76endif 77 78EXTRA_CFLAGS := -fpic -fno-builtin |
79EXTRA_AFLAGS := | 79EXTRA_AFLAGS := -Wa,-march=all |
80 81# Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via 82# linker symbols. We only define initrd_phys and params_phys if the 83# machine class defined the corresponding makefile variable. 84LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR) 85ifneq ($(INITRD_PHYS),) 86LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS) 87endif --- 27 unchanged lines hidden --- | 80 81# Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via 82# linker symbols. We only define initrd_phys and params_phys if the 83# machine class defined the corresponding makefile variable. 84LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR) 85ifneq ($(INITRD_PHYS),) 86LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS) 87endif --- 27 unchanged lines hidden --- |