Blame view

kernel/linux-rt-4.4.41/arch/mips/boot/compressed/Makefile 3.5 KB
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  #
  # This file is subject to the terms and conditions of the GNU General Public
  # License.
  #
  # Adapted for MIPS Pete Popov, Dan Malek
  #
  # Copyright (C) 1994 by Linus Torvalds
  # Adapted for PowerPC by Gary Thomas
  # modified by Cort (cort@cs.nmt.edu)
  #
  # Copyright (C) 2009 Lemote Inc. & DSLab, Lanzhou University
  # Author: Wu Zhangjin <wuzhangjin@gmail.com>
  #
  
  include $(srctree)/arch/mips/Kbuild.platforms
  
  # set the default size of the mallocing area for decompressing
  BOOT_HEAP_SIZE := 0x400000
  
  # Disable Function Tracer
  KBUILD_CFLAGS := $(shell echo $(KBUILD_CFLAGS) | sed -e "s/-pg//")
  
  KBUILD_CFLAGS := $(filter-out -fstack-protector, $(KBUILD_CFLAGS))
  
  KBUILD_CFLAGS := $(LINUXINCLUDE) $(KBUILD_CFLAGS) -D__KERNEL__ \
  	-DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) -D"VMLINUX_LOAD_ADDRESS_ULL=$(VMLINUX_LOAD_ADDRESS)ull"
  
  KBUILD_AFLAGS := $(LINUXINCLUDE) $(KBUILD_AFLAGS) -D__ASSEMBLY__ \
  	-DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) \
  	-DKERNEL_ENTRY=$(VMLINUX_ENTRY_ADDRESS)
  
  targets := head.o decompress.o string.o dbg.o uart-16550.o uart-alchemy.o
  
  # decompressor objects (linked with vmlinuz)
  vmlinuzobjs-y := $(obj)/head.o $(obj)/decompress.o $(obj)/string.o
  
  ifdef CONFIG_DEBUG_ZBOOT
  vmlinuzobjs-$(CONFIG_DEBUG_ZBOOT)		   += $(obj)/dbg.o
  vmlinuzobjs-$(CONFIG_SYS_SUPPORTS_ZBOOT_UART16550) += $(obj)/uart-16550.o
  vmlinuzobjs-$(CONFIG_MIPS_ALCHEMY)		   += $(obj)/uart-alchemy.o
  endif
  
  ifdef CONFIG_KERNEL_XZ
  vmlinuzobjs-y += $(obj)/../../lib/ashldi3.o
  endif
  
  targets += vmlinux.bin
  OBJCOPYFLAGS_vmlinux.bin := $(OBJCOPYFLAGS) -O binary -R .comment -S
  $(obj)/vmlinux.bin: $(KBUILD_IMAGE) FORCE
  	$(call if_changed,objcopy)
  
  tool_$(CONFIG_KERNEL_GZIP)    = gzip
  tool_$(CONFIG_KERNEL_BZIP2)   = bzip2
  tool_$(CONFIG_KERNEL_LZ4)     = lz4
  tool_$(CONFIG_KERNEL_LZMA)    = lzma
  tool_$(CONFIG_KERNEL_LZO)     = lzo
  tool_$(CONFIG_KERNEL_XZ)      = xzkern
  
  targets += vmlinux.bin.z
  $(obj)/vmlinux.bin.z: $(obj)/vmlinux.bin FORCE
  	$(call if_changed,$(tool_y))
  
  targets += piggy.o
  OBJCOPYFLAGS_piggy.o := --add-section=.image=$(obj)/vmlinux.bin.z \
  			--set-section-flags=.image=contents,alloc,load,readonly,data
  $(obj)/piggy.o: $(obj)/dummy.o $(obj)/vmlinux.bin.z FORCE
  	$(call if_changed,objcopy)
  
  # Calculate the load address of the compressed kernel image
  hostprogs-y := calc_vmlinuz_load_addr
  
  ifneq ($(zload-y),)
  VMLINUZ_LOAD_ADDRESS := $(zload-y)
  else
  VMLINUZ_LOAD_ADDRESS = $(shell $(obj)/calc_vmlinuz_load_addr \
  		$(obj)/vmlinux.bin $(VMLINUX_LOAD_ADDRESS))
  endif
  
  vmlinuzobjs-y += $(obj)/piggy.o
  
  quiet_cmd_zld = LD      $@
        cmd_zld = $(LD) $(LDFLAGS) -Ttext $(VMLINUZ_LOAD_ADDRESS) -T $< $(vmlinuzobjs-y) -o $@
  quiet_cmd_strip = STRIP	  $@
        cmd_strip = $(STRIP) -s $@
  vmlinuz: $(src)/ld.script $(vmlinuzobjs-y) $(obj)/calc_vmlinuz_load_addr
  	$(call cmd,zld)
  	$(call cmd,strip)
  
  #
  # Some DECstations need all possible sections of an ECOFF executable
  #
  ifdef CONFIG_MACH_DECSTATION
    e2eflag := -a
  endif
  
  # elf2ecoff can only handle 32bit image
  hostprogs-y += ../elf2ecoff
  
  ifdef CONFIG_32BIT
  	VMLINUZ = vmlinuz
  else
  	VMLINUZ = vmlinuz.32
  endif
  
  quiet_cmd_32 = OBJCOPY $@
        cmd_32 = $(OBJCOPY) -O $(32bit-bfd) $(OBJCOPYFLAGS) $< $@
  vmlinuz.32: vmlinuz
  	$(call cmd,32)
  
  quiet_cmd_ecoff = ECOFF	  $@
        cmd_ecoff = $< $(VMLINUZ) $@ $(e2eflag)
  vmlinuz.ecoff: $(obj)/../elf2ecoff $(VMLINUZ)
  	$(call cmd,ecoff)
  
  OBJCOPYFLAGS_vmlinuz.bin := $(OBJCOPYFLAGS) -O binary
  vmlinuz.bin: vmlinuz
  	$(call cmd,objcopy)
  
  OBJCOPYFLAGS_vmlinuz.srec := $(OBJCOPYFLAGS) -S -O srec
  vmlinuz.srec: vmlinuz
  	$(call cmd,objcopy)
  
  clean-files := $(objtree)/vmlinuz $(objtree)/vmlinuz.{32,ecoff,bin,srec}