3 # Copyright (C) 2006 Paul Mackerras, IBM Corporation <paulus@samba.org>
4 # This program may be used under the terms of version 2 of the GNU
5 # General Public License.
7 # This script takes a kernel binary and optionally an initrd image
8 # and/or a device-tree blob, and creates a bootable zImage for a
12 # -o zImage specify output file
13 # -p platform specify platform (links in $platform.o)
14 # -i initrd specify initrd file
15 # -d devtree specify device-tree blob
16 # -s tree.dts specify device-tree source file (needs dtc installed)
17 # -c cache $kernel.strip.gz (use if present & newer, else make)
18 # -C prefix specify command prefix for cross-building tools
19 # (strip, objcopy, ld)
20 # -D dir specify directory containing data files used by script
21 # (default ./arch/powerpc/boot)
22 # -W dir specify working directory for temporary files (default .)
24 # Stop execution if any command fails
27 # Allow for verbose output
45 # cross-compilation prefix
48 # mkimage wrapper script
49 MKIMAGE
=$srctree/scripts
/mkuboot.sh
51 # directory for object and other files used by this script
52 object
=arch
/powerpc
/boot
56 # directory for working files
60 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
61 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
62 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
75 if [ $?
-ne "0" ]; then
83 while [ "$#" -gt 0 ]; do
87 [ "$#" -gt 0 ] || usage
92 [ "$#" -gt 0 ] || usage
97 [ "$#" -gt 0 ] || usage
102 [ "$#" -gt 0 ] || usage
107 [ "$#" -gt 0 ] || usage
115 [ "$#" -gt 0 ] || usage
120 [ "$#" -gt 0 ] || usage
126 [ "$#" -gt 0 ] || usage
136 [ -z "$kernel" ] || usage
143 if [ -n "$dts" ]; then
144 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
145 dts
="$object/dts/$dts"
147 if [ -z "$dtb" ]; then
150 $dtc -O dtb
-o "$dtb" -b 0 "$dts"
153 if [ -z "$kernel" ]; then
157 elfformat
="`${CROSS}objdump -p "$kernel" | grep 'file format' | awk '{print $4}'`"
159 elf64-powerpcle
) format
=elf64lppc
;;
160 elf64-powerpc
) format
=elf32ppc
;;
161 elf32-powerpc
) format
=elf32ppc
;;
165 platformo
=$object/"$platform".o
166 lds
=$object/zImage.lds
169 tmp
=$tmpdir/zImage.$$.o
170 ksection
=.kernel
:vmlinux.strip
171 isection
=.kernel
:initrd
172 link_address
='0x400000'
177 platformo
="$object/of.o $object/epapr.o"
181 platformo
="$object/pseries-head.o $object/of.o $object/epapr.o"
182 link_address
='0x4000000'
183 if [ "$format" != "elf32ppc" ]; then
190 platformo
="$object/of.o $object/epapr.o"
191 link_address
='0x400000'
195 platformo
="$object/of.o $object/epapr.o"
199 platformo
="$object/crt0.o $object/of.o $object/epapr.o"
200 lds
=$object/zImage.coff.lds
201 link_address
='0x500000'
206 # miboot and U-boot want just the bare bits, not an ELF binary
217 *-mpc866ads|
*-mpc885ads|
*-adder875*|
*-ep88xc)
218 platformo
=$object/cuboot-8xx.o
221 platformo
=$object/cuboot-52xx.o
223 *-pq2fads|
*-ep8248e|
*-mpc8272*|
*-storcenter)
224 platformo
=$object/cuboot-pq2.o
227 platformo
=$object/cuboot-824x.o
230 platformo
=$object/cuboot-83xx.o
232 *-tqm8541|
*-mpc8560*|
*-tqm8560|
*-tqm8555|
*-ksi8560*)
233 platformo
=$object/cuboot-85xx-cpm2.o
235 *-mpc85*|
*-tqm85*|
*-sbc85*)
236 platformo
=$object/cuboot-85xx.o
239 link_address
='0x800000'
244 platformo
="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
245 lds
=$object/zImage.ps3.lds
248 objflags
="-O binary --set-section-flags=.bss=contents,alloc,load,data"
249 ksection
=.kernel
:vmlinux.bin
250 isection
=.kernel
:initrd
255 ep88xc|ep405|ep8248e
)
256 platformo
="$object/fixed-head.o $object/$platform.o"
260 platformo
="$object/fixed-head.o $object/redboot-8xx.o"
263 simpleboot-virtex405-
*)
264 platformo
="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
267 simpleboot-virtex440-
*)
268 platformo
="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
272 platformo
="$object/fixed-head.o $object/simpleboot.o"
276 platformo
="$object/fixed-head.o $object/redboot-83xx.o"
280 link_address
='0x1400000'
281 platformo
=$object/cuboot-85xx.o
284 link_address
='0x600000'
285 platformo
="$object/$platform-head.o $object/$platform.o"
288 link_address
='0x1000000'
291 link_address
='0x1000000'
293 treeboot-iss4xx-mpic
)
294 platformo
="$object/treeboot-iss4xx.o"
297 platformo
="$object/pseries-head.o $object/epapr.o $object/epapr-wrapper.o"
298 link_address
='0x20000000'
302 platformo
="$object/fixed-head.o $object/mvme5100.o"
307 vmz
="$tmpdir/`basename \"$kernel\"`.$ext"
308 if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
309 ${CROSS}objcopy
$objflags "$kernel" "$vmz.$$"
311 strip_size
=$
(stat
-c %s
$vmz.$$
)
313 if [ -n "$gzip" ]; then
314 gzip -n -f -9 "$vmz.$$"
317 if [ -n "$cacheit" ]; then
318 mv -f "$vmz.$$$gzip" "$vmz$gzip"
323 # Calculate the vmlinux.strip size
324 ${CROSS}objcopy
$objflags "$kernel" "$vmz.$$"
325 strip_size
=$
(stat
-c %s
$vmz.$$
)
329 if [ "$make_space" = "y" ]; then
330 # Round the size to next higher MB limit
331 round_size
=$
(((strip_size
+ 0xfffff) & 0xfff00000))
333 round_size
=0x$
(printf "%x" $round_size)
334 link_addr
=$
(printf "%d" $link_address)
336 if [ $link_addr -lt $strip_size ]; then
337 echo "INFO: Uncompressed kernel (size 0x$(printf "%x
\n" $strip_size))" \
338 "overlaps the address of the wrapper($link_address)"
339 echo "INFO: Fixing the link_address of wrapper to ($round_size)"
340 link_address
=$round_size
346 # Extract kernel version information, some platforms want to include
347 # it in the image header
348 version
=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
350 if [ -n "$version" ]; then
351 uboot_version
="-n Linux-$version"
354 # physical offset of kernel image
355 membase
=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
360 ${MKIMAGE} -A ppc
-O linux
-T kernel
-C gzip -a $membase -e $membase \
361 $uboot_version -d "$vmz" "$ofile"
362 if [ -z "$cacheit" ]; then
369 # obs600 wants a multi image with an initrd, so we need to put a fake
370 # one in even when building a "normal" image.
371 if [ -n "$initrd" ]; then
375 echo "\0" >>"$real_rd"
377 ${MKIMAGE} -A ppc
-O linux
-T multi
-C gzip -a $membase -e $membase \
378 $uboot_version -d "$vmz":"$real_rd":"$dtb" "$ofile"
379 if [ -z "$initrd" ]; then
382 if [ -z "$cacheit" ]; then
390 ${CROSS}objcopy
$4 $1 \
391 --add-section=$3="$2" \
392 --set-section-flags=$3=contents
,alloc
,load
,readonly,data
395 addsec
$tmp "$vmz" $ksection $object/empty.o
396 if [ -z "$cacheit" ]; then
400 if [ -n "$initrd" ]; then
401 addsec
$tmp "$initrd" $isection
404 if [ -n "$dtb" ]; then
405 addsec
$tmp "$dtb" .kernel
:dtb
406 if [ -n "$dts" ]; then
411 if [ "$platform" != "miboot" ]; then
412 if [ -n "$link_address" ] ; then
413 text_start
="-Ttext $link_address"
415 ${CROSS}ld
-m $format -T $lds $text_start $pie -o "$ofile" \
416 $platformo $tmp $object/wrapper.a
420 # Some platforms need the zImage's entry point and base address
421 base
=0x
`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
422 entry
=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
424 if [ -n "$binary" ]; then
425 mv "$ofile" "$ofile".elf
426 ${CROSS}objcopy
-O binary
"$ofile".elf
"$ofile"
429 # post-processing needed for some platforms
432 $objbin/addnote
"$ofile"
435 ${CROSS}objcopy
-O aixcoff-rs6000
--set-start "$entry" "$ofile"
436 $objbin/hack-coff
"$ofile"
439 gzip -n -f -9 "$ofile"
440 ${MKIMAGE} -A ppc
-O linux
-T kernel
-C gzip -a "$base" -e "$entry" \
441 $uboot_version -d "$ofile".gz
"$ofile"
444 mv "$ofile" "$ofile.elf"
445 $objbin/mktree
"$ofile.elf" "$ofile" "$base" "$entry"
446 if [ -z "$cacheit" ]; then
452 # The ps3's loader supports loading a gzipped binary image from flash
453 # rom to ram addr zero. The loader then enters the system reset
454 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
455 # a binary image of the kernel to be at addr zero, and yet have a
456 # suitable bootwrapper entry at 0x100. To construct the final rom
457 # image 512 bytes from offset 0x100 is copied to the bootwrapper
458 # place holder at symbol __system_reset_kernel. The 512 bytes of the
459 # bootwrapper entry code at symbol __system_reset_overlay is then
460 # copied to offset 0x100. At runtime the bootwrapper program copies
461 # the data at __system_reset_kernel back to addr 0x100.
463 system_reset_overlay
=0x
`${CROSS}nm "$ofile" \
464 | grep ' __system_reset_overlay$' \
466 system_reset_overlay
=`printf "%d" $system_reset_overlay`
467 system_reset_kernel
=0x
`${CROSS}nm "$ofile" \
468 | grep ' __system_reset_kernel$' \
470 system_reset_kernel
=`printf "%d" $system_reset_kernel`
474 ${CROSS}objcopy
-O binary
"$ofile" "$ofile.bin"
476 run_cmd
dd if="$ofile.bin" of
="$ofile.bin" conv
=notrunc \
477 skip
=$overlay_dest seek
=$system_reset_kernel \
478 count
=$overlay_size bs
=1
480 run_cmd
dd if="$ofile.bin" of
="$ofile.bin" conv
=notrunc \
481 skip
=$system_reset_overlay seek
=$overlay_dest \
482 count
=$overlay_size bs
=1
484 odir
="$(dirname "$ofile.bin
")"
485 rm -f "$odir/otheros.bld"
486 gzip -n --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"