Lines Matching +full:0 +full:- +full:9 +full:a +full:- +full:z
2 # SPDX-License-Identifier: GPL-2.0-only
6 # This script takes a kernel binary and optionally an initrd image
7 # and/or a device-tree blob, and creates a bootable zImage for a
11 # -o zImage specify output file
12 # -p platform specify platform (links in $platform.o)
13 # -i initrd specify initrd file
14 # -d devtree specify device-tree blob
15 # -s tree.dts specify device-tree source file (needs dtc installed)
16 # -e esm_blob specify ESM blob for secure images
17 # -c cache $kernel.strip.gz (use if present & newer, else make)
18 # -C prefix specify command prefix for cross-building tools
20 # -D dir specify directory containing data files used by script
22 # -W dir specify working directory for temporary files (default .)
23 # -z use gzip (legacy)
24 # -Z zsuffix compression to use (gz, xz or none)
27 set -e
31 set -x
32 map="-Map wrapper.map"
50 # cross-compilation prefix
65 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
66 echo ' [-d devtree] [-s tree.dts] [-e esm_blob]' >&2
67 echo ' [-c] [-C cross-prefix] [-D datadir] [-W workingdir]' >&2
68 echo ' [-Z (gz|xz|none)] [--no-compression] [vmlinux]' >&2
81 if [ $? -ne "0" ]; then
85 set -e
89 while [ "$#" -gt 0 ]; do
91 -o)
93 [ "$#" -gt 0 ] || usage
96 -p)
98 [ "$#" -gt 0 ] || usage
101 -i)
103 [ "$#" -gt 0 ] || usage
106 -d)
108 [ "$#" -gt 0 ] || usage
111 -e)
113 [ "$#" -gt 0 ] || usage
116 -s)
118 [ "$#" -gt 0 ] || usage
121 -c)
124 -C)
126 [ "$#" -gt 0 ] || usage
129 -D)
131 [ "$#" -gt 0 ] || usage
135 -W)
137 [ "$#" -gt 0 ] || usage
140 -z)
144 -Z)
146 [ "$#" -gt 0 ] || usage
147 … [ "$1" != "gz" -o "$1" != "xz" -o "$1" != "lzma" -o "$1" != "lzo" -o "$1" != "none" ] || usage
160 --no-gzip)
161 # a "feature" of the the wrapper script is that it can be used outside
166 -?)
170 [ -z "$kernel" ] || usage
178 if [ -n "$dts" ]; then
179 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
182 if [ -z "$dtb" ]; then
185 $dtc -O dtb -o "$dtb" -b 0 "$dts"
188 if [ -z "$kernel" ]; then
192 LANG=C elfformat="`${CROSS}objdump -p "$kernel" | grep 'file format' | awk '{print $4}'`"
194 elf64-powerpcle) format=elf64lppc ;;
195 elf64-powerpc) format=elf32ppc ;;
196 elf32-powerpc) format=elf32ppc ;;
201 # Poached from scripts/ld-version.sh, but we don't want to call that because
207 gsub("-.*", "");
208 split($1,a, ".");
209 print a[1]*100000000 + a[2]*1000000 + a[3]*10000;
214 # Do not include PT_INTERP segment when linking pie. Non-pie linking
216 LD_VERSION=$(${CROSS}ld --version | ld_version)
218 if [ "$LD_VERSION" -ge "$LD_NO_DL_MIN_VERSION" ] ; then
219 nodl="--no-dynamic-linker"
225 objflags=-S
230 link_address='0x400000'
234 if [ -n "$esm_blob" -a "$platform" != "pseries" ]; then
235 echo "ESM blob not support on non-pseries platforms" >&2
245 platformo="$object/pseries-head.o $object/of.o $object/epapr.o"
246 link_address='0x4000000'
249 pie=-pie
255 link_address='0x400000'
265 link_address='0x500000'
270 # miboot and U-boot want just the bare bits, not an ELF binary
272 objflags="-O binary"
281 *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc)
282 platformo=$object/cuboot-8xx.o
284 *5200*|*-motionpro)
285 platformo=$object/cuboot-52xx.o
287 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
288 platformo=$object/cuboot-pq2.o
290 *-mpc824*)
291 platformo=$object/cuboot-824x.o
293 *-mpc83*|*-asp834x*)
294 platformo=$object/cuboot-83xx.o
296 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
297 platformo=$object/cuboot-85xx-cpm2.o
299 *-mpc85*|*-tqm85*|*-sbc85*)
300 platformo=$object/cuboot-85xx.o
302 *-amigaone)
303 link_address='0x800000'
308 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
312 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
320 platformo="$object/fixed-head.o $object/$platform.o"
323 adder875-redboot)
324 platformo="$object/fixed-head.o $object/redboot-8xx.o"
327 simpleboot-*)
328 platformo="$object/fixed-head.o $object/simpleboot.o"
331 asp834x-redboot)
332 platformo="$object/fixed-head.o $object/redboot-83xx.o"
336 link_address='0x1400000'
337 platformo=$object/cuboot-85xx.o
340 link_address='0x600000'
341 platformo="$object/$platform-head.o $object/$platform.o"
343 treeboot-currituck)
344 link_address='0x1000000'
346 treeboot-akebono)
347 link_address='0x1000000'
349 treeboot-iss4xx-mpic)
350 platformo="$object/treeboot-iss4xx.o"
353 platformo="$object/pseries-head.o $object/epapr.o $object/epapr-wrapper.o"
354 link_address='0x20000000'
355 pie=-pie
358 platformo="$object/fixed-head.o $object/mvme5100.o"
362 platformo="$object/motload-head.o $object/mvme7100.o"
363 link_address='0x4000000'
372 strip_size=$(${CONFIG_SHELL} "${srctree}/scripts/file-size.sh" "$vmz.$$")
374 if [ -z "$cacheit" -o ! -f "$vmz$compression" -o "$vmz$compression" -ot "$kernel" ]; then
378 xz --check=crc32 -f -6 "$vmz.$$"
381 gzip -n -f -9 "$vmz.$$"
384 xz --format=lzma -f -6 "$vmz.$$"
387 lzop -f -9 "$vmz.$$"
396 if [ -n "$cacheit" ]; then
397 mv -f "$vmz.$$$compression" "$vmz$compression"
402 rm -f $vmz.$$
409 round_size=$(((strip_size + 0xfffff) & 0xfff00000))
411 round_size=0x$(printf "%x" $round_size)
414 if [ $link_addr -lt $strip_size ]; then
415 echo "INFO: Uncompressed kernel (size 0x$(printf "%x\n" $strip_size))" \
424 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
425 cut -d' ' -f3`
426 if [ -n "$version" ]; then
427 uboot_version="-n Linux-$version"
431 membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
435 rm -f "$ofile"
436 ${MKIMAGE} -A ppc -O linux -T kernel -C $uboot_comp -a $membase -e $membase \
437 $uboot_version -d "$vmz" "$ofile"
438 if [ -z "$cacheit" ]; then
439 rm -f "$vmz"
441 exit 0
443 uboot-obs600)
444 rm -f "$ofile"
445 # obs600 wants a multi image with an initrd, so we need to put a fake
446 # one in even when building a "normal" image.
447 if [ -n "$initrd" ]; then
451 echo "\0" >>"$real_rd"
453 ${MKIMAGE} -A ppc -O linux -T multi -C gzip -a $membase -e $membase \
454 $uboot_version -d "$vmz":"$real_rd":"$dtb" "$ofile"
455 if [ -z "$initrd" ]; then
456 rm -f "$real_rd"
458 if [ -z "$cacheit" ]; then
459 rm -f "$vmz"
461 exit 0
467 --add-section=$3="$2" \
468 --set-section-flags=$3=contents,alloc,load,readonly,data
472 if [ -z "$cacheit" ]; then
473 rm -f "$vmz"
476 if [ -n "$initrd" ]; then
480 if [ -n "$dtb" ]; then
482 if [ -n "$dts" ]; then
487 if [ -n "$esm_blob" ]; then
492 if [ -n "$link_address" ] ; then
493 text_start="-Ttext $link_address"
496 ${CROSS}ld -m $format -T $lds $text_start $pie $nodl -o "$ofile" $map \
497 $platformo $tmp $object/wrapper.a
502 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
503 entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
505 if [ -n "$binary" ]; then
507 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
510 # post-processing needed for some platforms
516 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
517 $objbin/hack-coff "$ofile"
520 gzip -n -f -9 "$ofile"
521 ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
522 $uboot_version -d "$ofile".gz "$ofile"
527 if [ -z "$cacheit" ]; then
528 rm -f "$ofile.elf"
530 exit 0
533 # The ps3's loader supports loading a gzipped binary image from flash
535 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
536 # a binary image of the kernel to be at addr zero, and yet have a
537 # suitable bootwrapper entry at 0x100. To construct the final rom
538 # image 512 bytes from offset 0x100 is copied to the bootwrapper
541 # copied to offset 0x100. At runtime the bootwrapper program copies
542 # the data at __system_reset_kernel back to addr 0x100.
544 system_reset_overlay=0x`${CROSS}nm "$ofile" \
546 | cut -d' ' -f1`
548 system_reset_kernel=0x`${CROSS}nm "$ofile" \
550 | cut -d' ' -f1`
555 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
567 # The ps3's flash loader has a size limit of 16 MiB for the uncompressed
568 # image. If a compressed image that exceeded this limit is written to
572 rm -f "$odir"/{otheros,otheros-too-big}.bld
573 size=$(${CROSS}nm --no-sort --radix=d "$ofile" | egrep ' _end$' | cut -d' ' -f1)
575 if [ $size -gt $((0x1000000)) ]; then
576 bld="otheros-too-big.bld"
578 gzip -n --force -9 --stdout "$ofile.bin" > "$odir/$bld"