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
141 link_address='0x400000'
145 platformo=$object/of.o
146 link_address='0x4000000'
149 platformo=$object/of.o
152 platformo=$object/of.o
153 lds=$object/zImage.coff.lds
154 link_address='0x500000'
157 # miboot and U-boot want just the bare bits, not an ELF binary
168 *-mpc885ads|*-adder875*|*-ep88xc)
169 platformo=$object/cuboot-8xx.o
172 platformo=$object/cuboot-52xx.o
174 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
175 platformo=$object/cuboot-pq2.o
178 platformo=$object/cuboot-824x.o
181 platformo=$object/cuboot-83xx.o
183 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
184 platformo=$object/cuboot-85xx-cpm2.o
186 *-mpc85*|*-tqm85*|*-sbc85*)
187 platformo=$object/cuboot-85xx.o
192 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
193 lds=$object/zImage.ps3.lds
196 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
197 ksection=.kernel:vmlinux.bin
198 isection=.kernel:initrd
201 ep88xc|ep405|ep8248e)
202 platformo="$object/fixed-head.o $object/$platform.o"
206 platformo="$object/fixed-head.o $object/redboot-8xx.o"
209 simpleboot-virtex405-*)
210 platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
213 simpleboot-virtex440-*)
214 platformo="$object/simpleboot.o $object/virtex.o"
218 platformo="$object/simpleboot.o"
222 platformo="$object/fixed-head.o $object/redboot-83xx.o"
227 vmz="$tmpdir/`basename \"$kernel\"`.$ext"
228 if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
229 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
231 if [ -n "$gzip" ]; then
235 if [ -n "$cacheit" ]; then
236 mv -f "$vmz.$$$gzip" "$vmz$gzip"
244 # Extract kernel version information, some platforms want to include
245 # it in the image header
246 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
248 if [ -n "$version" ]; then
249 uboot_version="-n Linux-$version"
252 # physical offset of kernel image
253 membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
258 mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
259 $uboot_version -d "$vmz" "$ofile"
260 if [ -z "$cacheit" ]; then
268 ${CROSS}objcopy $4 $1 \
269 --add-section=$3="$2" \
270 --set-section-flags=$3=contents,alloc,load,readonly,data
273 addsec $tmp "$vmz" $ksection $object/empty.o
274 if [ -z "$cacheit" ]; then
278 if [ -n "$initrd" ]; then
279 addsec $tmp "$initrd" $isection
282 if [ -n "$dtb" ]; then
283 addsec $tmp "$dtb" .kernel:dtb
284 if [ -n "$dts" ]; then
289 if [ "$platform" != "miboot" ]; then
290 if [ -n "$link_address" ] ; then
291 text_start="-Ttext $link_address --defsym _start=$link_address"
293 ${CROSS}ld -m elf32ppc -T $lds $text_start -o "$ofile" \
294 $platformo $tmp $object/wrapper.a
298 # Some platforms need the zImage's entry point and base address
299 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
300 entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
302 if [ -n "$binary" ]; then
303 mv "$ofile" "$ofile".elf
304 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
307 # post-processing needed for some platforms
310 $objbin/addnote "$ofile"
313 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
314 $objbin/hack-coff "$ofile"
318 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
319 $uboot_version -d "$ofile".gz "$ofile"
322 mv "$ofile" "$ofile.elf"
323 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
324 if [ -z "$cacheit" ]; then
330 # The ps3's loader supports loading a gzipped binary image from flash
331 # rom to ram addr zero. The loader then enters the system reset
332 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
333 # a binary image of the kernel to be at addr zero, and yet have a
334 # suitable bootwrapper entry at 0x100. To construct the final rom
335 # image 512 bytes from offset 0x100 is copied to the bootwrapper
336 # place holder at symbol __system_reset_kernel. The 512 bytes of the
337 # bootwrapper entry code at symbol __system_reset_overlay is then
338 # copied to offset 0x100. At runtime the bootwrapper program copies
339 # the data at __system_reset_kernel back to addr 0x100.
341 system_reset_overlay=0x`${CROSS}nm "$ofile" \
342 | grep ' __system_reset_overlay$' \
344 system_reset_overlay=`printf "%d" $system_reset_overlay`
345 system_reset_kernel=0x`${CROSS}nm "$ofile" \
346 | grep ' __system_reset_kernel$' \
348 system_reset_kernel=`printf "%d" $system_reset_kernel`
352 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
354 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
355 skip=$overlay_dest seek=$system_reset_kernel \
356 count=$overlay_size bs=1
358 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
359 skip=$system_reset_overlay seek=$overlay_dest \
360 count=$overlay_size bs=1
362 odir="$(dirname "$ofile.bin")"
363 rm -f "$odir/otheros.bld"
364 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"