Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / powerpc / boot / wrapper
blob8f8b8494d62f8c6eb4c2a9b17ca16fc22a66f852
1 #!/bin/sh
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
9 # given platform.
11 # Options:
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
25 set -e
27 # Allow for verbose output
28 if [ "$V" = 1 ]; then
29 set -x
32 # defaults
33 kernel=
34 ofile=zImage
35 platform=of
36 initrd=
37 dtb=
38 dts=
39 cacheit=
40 binary=
41 gzip=.gz
43 # cross-compilation prefix
44 CROSS=
46 # directory for object and other files used by this script
47 object=arch/powerpc/boot
48 objbin=$object
50 # directory for working files
51 tmpdir=.
53 usage() {
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
57 exit 1
60 while [ "$#" -gt 0 ]; do
61 case "$1" in
62 -o)
63 shift
64 [ "$#" -gt 0 ] || usage
65 ofile="$1"
67 -p)
68 shift
69 [ "$#" -gt 0 ] || usage
70 platform="$1"
72 -i)
73 shift
74 [ "$#" -gt 0 ] || usage
75 initrd="$1"
77 -d)
78 shift
79 [ "$#" -gt 0 ] || usage
80 dtb="$1"
82 -s)
83 shift
84 [ "$#" -gt 0 ] || usage
85 dts="$1"
87 -c)
88 cacheit=y
90 -C)
91 shift
92 [ "$#" -gt 0 ] || usage
93 CROSS="$1"
95 -D)
96 shift
97 [ "$#" -gt 0 ] || usage
98 object="$1"
99 objbin="$1"
102 shift
103 [ "$#" -gt 0 ] || usage
104 tmpdir="$1"
106 --no-gzip)
107 gzip=
110 usage
113 [ -z "$kernel" ] || usage
114 kernel="$1"
116 esac
117 shift
118 done
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
125 dtb="$platform.dtb"
127 $object/dtc -O dtb -o "$dtb" -b 0 "$dts"
130 if [ -z "$kernel" ]; then
131 kernel=vmlinux
134 platformo=$object/"$platform".o
135 lds=$object/zImage.lds
136 ext=strip
137 objflags=-S
138 tmp=$tmpdir/zImage.$$.o
139 ksection=.kernel:vmlinux.strip
140 isection=.kernel:initrd
142 case "$platform" in
143 pmac|pseries|chrp)
144 platformo=$object/of.o
146 coff)
147 platformo=$object/of.o
148 lds=$object/zImage.coff.lds
150 miboot|uboot)
151 # miboot and U-boot want just the bare bits, not an ELF binary
152 ext=bin
153 objflags="-O binary"
154 tmp="$ofile"
155 ksection=image
156 isection=initrd
158 cuboot*)
159 binary=y
160 gzip=
161 case "$platform" in
162 *-mpc885ads|*-adder875*|*-ep88xc)
163 platformo=$object/cuboot-8xx.o
165 *5200*|*-motionpro)
166 platformo=$object/cuboot-52xx.o
168 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
169 platformo=$object/cuboot-pq2.o
171 *-mpc824*)
172 platformo=$object/cuboot-824x.o
174 *-mpc83*)
175 platformo=$object/cuboot-83xx.o
177 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555)
178 platformo=$object/cuboot-85xx-cpm2.o
180 *-mpc85*|*-tqm8540|*-sbc85*)
181 platformo=$object/cuboot-85xx.o
183 esac
185 ps3)
186 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
187 lds=$object/zImage.ps3.lds
188 gzip=
189 ext=bin
190 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
191 ksection=.kernel:vmlinux.bin
192 isection=.kernel:initrd
194 ep88xc|ep405|ep8248e)
195 platformo="$object/fixed-head.o $object/$platform.o"
196 binary=y
198 adder875-redboot)
199 platformo="$object/fixed-head.o $object/redboot-8xx.o"
200 binary=y
202 esac
204 vmz="$tmpdir/`basename \"$kernel\"`.$ext"
205 if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
206 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
208 if [ -n "$gzip" ]; then
209 gzip -f -9 "$vmz.$$"
212 if [ -n "$cacheit" ]; then
213 mv -f "$vmz.$$$gzip" "$vmz$gzip"
214 else
215 vmz="$vmz.$$"
219 vmz="$vmz$gzip"
221 # Extract kernel version information, some platforms want to include
222 # it in the image header
223 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
224 cut -d' ' -f3`
225 if [ -n "$version" ]; then
226 uboot_version="-n Linux-$version"
229 case "$platform" in
230 uboot)
231 rm -f "$ofile"
232 mkimage -A ppc -O linux -T kernel -C gzip -a 00000000 -e 00000000 \
233 $uboot_version -d "$vmz" "$ofile"
234 if [ -z "$cacheit" ]; then
235 rm -f "$vmz"
237 exit 0
239 esac
241 addsec() {
242 ${CROSS}objcopy $4 $1 \
243 --add-section=$3="$2" \
244 --set-section-flags=$3=contents,alloc,load,readonly,data
247 addsec $tmp "$vmz" $ksection $object/empty.o
248 if [ -z "$cacheit" ]; then
249 rm -f "$vmz"
252 if [ -n "$initrd" ]; then
253 addsec $tmp "$initrd" $isection
256 if [ -n "$dtb" ]; then
257 addsec $tmp "$dtb" .kernel:dtb
258 if [ -n "$dts" ]; then
259 rm $dtb
263 if [ "$platform" != "miboot" ]; then
264 ${CROSS}ld -m elf32ppc -T $lds -o "$ofile" \
265 $platformo $tmp $object/wrapper.a
266 rm $tmp
269 # Some platforms need the zImage's entry point and base address
270 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
271 entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
273 if [ -n "$binary" ]; then
274 mv "$ofile" "$ofile".elf
275 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
278 # post-processing needed for some platforms
279 case "$platform" in
280 pseries|chrp)
281 $objbin/addnote "$ofile"
283 coff)
284 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
285 $objbin/hack-coff "$ofile"
287 cuboot*)
288 gzip -f -9 "$ofile"
289 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
290 $uboot_version -d "$ofile".gz "$ofile"
292 treeboot*)
293 mv "$ofile" "$ofile.elf"
294 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
295 if [ -z "$cacheit" ]; then
296 rm -f "$ofile.elf"
298 exit 0
300 ps3)
301 # The ps3's loader supports loading gzipped binary images from flash
302 # rom to addr zero. The loader enters the image at addr 0x100. A
303 # bootwrapper overlay is use to arrange for the kernel to be loaded
304 # to addr zero and to have a suitable bootwrapper entry at 0x100.
305 # To construct the rom image, 0x100 bytes from offset 0x100 in the
306 # kernel is copied to the bootwrapper symbol __system_reset_kernel.
307 # The 0x100 bytes at the bootwrapper symbol __system_reset_overlay is
308 # then copied to offset 0x100. At runtime the bootwrapper program
309 # copies the 0x100 bytes at __system_reset_kernel to addr 0x100.
311 system_reset_overlay=0x`${CROSS}nm "$ofile" \
312 | grep ' __system_reset_overlay$' \
313 | cut -d' ' -f1`
314 system_reset_overlay=`printf "%d" $system_reset_overlay`
315 system_reset_kernel=0x`${CROSS}nm "$ofile" \
316 | grep ' __system_reset_kernel$' \
317 | cut -d' ' -f1`
318 system_reset_kernel=`printf "%d" $system_reset_kernel`
319 overlay_dest="256"
320 overlay_size="256"
322 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
324 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
325 skip=$overlay_dest seek=$system_reset_kernel \
326 count=$overlay_size bs=1
328 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
329 skip=$system_reset_overlay seek=$overlay_dest \
330 count=$overlay_size bs=1
332 odir="$(dirname "$ofile.bin")"
333 rm -f "$odir/otheros.bld"
334 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"
336 esac