udp: reorder udp_iter_state to remove padding on 64bit builds
[safe/jmp/linux-2.6] / arch / powerpc / boot / Makefile
1 # Makefile for making ELF bootable images for booting on CHRP
2 # using Open Firmware.
3 #
4 # Geert Uytterhoeven    September 1997
5 #
6 # Based on coffboot by Paul Mackerras
7 # Simplified for ppc64 by Todd Inglett
8 #
9 # NOTE: this code is built for 32 bit in ELF32 format even though
10 #       it packages a 64 bit kernel.  We do this to simplify the
11 #       bootloader and increase compatibility with OpenFirmware.
12 #
13 #       To this end we need to define BOOTCC, etc, as the tools
14 #       needed to build the 32 bit image.  That's normally the same
15 #       compiler for the rest of the kernel, with the -m32 flag added.
16 #       To make it easier to setup a cross compiler,
17 #       CROSS32_COMPILE is setup as a prefix just like CROSS_COMPILE
18 #       in the toplevel makefile.
19
20 all: $(obj)/zImage
21
22 BOOTCFLAGS    := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
23                  -fno-strict-aliasing -Os -msoft-float -pipe \
24                  -fomit-frame-pointer -fno-builtin -fPIC -nostdinc \
25                  -isystem $(shell $(CROSS32CC) -print-file-name=include)
26 BOOTAFLAGS      := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc
27
28 ifdef CONFIG_DEBUG_INFO
29 BOOTCFLAGS      += -g
30 endif
31
32 ifeq ($(call cc-option-yn, -fstack-protector),y)
33 BOOTCFLAGS      += -fno-stack-protector
34 endif
35
36 BOOTCFLAGS      += -I$(obj) -I$(srctree)/$(obj) -I$(srctree)/$(src)/libfdt
37
38 $(obj)/4xx.o: BOOTCFLAGS += -mcpu=405
39 $(obj)/ebony.o: BOOTCFLAGS += -mcpu=405
40 $(obj)/cuboot-taishan.o: BOOTCFLAGS += -mcpu=405
41 $(obj)/cuboot-katmai.o: BOOTCFLAGS += -mcpu=405
42 $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405
43 $(obj)/virtex405-head.o: BOOTAFLAGS += -mcpu=405
44
45
46 zlib       := inffast.c inflate.c inftrees.c
47 zlibheader := inffast.h inffixed.h inflate.h inftrees.h infutil.h
48 zliblinuxheader := zlib.h zconf.h zutil.h
49
50 $(addprefix $(obj)/,$(zlib) gunzip_util.o main.o): \
51         $(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader))
52
53 src-libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c
54 src-wlib := string.S crt0.S stdio.c main.c \
55                 $(addprefix libfdt/,$(src-libfdt)) libfdt-wrapper.c \
56                 ns16550.c serial.c simple_alloc.c div64.S util.S \
57                 gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \
58                 4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \
59                 cpm-serial.c stdlib.c mpc52xx-psc.c planetcore.c uartlite.c \
60                 fsl-soc.c mpc8xx.c pq2.c
61 src-plat := of.c cuboot-52xx.c cuboot-824x.c cuboot-83xx.c cuboot-85xx.c holly.c \
62                 cuboot-ebony.c treeboot-ebony.c prpmc2800.c \
63                 ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \
64                 cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c \
65                 cuboot-bamboo.c cuboot-mpc7448hpc2.c cuboot-taishan.c \
66                 fixed-head.S ep88xc.c ep405.c \
67                 cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c \
68                 cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \
69                 virtex405-head.S
70 src-boot := $(src-wlib) $(src-plat) empty.c
71
72 src-boot := $(addprefix $(obj)/, $(src-boot))
73 obj-boot := $(addsuffix .o, $(basename $(src-boot)))
74 obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
75 obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
76
77 quiet_cmd_copy_zlib = COPY    $@
78       cmd_copy_zlib = sed "s@__used@@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
79
80 quiet_cmd_copy_zlibheader = COPY    $@
81       cmd_copy_zlibheader = sed "s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
82 # stddef.h for NULL
83 quiet_cmd_copy_zliblinuxheader = COPY    $@
84       cmd_copy_zliblinuxheader = sed "s@<linux/string.h>@\"string.h\"@;s@<linux/kernel.h>@<stddef.h>@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
85
86 $(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
87         $(call cmd,copy_zlib)
88
89 $(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
90         $(call cmd,copy_zlibheader)
91
92 $(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/%
93         $(call cmd,copy_zliblinuxheader)
94
95 $(obj)/empty.c:
96         @touch $@
97
98 $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds: $(obj)/%: $(srctree)/$(src)/%.S
99         @cp $< $@
100
101 clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \
102                 empty.c zImage.coff.lds zImage.ps3.lds zImage.lds
103
104 quiet_cmd_bootcc = BOOTCC  $@
105       cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $<
106
107 quiet_cmd_bootas = BOOTAS  $@
108       cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $<
109
110 quiet_cmd_bootar = BOOTAR  $@
111       cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@
112
113 $(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE
114         $(Q)mkdir -p $(dir $@)
115         $(call if_changed_dep,bootcc)
116 $(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE
117         $(Q)mkdir -p $(dir $@)
118         $(call if_changed_dep,bootas)
119
120 $(obj)/wrapper.a: $(obj-wlib) FORCE
121         $(call if_changed,bootar)
122
123 hostprogs-y     := addnote addRamDisk hack-coff mktree dtc
124
125 targets         += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a)
126 extra-y         := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \
127                    $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds
128
129 dtstree         := $(srctree)/$(src)/dts
130
131 wrapper         :=$(srctree)/$(src)/wrapper
132 wrapperbits     := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree dtc) \
133                         $(wrapper) FORCE
134
135 #############
136 # Bits for building dtc
137 # DTC_GENPARSER      := 1    # Uncomment to rebuild flex/bison output
138
139 dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o srcpos.o checks.o
140 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o
141 dtc-objs := $(addprefix dtc-src/, $(dtc-objs))
142
143 # prerequisites on generated files needs to be explicit
144 $(obj)/dtc-src/dtc-parser.tab.o: $(obj)/dtc-src/dtc-parser.tab.c $(obj)/dtc-src/dtc-parser.tab.h
145 $(obj)/dtc-src/dtc-lexer.lex.o:  $(obj)/dtc-src/dtc-lexer.lex.c $(obj)/dtc-src/dtc-parser.tab.h
146
147 HOSTCFLAGS += -I$(src)/dtc-src/ -I$(src)/libfdt/
148
149 targets += dtc-src/dtc-parser.tab.c
150 targets += dtc-src/dtc-lexer.lex.c
151
152 clean-files += dtc-src/dtc-parser.tab.h
153
154 ifdef DTC_GENPARSER
155 BISON = bison
156 FLEX = flex
157
158 quiet_cmd_bison = BISON   $@
159       cmd_bison = $(BISON) -o$@ -d $<; cp $@ $@_shipped
160 quiet_cmd_flex = FLEX    $@
161       cmd_flex = $(FLEX) -o$@ $<; cp $@ $@_shipped
162
163 $(obj)/dtc-src/dtc-parser.tab.c: $(src)/dtc-src/dtc-parser.y FORCE
164      $(call if_changed,bison)
165
166 $(obj)/dtc-src/dtc-parser.tab.h: $(obj)/dtc-src/dtc-parser.tab.c
167
168 $(obj)/dtc-src/dtc-lexer.lex.c: $(src)/dtc-src/dtc-lexer.l FORCE
169      $(call if_changed,flex)
170 endif
171
172 #############
173 # Bits for building various flavours of zImage
174
175 ifneq ($(CROSS32_COMPILE),)
176 CROSSWRAP := -C "$(CROSS32_COMPILE)"
177 else
178 ifneq ($(CROSS_COMPILE),)
179 CROSSWRAP := -C "$(CROSS_COMPILE)"
180 endif
181 endif
182
183 # args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd
184 quiet_cmd_wrap  = WRAP    $@
185       cmd_wrap  =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \
186                 $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux
187
188 image-$(CONFIG_PPC_PSERIES)             += zImage.pseries
189 image-$(CONFIG_PPC_MAPLE)               += zImage.pseries
190 image-$(CONFIG_PPC_IBM_CELL_BLADE)      += zImage.pseries
191 image-$(CONFIG_PPC_PS3)                 += dtbImage.ps3
192 image-$(CONFIG_PPC_CELLEB)              += zImage.pseries
193 image-$(CONFIG_PPC_CHRP)                += zImage.chrp
194 image-$(CONFIG_PPC_EFIKA)               += zImage.chrp
195 image-$(CONFIG_PPC_PMAC)                += zImage.pmac
196 image-$(CONFIG_PPC_HOLLY)               += zImage.holly
197 image-$(CONFIG_PPC_PRPMC2800)           += dtbImage.prpmc2800
198 image-$(CONFIG_PPC_ISERIES)             += zImage.iseries
199 image-$(CONFIG_DEFAULT_UIMAGE)          += uImage
200
201 #
202 # Targets which embed a device tree blob
203 #
204 # Theses are default targets to build images which embed device tree blobs.
205 # They are only required on boards which do not have FDT support in firmware.
206 # Boards with newish u-boot firmare can use the uImage target above
207 #
208
209 # Board ports in arch/powerpc/platform/40x/Kconfig
210 image-$(CONFIG_EP405)                   += dtbImage.ep405
211 image-$(CONFIG_WALNUT)                  += treeImage.walnut
212
213 # Board ports in arch/powerpc/platform/44x/Kconfig
214 image-$(CONFIG_EBONY)                   += treeImage.ebony cuImage.ebony
215 image-$(CONFIG_BAMBOO)                  += treeImage.bamboo cuImage.bamboo
216 image-$(CONFIG_SEQUOIA)                 += cuImage.sequoia
217 image-$(CONFIG_RAINIER)                 += cuImage.rainier
218 image-$(CONFIG_TAISHAN)                 += cuImage.taishan
219 image-$(CONFIG_KATMAI)                  += cuImage.katmai
220 image-$(CONFIG_WARP)                    += cuImage.warp
221 image-$(CONFIG_YOSEMITE)                += cuImage.yosemite
222
223 # Board ports in arch/powerpc/platform/8xx/Kconfig
224 image-$(CONFIG_PPC_MPC86XADS)           += cuImage.mpc866ads
225 image-$(CONFIG_PPC_MPC885ADS)           += cuImage.mpc885ads
226 image-$(CONFIG_PPC_EP88XC)              += dtbImage.ep88xc
227 image-$(CONFIG_PPC_ADDER875)            += cuImage.adder875-uboot \
228                                            dtbImage.adder875-redboot
229
230 # Board ports in arch/powerpc/platform/52xx/Kconfig
231 image-$(CONFIG_PPC_LITE5200)            += cuImage.lite5200 cuImage.lite5200b
232
233 # Board ports in arch/powerpc/platform/82xx/Kconfig
234 image-$(CONFIG_MPC8272_ADS)             += cuImage.mpc8272ads
235 image-$(CONFIG_PQ2FADS)                 += cuImage.pq2fads
236 image-$(CONFIG_EP8248E)                 += dtbImage.ep8248e
237
238 # Board ports in arch/powerpc/platform/83xx/Kconfig
239 image-$(CONFIG_MPC832x_MDS)             += cuImage.mpc832x_mds
240 image-$(CONFIG_MPC832x_RDB)             += cuImage.mpc832x_rdb
241 image-$(CONFIG_MPC834x_ITX)             += cuImage.mpc8349emitx \
242                                            cuImage.mpc8349emitxgp
243 image-$(CONFIG_MPC834x_MDS)             += cuImage.mpc834x_mds
244 image-$(CONFIG_MPC836x_MDS)             += cuImage.mpc836x_mds
245
246 # Board ports in arch/powerpc/platform/85xx/Kconfig
247 image-$(CONFIG_MPC8540_ADS)             += cuImage.mpc8540ads
248 image-$(CONFIG_MPC8560_ADS)             += cuImage.mpc8560ads
249 image-$(CONFIG_MPC85xx_CDS)             += cuImage.mpc8541cds \
250                                            cuImage.mpc8548cds \
251                                            cuImage.mpc8555cds
252 image-$(CONFIG_MPC85xx_MDS)             += cuImage.mpc8568mds
253 image-$(CONFIG_MPC85xx_DS)              += cuImage.mpc8544ds \
254                                            cuImage.mpc8572ds
255 image-$(CONFIG_TQM8540)                 += cuImage.tqm8540
256 image-$(CONFIG_TQM8541)                 += cuImage.tqm8541
257 image-$(CONFIG_TQM8555)                 += cuImage.tqm8555
258 image-$(CONFIG_TQM8560)                 += cuImage.tqm8560
259 image-$(CONFIG_SBC8548)                 += cuImage.sbc8548
260 image-$(CONFIG_SBC8560)                 += cuImage.sbc8560
261 image-$(CONFIG_KSI8560)                 += cuImage.ksi8560
262
263 # Board ports in arch/powerpc/platform/embedded6xx/Kconfig
264 image-$(CONFIG_STORCENTER)              += cuImage.storcenter
265 image-$(CONFIG_MPC7448HPC2)             += cuImage.mpc7448hpc2
266
267 # For 32-bit powermacs, build the COFF and miboot images
268 # as well as the ELF images.
269 ifeq ($(CONFIG_PPC32),y)
270 image-$(CONFIG_PPC_PMAC)        += zImage.coff zImage.miboot
271 endif
272
273 initrd-  := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-))
274 initrd-y := $(patsubst zImage%, zImage.initrd%, \
275                 $(patsubst dtbImage%, dtbImage.initrd%, \
276                 $(patsubst treeImage%, treeImage.initrd%, $(image-y))))
277 initrd-y := $(filter-out $(image-y), $(initrd-y))
278 targets += $(image-y) $(initrd-y)
279
280 $(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz
281
282 # Don't put the ramdisk on the pattern rule; when its missing make will try
283 # the pattern rule with less dependencies that also matches (even with the
284 # hard dependency listed).
285 $(obj)/zImage.initrd.%: vmlinux $(wrapperbits)
286         $(call if_changed,wrap,$*,,,$(obj)/ramdisk.image.gz)
287
288 $(obj)/zImage.%: vmlinux $(wrapperbits)
289         $(call if_changed,wrap,$*)
290
291 # dtbImage% - a dtbImage is a zImage with an embedded device tree blob
292 $(obj)/dtbImage.initrd.%: vmlinux $(wrapperbits) $(obj)/%.dtb
293         $(call if_changed,wrap,$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz)
294
295 $(obj)/dtbImage.%: vmlinux $(wrapperbits) $(obj)/%.dtb
296         $(call if_changed,wrap,$*,,$(obj)/$*.dtb)
297
298 # This cannot be in the root of $(src) as the zImage rule always adds a $(obj)
299 # prefix
300 $(obj)/vmlinux.strip: vmlinux
301         $(STRIP) -s -R .comment $< -o $@
302
303 $(obj)/zImage.iseries: vmlinux
304         $(STRIP) -s -R .comment $< -o $@
305
306 $(obj)/uImage: vmlinux $(wrapperbits)
307         $(call if_changed,wrap,uboot)
308
309 $(obj)/cuImage.%: vmlinux $(obj)/%.dtb $(wrapperbits)
310         $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb)
311
312 $(obj)/simpleImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits)
313         $(call if_changed,wrap,simpleboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz)
314
315 $(obj)/simpleImage.%: vmlinux $(obj)/%.dtb $(wrapperbits)
316         $(call if_changed,wrap,simpleboot-$*,,$(obj)/$*.dtb)
317
318 $(obj)/treeImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits)
319         $(call if_changed,wrap,treeboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz)
320
321 $(obj)/treeImage.%: vmlinux $(obj)/%.dtb $(wrapperbits)
322         $(call if_changed,wrap,treeboot-$*,,$(obj)/$*.dtb)
323
324 # Rule to build device tree blobs
325 $(obj)/%.dtb: $(dtstree)/%.dts $(obj)/dtc
326         $(obj)/dtc -O dtb -o $(obj)/$*.dtb -b 0 $(DTS_FLAGS) $(dtstree)/$*.dts
327
328 # If there isn't a platform selected then just strip the vmlinux.
329 ifeq (,$(image-y))
330 image-y := vmlinux.strip
331 endif
332
333 $(obj)/zImage:          $(addprefix $(obj)/, $(image-y))
334         @rm -f $@; ln $< $@
335 $(obj)/zImage.initrd:   $(addprefix $(obj)/, $(initrd-y))
336         @rm -f $@; ln $< $@
337
338 install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
339         sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
340
341 # anything not in $(targets)
342 clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \
343         zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \
344         zImage.iseries zImage.miboot zImage.pmac zImage.pseries \
345         otheros.bld *.dtb
346
347 # clean up files cached by wrapper
348 clean-kernel := vmlinux.strip vmlinux.bin
349 clean-kernel += $(addsuffix .gz,$(clean-kernel))
350 # If not absolute clean-files are relative to $(obj).
351 clean-files += $(addprefix $(objtree)/, $(clean-kernel))
352
353 WRAPPER_OBJDIR := /usr/lib/kernel-wrapper
354 WRAPPER_DTSDIR := /usr/lib/kernel-wrapper/dts
355 WRAPPER_BINDIR := /usr/sbin
356 INSTALL := install
357
358 extra-installed         := $(patsubst $(obj)/%, $(DESTDIR)$(WRAPPER_OBJDIR)/%, $(extra-y))
359 hostprogs-installed     := $(patsubst %, $(DESTDIR)$(WRAPPER_BINDIR)/%, $(hostprogs-y))
360 wrapper-installed       := $(DESTDIR)$(WRAPPER_BINDIR)/wrapper
361 dts-installed           := $(patsubst $(obj)/dts/%, $(DESTDIR)$(WRAPPER_DTSDIR)/%, $(wildcard $(obj)/dts/*.dts))
362
363 all-installed           := $(extra-installed) $(hostprogs-installed) $(wrapper-installed) $(dts-installed)
364
365 quiet_cmd_mkdir           = MKDIR   $(patsubst $(INSTALL_HDR_PATH)/%,%,$@)
366       cmd_mkdir           = mkdir -p $@
367
368 quiet_cmd_install         = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,%,$@)
369       cmd_install         = $(INSTALL)  -m0644 $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,$(obj)/%,$@) $@
370
371 quiet_cmd_install_dts     = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,dts/%,$@)
372       cmd_install_dts     = $(INSTALL)  -m0644 $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,$(srctree)/$(obj)/dts/%,$@) $@
373
374 quiet_cmd_install_exe     = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@)
375       cmd_install_exe     = $(INSTALL)  -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(obj)/%,$@) $@
376
377 quiet_cmd_install_wrapper = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@)
378       cmd_install_wrapper = $(INSTALL)  -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(srctree)/$(obj)/%,$@) $@ ;\
379                                 sed -i $@ -e 's%^object=.*%object=$(WRAPPER_OBJDIR)%' \
380                                           -e 's%^objbin=.*%objbin=$(WRAPPER_BINDIR)%' \
381
382
383 $(DESTDIR)$(WRAPPER_OBJDIR) $(DESTDIR)$(WRAPPER_DTSDIR) $(DESTDIR)$(WRAPPER_BINDIR):
384         $(call cmd,mkdir)
385
386 $(extra-installed)      : $(DESTDIR)$(WRAPPER_OBJDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_OBJDIR)
387         $(call cmd,install)
388
389 $(hostprogs-installed)  : $(DESTDIR)$(WRAPPER_BINDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_BINDIR)
390         $(call cmd,install_exe)
391
392 $(dts-installed)        : $(DESTDIR)$(WRAPPER_DTSDIR)/% : $(srctree)/$(obj)/dts/% | $(DESTDIR)$(WRAPPER_DTSDIR)
393         $(call cmd,install_dts)
394
395 $(wrapper-installed): $(DESTDIR)$(WRAPPER_BINDIR) $(srctree)/$(obj)/wrapper | $(DESTDIR)$(WRAPPER_BINDIR)
396         $(call cmd,install_wrapper)
397
398 $(obj)/bootwrapper_install: $(all-installed)
399