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
49 # directory for working files
53 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
54 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
55 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
59 while [ "$#" -gt 0 ]; do
63 [ "$#" -gt 0 ] || usage
68 [ "$#" -gt 0 ] || usage
73 [ "$#" -gt 0 ] || usage
78 [ "$#" -gt 0 ] || usage
83 [ "$#" -gt 0 ] || usage
91 [ "$#" -gt 0 ] || usage
96 [ "$#" -gt 0 ] || usage
101 [ "$#" -gt 0 ] || usage
111 [ -z "$kernel" ] || usage
118 if [ -n "$dts" ]; then
119 if [ -z "$dtb" ]; then
122 dtc -O dtb -o "$dtb" -b 0 -V 16 "$dts"
125 if [ -z "$kernel" ]; then
129 platformo=$object/"$platform".o
130 lds=$object/zImage.lds
133 tmp=$tmpdir/zImage.$$.o
134 ksection=.kernel:vmlinux.strip
135 isection=.kernel:initrd
139 platformo=$object/of.o
142 platformo=$object/of.o
143 lds=$object/zImage.coff.lds
146 # miboot and U-boot want just the bare bits, not an ELF binary
158 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
159 lds=$object/zImage.ps3.lds
162 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
163 ksection=.kernel:vmlinux.bin
164 isection=.kernel:initrd
167 platformo="$object/fixed-head.o $object/$platform.o"
172 vmz="$tmpdir/`basename \"$kernel\"`.$ext"
173 if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
174 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
176 if [ -n "$gzip" ]; then
180 if [ -n "$cacheit" ]; then
181 mv -f "$vmz.$$$gzip" "$vmz$gzip"
189 # Extract kernel version information, some platforms want to include
190 # it in the image header
191 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
193 if [ -n "$version" ]; then
194 uboot_version="-n Linux-$version"
200 mkimage -A ppc -O linux -T kernel -C gzip -a 00000000 -e 00000000 \
201 $uboot_version -d "$vmz" "$ofile"
202 if [ -z "$cacheit" ]; then
210 ${CROSS}objcopy $4 $1 \
211 --add-section=$3="$2" \
212 --set-section-flags=$3=contents,alloc,load,readonly,data
215 addsec $tmp "$vmz" $ksection $object/empty.o
216 if [ -z "$cacheit" ]; then
220 if [ -n "$initrd" ]; then
221 addsec $tmp "$initrd" $isection
224 if [ -n "$dtb" ]; then
225 addsec $tmp "$dtb" .kernel:dtb
226 if [ -n "$dts" ]; then
231 if [ "$platform" != "miboot" ]; then
232 ${CROSS}ld -m elf32ppc -T $lds -o "$ofile" \
233 $platformo $tmp $object/wrapper.a
237 # Some platforms need the zImage's entry point and base address
238 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
239 entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
241 if [ -n "$binary" ]; then
242 mv "$ofile" "$ofile".elf
243 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
246 # post-processing needed for some platforms
249 $object/addnote "$ofile"
252 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
253 $object/hack-coff "$ofile"
257 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
258 $uboot_version -d "$ofile".gz "$ofile"
261 mv "$ofile" "$ofile.elf"
262 $object/mktree "$ofile.elf" "$ofile" "$base" "$entry"
263 if [ -z "$cacheit" ]; then
269 # The ps3's loader supports loading gzipped binary images from flash
270 # rom to addr zero. The loader enters the image at addr 0x100. A
271 # bootwrapper overlay is use to arrange for the kernel to be loaded
272 # to addr zero and to have a suitable bootwrapper entry at 0x100.
273 # To construct the rom image, 0x100 bytes from offset 0x100 in the
274 # kernel is copied to the bootwrapper symbol __system_reset_kernel.
275 # The 0x100 bytes at the bootwrapper symbol __system_reset_overlay is
276 # then copied to offset 0x100. At runtime the bootwrapper program
277 # copies the 0x100 bytes at __system_reset_kernel to addr 0x100.
279 system_reset_overlay=0x`${CROSS}nm "$ofile" \
280 | grep ' __system_reset_overlay$' \
282 system_reset_overlay=`printf "%d" $system_reset_overlay`
283 system_reset_kernel=0x`${CROSS}nm "$ofile" \
284 | grep ' __system_reset_kernel$' \
286 system_reset_kernel=`printf "%d" $system_reset_kernel`
290 rm -f "$object/otheros.bld"
292 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
294 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
295 skip=$overlay_dest seek=$system_reset_kernel \
296 count=$overlay_size bs=1
298 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
299 skip=$system_reset_overlay seek=$overlay_dest \
300 count=$overlay_size bs=1
302 gzip --force -9 --stdout "$ofile.bin" > "$object/otheros.bld"