s390/smp: reenable smt after resume
[deliverable/linux.git] / arch / s390 / boot / compressed / Makefile
CommitLineData
1844c9bc
MS
1#
2# linux/arch/s390/boot/compressed/Makefile
3#
4# create a compressed vmlinux image from the original vmlinux
5#
6
7BITS := $(if $(CONFIG_64BIT),64,31)
8
8e2872ce
HC
9targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2
10targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4
11targets += misc.o piggy.o sizes.h head$(BITS).o
1844c9bc
MS
12
13KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2
1a0f2487 14KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
cedbecd6 15KBUILD_CFLAGS += $(cflags-y) -fno-delete-null-pointer-checks
1844c9bc
MS
16KBUILD_CFLAGS += $(call cc-option,-mpacked-stack)
17KBUILD_CFLAGS += $(call cc-option,-ffreestanding)
18
19GCOV_PROFILE := n
20
21OBJECTS := $(addprefix $(objtree)/arch/s390/kernel/, head.o sclp.o ebcdic.o)
22OBJECTS += $(obj)/head$(BITS).o $(obj)/misc.o $(obj)/piggy.o
23
24LDFLAGS_vmlinux := --oformat $(LD_BFD) -e startup -T
25$(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS)
26 $(call if_changed,ld)
27 @:
28
29sed-sizes := -e 's/^\([0-9a-fA-F]*\) . \(__bss_start\|_end\)$$/\#define SZ\2 0x\1/p'
30
31quiet_cmd_sizes = GEN $@
32 cmd_sizes = $(NM) $< | sed -n $(sed-sizes) > $@
33
34$(obj)/sizes.h: vmlinux
35 $(call if_changed,sizes)
36
37AFLAGS_head$(BITS).o += -I$(obj)
38$(obj)/head$(BITS).o: $(obj)/sizes.h
39
40CFLAGS_misc.o += -I$(obj)
41$(obj)/misc.o: $(obj)/sizes.h
42
43OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
44$(obj)/vmlinux.bin: vmlinux
45 $(call if_changed,objcopy)
46
47vmlinux.bin.all-y := $(obj)/vmlinux.bin
48
49suffix-$(CONFIG_KERNEL_GZIP) := gz
50suffix-$(CONFIG_KERNEL_BZIP2) := bz2
8e2872ce 51suffix-$(CONFIG_KERNEL_LZ4) := lz4
1844c9bc 52suffix-$(CONFIG_KERNEL_LZMA) := lzma
cdf56649 53suffix-$(CONFIG_KERNEL_LZO) := lzo
d7b081ac 54suffix-$(CONFIG_KERNEL_XZ) := xz
1844c9bc
MS
55
56$(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y)
57 $(call if_changed,gzip)
58$(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y)
59 $(call if_changed,bzip2)
8e2872ce
HC
60$(obj)/vmlinux.bin.lz4: $(vmlinux.bin.all-y)
61 $(call if_changed,lz4)
1844c9bc
MS
62$(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y)
63 $(call if_changed,lzma)
cdf56649
HC
64$(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y)
65 $(call if_changed,lzo)
d7b081ac
HC
66$(obj)/vmlinux.bin.xz: $(vmlinux.bin.all-y)
67 $(call if_changed,xzkern)
1844c9bc
MS
68
69LDFLAGS_piggy.o := -r --format binary --oformat $(LD_BFD) -T
70$(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y)
71 $(call if_changed,ld)
This page took 0.3102 seconds and 5 git commands to generate.