blob: 4db487d1d2a84f1c7707cde516bc6fa9984078a2 [file] [log] [blame]
Paul Mackerras2bf11812006-09-27 22:47:03 +10001#!/bin/sh
2
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.
6
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.
10
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 .)
23
Grant Likelyd4740372007-10-23 14:27:36 +100024# Stop execution if any command fails
25set -e
26
Grant Likely7f66c1f2007-10-23 14:27:31 +100027# Allow for verbose output
28if [ "$V" = 1 ]; then
29 set -x
30fi
31
Paul Mackerras2bf11812006-09-27 22:47:03 +100032# defaults
33kernel=
34ofile=zImage
35platform=of
36initrd=
37dtb=
38dts=
39cacheit=
Scott Wood11c146c2007-09-14 14:58:25 -050040binary=
Scott Wooda9903812007-03-16 12:27:59 -050041gzip=.gz
Paul Mackerras2bf11812006-09-27 22:47:03 +100042
43# cross-compilation prefix
44CROSS=
45
46# directory for object and other files used by this script
47object=arch/powerpc/boot
David Woodhouse5c539ee2007-12-03 13:52:05 +110048objbin=$object
Paul Mackerras2bf11812006-09-27 22:47:03 +100049
50# directory for working files
51tmpdir=.
52
53usage() {
54 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
55 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
Scott Wooda9903812007-03-16 12:27:59 -050056 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
Paul Mackerras2bf11812006-09-27 22:47:03 +100057 exit 1
58}
59
60while [ "$#" -gt 0 ]; do
61 case "$1" in
62 -o)
63 shift
64 [ "$#" -gt 0 ] || usage
65 ofile="$1"
66 ;;
67 -p)
68 shift
69 [ "$#" -gt 0 ] || usage
70 platform="$1"
71 ;;
72 -i)
73 shift
74 [ "$#" -gt 0 ] || usage
75 initrd="$1"
76 ;;
77 -d)
78 shift
79 [ "$#" -gt 0 ] || usage
80 dtb="$1"
81 ;;
82 -s)
83 shift
84 [ "$#" -gt 0 ] || usage
85 dts="$1"
86 ;;
87 -c)
88 cacheit=y
89 ;;
90 -C)
91 shift
92 [ "$#" -gt 0 ] || usage
93 CROSS="$1"
94 ;;
95 -D)
96 shift
97 [ "$#" -gt 0 ] || usage
98 object="$1"
David Woodhouse5c539ee2007-12-03 13:52:05 +110099 objbin="$1"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000100 ;;
101 -W)
102 shift
103 [ "$#" -gt 0 ] || usage
104 tmpdir="$1"
105 ;;
Scott Wooda9903812007-03-16 12:27:59 -0500106 --no-gzip)
107 gzip=
108 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000109 -?)
110 usage
111 ;;
112 *)
113 [ -z "$kernel" ] || usage
114 kernel="$1"
115 ;;
116 esac
117 shift
118done
119
120if [ -n "$dts" ]; then
David Woodhouse701172d2007-12-03 13:49:24 +1100121 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
122 dts="$object/dts/$dts"
123 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000124 if [ -z "$dtb" ]; then
125 dtb="$platform.dtb"
126 fi
David Gibsone2dc87a2007-12-18 15:07:20 +1100127 $object/dtc -O dtb -o "$dtb" -b 0 "$dts"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000128fi
129
130if [ -z "$kernel" ]; then
131 kernel=vmlinux
132fi
133
134platformo=$object/"$platform".o
135lds=$object/zImage.lds
136ext=strip
137objflags=-S
138tmp=$tmpdir/zImage.$$.o
139ksection=.kernel:vmlinux.strip
140isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000141link_address='0x400000'
Paul Mackerras2bf11812006-09-27 22:47:03 +1000142
143case "$platform" in
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000144pseries)
145 platformo=$object/of.o
146 link_address='0x4000000'
147 ;;
148pmac|chrp)
Paul Mackerras2bf11812006-09-27 22:47:03 +1000149 platformo=$object/of.o
150 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000151coff)
Paul Mackerras2bf11812006-09-27 22:47:03 +1000152 platformo=$object/of.o
153 lds=$object/zImage.coff.lds
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000154 link_address='0x500000'
Paul Mackerras2bf11812006-09-27 22:47:03 +1000155 ;;
156miboot|uboot)
157 # miboot and U-boot want just the bare bits, not an ELF binary
158 ext=bin
159 objflags="-O binary"
160 tmp="$ofile"
161 ksection=image
162 isection=initrd
163 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000164cuboot*)
Scott Wood11c146c2007-09-14 14:58:25 -0500165 binary=y
Scott Wood0fdd7172007-04-17 09:25:50 +1000166 gzip=
Grant Likely25431332008-02-07 05:18:34 +1100167 case "$platform" in
Scott Wood8dd217b2008-07-31 19:10:22 +0300168 *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc)
Grant Likely25431332008-02-07 05:18:34 +1100169 platformo=$object/cuboot-8xx.o
170 ;;
171 *5200*|*-motionpro)
172 platformo=$object/cuboot-52xx.o
173 ;;
174 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
175 platformo=$object/cuboot-pq2.o
176 ;;
177 *-mpc824*)
178 platformo=$object/cuboot-824x.o
179 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100180 *-mpc83*|*-asp834x*)
Grant Likely25431332008-02-07 05:18:34 +1100181 platformo=$object/cuboot-83xx.o
182 ;;
Alexandr Smirnovff880112008-03-04 19:34:26 +0300183 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
Grant Likely25431332008-02-07 05:18:34 +1100184 platformo=$object/cuboot-85xx-cpm2.o
185 ;;
Wolfgang Grandegger6dd1b642008-06-06 13:50:04 +0200186 *-mpc85*|*-tqm85*|*-sbc85*)
Grant Likely25431332008-02-07 05:18:34 +1100187 platformo=$object/cuboot-85xx.o
188 ;;
Gerhard Pircher8f237352009-02-10 12:26:11 +0000189 *-amigaone)
190 link_address='0x800000'
191 ;;
Grant Likely25431332008-02-07 05:18:34 +1100192 esac
Scott Wood0fdd7172007-04-17 09:25:50 +1000193 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000194ps3)
195 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
196 lds=$object/zImage.ps3.lds
197 gzip=
198 ext=bin
199 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
200 ksection=.kernel:vmlinux.bin
201 isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000202 link_address=''
Geoff Levandbafdb642007-07-04 09:07:18 +1000203 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600204ep88xc|ep405|ep8248e)
Scott Wood11c146c2007-09-14 14:58:25 -0500205 platformo="$object/fixed-head.o $object/$platform.o"
206 binary=y
207 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600208adder875-redboot)
209 platformo="$object/fixed-head.o $object/redboot-8xx.o"
210 binary=y
211 ;;
Grant Likelyd2477b52008-03-19 04:07:43 +1100212simpleboot-virtex405-*)
John Linnd58577d2008-07-02 15:11:28 -0700213 platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
214 binary=y
215 ;;
216simpleboot-virtex440-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600217 platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
Grant Likelyd2477b52008-03-19 04:07:43 +1100218 binary=y
219 ;;
Grant Likely1d46e372008-07-04 00:59:37 -0600220simpleboot-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600221 platformo="$object/fixed-head.o $object/simpleboot.o"
Grant Likely1d46e372008-07-04 00:59:37 -0600222 binary=y
223 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100224asp834x-redboot)
225 platformo="$object/fixed-head.o $object/redboot-83xx.o"
226 binary=y
227 ;;
Nate Case24760822009-06-11 14:43:01 -0500228xpedite52*)
229 link_address='0x1400000'
230 platformo=$object/cuboot-85xx.o
231 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000232esac
233
234vmz="$tmpdir/`basename \"$kernel\"`.$ext"
Milton Miller1383a342007-03-28 02:21:04 -0600235if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
Paul Mackerras2bf11812006-09-27 22:47:03 +1000236 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
Scott Wooda9903812007-03-16 12:27:59 -0500237
238 if [ -n "$gzip" ]; then
239 gzip -f -9 "$vmz.$$"
240 fi
241
Paul Mackerras2bf11812006-09-27 22:47:03 +1000242 if [ -n "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500243 mv -f "$vmz.$$$gzip" "$vmz$gzip"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000244 else
245 vmz="$vmz.$$"
246 fi
247fi
248
Scott Wooda9903812007-03-16 12:27:59 -0500249vmz="$vmz$gzip"
250
David Gibsona6afacb2007-05-01 10:20:20 +1000251# Extract kernel version information, some platforms want to include
252# it in the image header
253version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
254 cut -d' ' -f3`
255if [ -n "$version" ]; then
256 uboot_version="-n Linux-$version"
257fi
Scott Wood0fdd7172007-04-17 09:25:50 +1000258
Kumar Galab18796d2008-04-16 05:52:29 +1000259# physical offset of kernel image
260membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
261
Scott Wood0fdd7172007-04-17 09:25:50 +1000262case "$platform" in
263uboot)
264 rm -f "$ofile"
Kumar Galab18796d2008-04-16 05:52:29 +1000265 mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
David Gibsona6afacb2007-05-01 10:20:20 +1000266 $uboot_version -d "$vmz" "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000267 if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500268 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000269 fi
270 exit 0
271 ;;
272esac
273
274addsec() {
275 ${CROSS}objcopy $4 $1 \
276 --add-section=$3="$2" \
277 --set-section-flags=$3=contents,alloc,load,readonly,data
278}
279
Scott Wooda9903812007-03-16 12:27:59 -0500280addsec $tmp "$vmz" $ksection $object/empty.o
Paul Mackerras2bf11812006-09-27 22:47:03 +1000281if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500282 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000283fi
284
285if [ -n "$initrd" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700286 addsec $tmp "$initrd" $isection
Paul Mackerras2bf11812006-09-27 22:47:03 +1000287fi
288
289if [ -n "$dtb" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700290 addsec $tmp "$dtb" .kernel:dtb
Mark A. Greere9c4b4b2006-11-08 17:50:44 -0700291 if [ -n "$dts" ]; then
292 rm $dtb
293 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000294fi
295
296if [ "$platform" != "miboot" ]; then
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000297 if [ -n "$link_address" ] ; then
298 text_start="-Ttext $link_address --defsym _start=$link_address"
299 fi
300 ${CROSS}ld -m elf32ppc -T $lds $text_start -o "$ofile" \
David Gibsoncd197ff2007-03-05 14:24:52 +1100301 $platformo $tmp $object/wrapper.a
Paul Mackerras2bf11812006-09-27 22:47:03 +1000302 rm $tmp
303fi
304
David Gibsona6afacb2007-05-01 10:20:20 +1000305# Some platforms need the zImage's entry point and base address
306base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
307entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
308
Scott Wood11c146c2007-09-14 14:58:25 -0500309if [ -n "$binary" ]; then
310 mv "$ofile" "$ofile".elf
Scott Woodaeb45522007-10-25 02:56:28 +1000311 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
Scott Wood11c146c2007-09-14 14:58:25 -0500312fi
313
Paul Mackerras2bf11812006-09-27 22:47:03 +1000314# post-processing needed for some platforms
315case "$platform" in
Paul Mackerras5663a122008-10-31 22:27:17 +1100316pseries|chrp)
317 $objbin/addnote "$ofile"
Paul Mackerras0dcd4402008-10-20 17:42:42 +0000318 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000319coff)
David Gibsoncd197ff2007-03-05 14:24:52 +1100320 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100321 $objbin/hack-coff "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000322 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000323cuboot*)
Scott Woodaeb45522007-10-25 02:56:28 +1000324 gzip -f -9 "$ofile"
Scott Wood0fdd7172007-04-17 09:25:50 +1000325 mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
Scott Woodaeb45522007-10-25 02:56:28 +1000326 $uboot_version -d "$ofile".gz "$ofile"
Scott Wood0fdd7172007-04-17 09:25:50 +1000327 ;;
David Gibsonf6dfc802007-05-08 14:10:01 +1000328treeboot*)
329 mv "$ofile" "$ofile.elf"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100330 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
David Gibsonf6dfc802007-05-08 14:10:01 +1000331 if [ -z "$cacheit" ]; then
332 rm -f "$ofile.elf"
333 fi
334 exit 0
335 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000336ps3)
Geoff Levand5761eaa2008-03-28 07:41:45 +1100337 # The ps3's loader supports loading a gzipped binary image from flash
338 # rom to ram addr zero. The loader then enters the system reset
339 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
340 # a binary image of the kernel to be at addr zero, and yet have a
341 # suitable bootwrapper entry at 0x100. To construct the final rom
342 # image 512 bytes from offset 0x100 is copied to the bootwrapper
343 # place holder at symbol __system_reset_kernel. The 512 bytes of the
344 # bootwrapper entry code at symbol __system_reset_overlay is then
345 # copied to offset 0x100. At runtime the bootwrapper program copies
346 # the data at __system_reset_kernel back to addr 0x100.
Geoff Levandbafdb642007-07-04 09:07:18 +1000347
Scott Woodaeb45522007-10-25 02:56:28 +1000348 system_reset_overlay=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000349 | grep ' __system_reset_overlay$' \
350 | cut -d' ' -f1`
351 system_reset_overlay=`printf "%d" $system_reset_overlay`
Scott Woodaeb45522007-10-25 02:56:28 +1000352 system_reset_kernel=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000353 | grep ' __system_reset_kernel$' \
354 | cut -d' ' -f1`
355 system_reset_kernel=`printf "%d" $system_reset_kernel`
356 overlay_dest="256"
Geoff Levand5761eaa2008-03-28 07:41:45 +1100357 overlay_size="512"
Geoff Levandbafdb642007-07-04 09:07:18 +1000358
Scott Woodaeb45522007-10-25 02:56:28 +1000359 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
360
Grant Likelyd4740372007-10-23 14:27:36 +1000361 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
362 skip=$overlay_dest seek=$system_reset_kernel \
363 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000364
Grant Likelyd4740372007-10-23 14:27:36 +1000365 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
366 skip=$system_reset_overlay seek=$overlay_dest \
367 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000368
David Woodhouse928b9692007-12-03 13:48:03 +1100369 odir="$(dirname "$ofile.bin")"
370 rm -f "$odir/otheros.bld"
371 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"
Geoff Levandbafdb642007-07-04 09:07:18 +1000372 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000373esac