Makefile (87d8a69709d971913e6cc7210450fcb8be963667) | Makefile (6e8699f7d68589e0e9ab324f598a3357bceb40bc) |
---|---|
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 decompress.o --- 51 unchanged lines hidden (view full) --- 60ZTEXTADDR := 0 61ZBSSADDR := ALIGN(4) 62endif 63 64SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/ 65 66suffix_$(CONFIG_KERNEL_GZIP) = gzip 67suffix_$(CONFIG_KERNEL_LZO) = lzo | 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 decompress.o --- 51 unchanged lines hidden (view full) --- 60ZTEXTADDR := 0 61ZBSSADDR := ALIGN(4) 62endif 63 64SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/ 65 66suffix_$(CONFIG_KERNEL_GZIP) = gzip 67suffix_$(CONFIG_KERNEL_LZO) = lzo |
68suffix_$(CONFIG_KERNEL_LZMA) = lzma |
|
68 69targets := vmlinux vmlinux.lds \ 70 piggy.$(suffix_y) piggy.$(suffix_y).o \ 71 font.o font.c head.o misc.o $(OBJS) 72 73ifeq ($(CONFIG_FUNCTION_TRACER),y) 74ORIG_CFLAGS := $(KBUILD_CFLAGS) 75KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS)) --- 50 unchanged lines hidden --- | 69 70targets := vmlinux vmlinux.lds \ 71 piggy.$(suffix_y) piggy.$(suffix_y).o \ 72 font.o font.c head.o misc.o $(OBJS) 73 74ifeq ($(CONFIG_FUNCTION_TRACER),y) 75ORIG_CFLAGS := $(KBUILD_CFLAGS) 76KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS)) --- 50 unchanged lines hidden --- |