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
43 # cross-compilation prefix
46 # directory for object and other files used by this script
47 object
=arch
/powerpc
/boot
50 # directory for working files
54 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
55 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
56 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
60 while [ "$#" -gt 0 ]; do
64 [ "$#" -gt 0 ] || usage
69 [ "$#" -gt 0 ] || usage
74 [ "$#" -gt 0 ] || usage
79 [ "$#" -gt 0 ] || usage
84 [ "$#" -gt 0 ] || usage
92 [ "$#" -gt 0 ] || usage
97 [ "$#" -gt 0 ] || usage
103 [ "$#" -gt 0 ] || usage
113 [ -z "$kernel" ] || usage
120 if [ -n "$dts" ]; then
121 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
122 dts
="$object/dts/$dts"
124 if [ -z "$dtb" ]; then
127 $object/dtc
-O dtb
-o "$dtb" -b 0 "$dts"
130 if [ -z "$kernel" ]; then
134 platformo
=$object/"$platform".o
135 lds
=$object/zImage.lds
138 tmp
=$tmpdir/zImage.$$.o
139 ksection
=.kernel
:vmlinux.strip
140 isection
=.kernel
:initrd
144 platformo
=$object/of.o
147 platformo
=$object/of.o
148 lds
=$object/zImage.coff.lds
151 # miboot and U-boot want just the bare bits, not an ELF binary
162 *-mpc885ads|
*-adder875*|
*-ep88xc)
163 platformo
=$object/cuboot-8xx.o
166 platformo
=$object/cuboot-52xx.o
168 *-pq2fads|
*-ep8248e|
*-mpc8272*|
*-storcenter)
169 platformo
=$object/cuboot-pq2.o
172 platformo
=$object/cuboot-824x.o
175 platformo
=$object/cuboot-83xx.o
177 *-tqm8541|
*-mpc8560*|
*-tqm8560|
*-tqm8555*)
178 platformo
=$object/cuboot-85xx-cpm2.o
181 platformo
=$object/cuboot-85xx.o
186 platformo
="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
187 lds
=$object/zImage.ps3.lds
190 objflags
="-O binary --set-section-flags=.bss=contents,alloc,load,data"
191 ksection
=.kernel
:vmlinux.bin
192 isection
=.kernel
:initrd
194 <<<<<<< HEAD:arch/powerpc/boot/wrapper
195 ep88xc|ep405|redboot*|ep8248e)
197 ep88xc|ep405|ep8248e)
198 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:arch/powerpc/boot/wrapper
199 platformo="$object/fixed-head.o $object/$platform.o"
202 <<<<<<< HEAD:arch/powerpc/boot/wrapper
205 platformo="$object/fixed-head.o $object/redboot-8xx.o"
208 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:arch/powerpc/boot/wrapper
211 vmz="$tmpdir/`basename \"$kernel\"`.$ext"
212 if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
213 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
215 if [ -n "$gzip" ]; then
219 if [ -n "$cacheit" ]; then
220 mv -f "$vmz.$$$gzip" "$vmz$gzip"
228 # Extract kernel version information, some platforms want to include
229 # it in the image header
230 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
232 if [ -n "$version" ]; then
233 uboot_version="-n Linux-$version"
239 mkimage -A ppc -O linux -T kernel -C gzip -a 00000000 -e 00000000 \
240 $uboot_version -d "$vmz" "$ofile"
241 if [ -z "$cacheit" ]; then
249 ${CROSS}objcopy $4 $1 \
250 --add-section=$3="$2" \
251 --set-section-flags=$3=contents,alloc,load,readonly,data
254 addsec $tmp "$vmz" $ksection $object/empty.o
255 if [ -z "$cacheit" ]; then
259 if [ -n "$initrd" ]; then
260 addsec $tmp "$initrd" $isection
263 if [ -n "$dtb" ]; then
264 addsec $tmp "$dtb" .kernel:dtb
265 if [ -n "$dts" ]; then
270 if [ "$platform" != "miboot" ]; then
271 ${CROSS}ld -m elf32ppc -T $lds -o "$ofile" \
272 $platformo $tmp $object/wrapper.a
276 # Some platforms need the zImage's entry point and base address
277 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
278 entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
280 if [ -n "$binary" ]; then
281 mv "$ofile" "$ofile".elf
282 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
285 # post-processing needed for some platforms
288 $objbin/addnote "$ofile"
291 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
292 $objbin/hack-coff "$ofile"
296 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
297 $uboot_version -d "$ofile".gz "$ofile"
300 mv "$ofile" "$ofile.elf"
301 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
302 if [ -z "$cacheit" ]; then
308 # The ps3's loader supports loading gzipped binary images from flash
309 # rom to addr zero. The loader enters the image at addr 0x100. A
310 # bootwrapper overlay is use to arrange for the kernel to be loaded
311 # to addr zero and to have a suitable bootwrapper entry at 0x100.
312 # To construct the rom image, 0x100 bytes from offset 0x100 in the
313 # kernel is copied to the bootwrapper symbol __system_reset_kernel.
314 # The 0x100 bytes at the bootwrapper symbol __system_reset_overlay is
315 # then copied to offset 0x100. At runtime the bootwrapper program
316 # copies the 0x100 bytes at __system_reset_kernel to addr 0x100.
318 system_reset_overlay=0x`${CROSS}nm "$ofile" \
319 | grep ' __system_reset_overlay$' \
321 system_reset_overlay=`printf "%d" $system_reset_overlay`
322 system_reset_kernel=0x`${CROSS}nm "$ofile" \
323 | grep ' __system_reset_kernel$' \
325 system_reset_kernel=`printf "%d" $system_reset_kernel`
329 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
331 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
332 skip=$overlay_dest seek=$system_reset_kernel \
333 count=$overlay_size bs=1
335 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
336 skip=$system_reset_overlay seek=$overlay_dest \
337 count=$overlay_size bs=1
339 odir="$(dirname "$ofile.bin")"
340 rm -f "$odir/otheros.bld"
341 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"