blob: f4594ed09a20895e788b6650a0b9964706b8622e [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
Peter Tyser3f884bf2009-12-30 15:23:26 -070046# mkimage wrapper script
47MKIMAGE=$srctree/scripts/mkuboot.sh
48
Paul Mackerras2bf11812006-09-27 22:47:03 +100049# directory for object and other files used by this script
50object=arch/powerpc/boot
David Woodhouse5c539ee2007-12-03 13:52:05 +110051objbin=$object
Lucian Adrian Grijincuc79b2972009-07-23 00:13:37 +000052dtc=scripts/dtc/dtc
Paul Mackerras2bf11812006-09-27 22:47:03 +100053
54# directory for working files
55tmpdir=.
56
57usage() {
58 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
59 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
Scott Wooda9903812007-03-16 12:27:59 -050060 echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2
Paul Mackerras2bf11812006-09-27 22:47:03 +100061 exit 1
62}
63
64while [ "$#" -gt 0 ]; do
65 case "$1" in
66 -o)
67 shift
68 [ "$#" -gt 0 ] || usage
69 ofile="$1"
70 ;;
71 -p)
72 shift
73 [ "$#" -gt 0 ] || usage
74 platform="$1"
75 ;;
76 -i)
77 shift
78 [ "$#" -gt 0 ] || usage
79 initrd="$1"
80 ;;
81 -d)
82 shift
83 [ "$#" -gt 0 ] || usage
84 dtb="$1"
85 ;;
86 -s)
87 shift
88 [ "$#" -gt 0 ] || usage
89 dts="$1"
90 ;;
91 -c)
92 cacheit=y
93 ;;
94 -C)
95 shift
96 [ "$#" -gt 0 ] || usage
97 CROSS="$1"
98 ;;
99 -D)
100 shift
101 [ "$#" -gt 0 ] || usage
102 object="$1"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100103 objbin="$1"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000104 ;;
105 -W)
106 shift
107 [ "$#" -gt 0 ] || usage
108 tmpdir="$1"
109 ;;
Scott Wooda9903812007-03-16 12:27:59 -0500110 --no-gzip)
111 gzip=
112 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000113 -?)
114 usage
115 ;;
116 *)
117 [ -z "$kernel" ] || usage
118 kernel="$1"
119 ;;
120 esac
121 shift
122done
123
124if [ -n "$dts" ]; then
David Woodhouse701172d12007-12-03 13:49:24 +1100125 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
126 dts="$object/dts/$dts"
127 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000128 if [ -z "$dtb" ]; then
129 dtb="$platform.dtb"
130 fi
Lucian Adrian Grijincuc79b2972009-07-23 00:13:37 +0000131 $dtc -O dtb -o "$dtb" -b 0 "$dts"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000132fi
133
134if [ -z "$kernel" ]; then
135 kernel=vmlinux
136fi
137
138platformo=$object/"$platform".o
139lds=$object/zImage.lds
140ext=strip
141objflags=-S
142tmp=$tmpdir/zImage.$$.o
143ksection=.kernel:vmlinux.strip
144isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000145link_address='0x400000'
Paul Mackerras2bf11812006-09-27 22:47:03 +1000146
147case "$platform" in
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000148pseries)
149 platformo=$object/of.o
150 link_address='0x4000000'
151 ;;
152pmac|chrp)
Paul Mackerras2bf11812006-09-27 22:47:03 +1000153 platformo=$object/of.o
154 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000155coff)
Paul Mackerras2bf11812006-09-27 22:47:03 +1000156 platformo=$object/of.o
157 lds=$object/zImage.coff.lds
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000158 link_address='0x500000'
Paul Mackerras2bf11812006-09-27 22:47:03 +1000159 ;;
160miboot|uboot)
161 # miboot and U-boot want just the bare bits, not an ELF binary
162 ext=bin
163 objflags="-O binary"
164 tmp="$ofile"
165 ksection=image
166 isection=initrd
167 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000168cuboot*)
Scott Wood11c146c2007-09-14 14:58:25 -0500169 binary=y
Scott Wood0fdd7172007-04-17 09:25:50 +1000170 gzip=
Grant Likely25431332008-02-07 05:18:34 +1100171 case "$platform" in
Scott Wood8dd217b2008-07-31 19:10:22 +0300172 *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc)
Grant Likely25431332008-02-07 05:18:34 +1100173 platformo=$object/cuboot-8xx.o
174 ;;
175 *5200*|*-motionpro)
176 platformo=$object/cuboot-52xx.o
177 ;;
178 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
179 platformo=$object/cuboot-pq2.o
180 ;;
181 *-mpc824*)
182 platformo=$object/cuboot-824x.o
183 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100184 *-mpc83*|*-asp834x*)
Grant Likely25431332008-02-07 05:18:34 +1100185 platformo=$object/cuboot-83xx.o
186 ;;
Alexandr Smirnovff880112008-03-04 19:34:26 +0300187 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
Grant Likely25431332008-02-07 05:18:34 +1100188 platformo=$object/cuboot-85xx-cpm2.o
189 ;;
Wolfgang Grandegger6dd1b642008-06-06 13:50:04 +0200190 *-mpc85*|*-tqm85*|*-sbc85*)
Grant Likely25431332008-02-07 05:18:34 +1100191 platformo=$object/cuboot-85xx.o
192 ;;
Gerhard Pircher8f237352009-02-10 12:26:11 +0000193 *-amigaone)
194 link_address='0x800000'
195 ;;
Grant Likely25431332008-02-07 05:18:34 +1100196 esac
Scott Wood0fdd7172007-04-17 09:25:50 +1000197 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000198ps3)
199 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
200 lds=$object/zImage.ps3.lds
201 gzip=
202 ext=bin
203 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
204 ksection=.kernel:vmlinux.bin
205 isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000206 link_address=''
Geoff Levandbafdb642007-07-04 09:07:18 +1000207 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600208ep88xc|ep405|ep8248e)
Scott Wood11c146c2007-09-14 14:58:25 -0500209 platformo="$object/fixed-head.o $object/$platform.o"
210 binary=y
211 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600212adder875-redboot)
213 platformo="$object/fixed-head.o $object/redboot-8xx.o"
214 binary=y
215 ;;
Grant Likelyd2477b52008-03-19 04:07:43 +1100216simpleboot-virtex405-*)
John Linnd58577d2008-07-02 15:11:28 -0700217 platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
218 binary=y
219 ;;
220simpleboot-virtex440-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600221 platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
Grant Likelyd2477b52008-03-19 04:07:43 +1100222 binary=y
223 ;;
Grant Likely1d46e372008-07-04 00:59:37 -0600224simpleboot-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600225 platformo="$object/fixed-head.o $object/simpleboot.o"
Grant Likely1d46e372008-07-04 00:59:37 -0600226 binary=y
227 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100228asp834x-redboot)
229 platformo="$object/fixed-head.o $object/redboot-83xx.o"
230 binary=y
231 ;;
Nate Case24760822009-06-11 14:43:01 -0500232xpedite52*)
233 link_address='0x1400000'
234 platformo=$object/cuboot-85xx.o
235 ;;
Albert Herranz6cdd24172009-12-12 06:31:45 +0000236gamecube|wii)
Albert Herranzb68a24b2009-12-12 06:31:36 +0000237 link_address='0x600000'
238 platformo="$object/$platform-head.o $object/$platform.o"
239 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000240esac
241
242vmz="$tmpdir/`basename \"$kernel\"`.$ext"
Milton Miller1383a342007-03-28 02:21:04 -0600243if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then
Paul Mackerras2bf11812006-09-27 22:47:03 +1000244 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
Scott Wooda9903812007-03-16 12:27:59 -0500245
246 if [ -n "$gzip" ]; then
247 gzip -f -9 "$vmz.$$"
248 fi
249
Paul Mackerras2bf11812006-09-27 22:47:03 +1000250 if [ -n "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500251 mv -f "$vmz.$$$gzip" "$vmz$gzip"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000252 else
253 vmz="$vmz.$$"
254 fi
255fi
256
Scott Wooda9903812007-03-16 12:27:59 -0500257vmz="$vmz$gzip"
258
David Gibsona6afacb2007-05-01 10:20:20 +1000259# Extract kernel version information, some platforms want to include
260# it in the image header
261version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
262 cut -d' ' -f3`
263if [ -n "$version" ]; then
264 uboot_version="-n Linux-$version"
265fi
Scott Wood0fdd7172007-04-17 09:25:50 +1000266
Kumar Galab18796d2008-04-16 05:52:29 +1000267# physical offset of kernel image
268membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
269
Scott Wood0fdd7172007-04-17 09:25:50 +1000270case "$platform" in
271uboot)
272 rm -f "$ofile"
Peter Tyser3f884bf2009-12-30 15:23:26 -0700273 ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
David Gibsona6afacb2007-05-01 10:20:20 +1000274 $uboot_version -d "$vmz" "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000275 if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500276 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000277 fi
278 exit 0
279 ;;
280esac
281
282addsec() {
283 ${CROSS}objcopy $4 $1 \
284 --add-section=$3="$2" \
285 --set-section-flags=$3=contents,alloc,load,readonly,data
286}
287
Scott Wooda9903812007-03-16 12:27:59 -0500288addsec $tmp "$vmz" $ksection $object/empty.o
Paul Mackerras2bf11812006-09-27 22:47:03 +1000289if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500290 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000291fi
292
293if [ -n "$initrd" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700294 addsec $tmp "$initrd" $isection
Paul Mackerras2bf11812006-09-27 22:47:03 +1000295fi
296
297if [ -n "$dtb" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700298 addsec $tmp "$dtb" .kernel:dtb
Mark A. Greere9c4b4b2006-11-08 17:50:44 -0700299 if [ -n "$dts" ]; then
300 rm $dtb
301 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000302fi
303
304if [ "$platform" != "miboot" ]; then
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000305 if [ -n "$link_address" ] ; then
306 text_start="-Ttext $link_address --defsym _start=$link_address"
307 fi
308 ${CROSS}ld -m elf32ppc -T $lds $text_start -o "$ofile" \
David Gibsoncd197ff2007-03-05 14:24:52 +1100309 $platformo $tmp $object/wrapper.a
Paul Mackerras2bf11812006-09-27 22:47:03 +1000310 rm $tmp
311fi
312
David Gibsona6afacb2007-05-01 10:20:20 +1000313# Some platforms need the zImage's entry point and base address
314base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
315entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
316
Scott Wood11c146c2007-09-14 14:58:25 -0500317if [ -n "$binary" ]; then
318 mv "$ofile" "$ofile".elf
Scott Woodaeb45522007-10-25 02:56:28 +1000319 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
Scott Wood11c146c2007-09-14 14:58:25 -0500320fi
321
Paul Mackerras2bf11812006-09-27 22:47:03 +1000322# post-processing needed for some platforms
323case "$platform" in
Paul Mackerras5663a122008-10-31 22:27:17 +1100324pseries|chrp)
325 $objbin/addnote "$ofile"
Paul Mackerras0dcd4402008-10-20 17:42:42 +0000326 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000327coff)
David Gibsoncd197ff2007-03-05 14:24:52 +1100328 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100329 $objbin/hack-coff "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000330 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000331cuboot*)
Scott Woodaeb45522007-10-25 02:56:28 +1000332 gzip -f -9 "$ofile"
Peter Tyser3f884bf2009-12-30 15:23:26 -0700333 ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
Scott Woodaeb45522007-10-25 02:56:28 +1000334 $uboot_version -d "$ofile".gz "$ofile"
Scott Wood0fdd7172007-04-17 09:25:50 +1000335 ;;
David Gibsonf6dfc802007-05-08 14:10:01 +1000336treeboot*)
337 mv "$ofile" "$ofile.elf"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100338 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
David Gibsonf6dfc802007-05-08 14:10:01 +1000339 if [ -z "$cacheit" ]; then
340 rm -f "$ofile.elf"
341 fi
342 exit 0
343 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000344ps3)
Geoff Levand5761eaa2008-03-28 07:41:45 +1100345 # The ps3's loader supports loading a gzipped binary image from flash
346 # rom to ram addr zero. The loader then enters the system reset
347 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
348 # a binary image of the kernel to be at addr zero, and yet have a
349 # suitable bootwrapper entry at 0x100. To construct the final rom
350 # image 512 bytes from offset 0x100 is copied to the bootwrapper
351 # place holder at symbol __system_reset_kernel. The 512 bytes of the
352 # bootwrapper entry code at symbol __system_reset_overlay is then
353 # copied to offset 0x100. At runtime the bootwrapper program copies
354 # the data at __system_reset_kernel back to addr 0x100.
Geoff Levandbafdb642007-07-04 09:07:18 +1000355
Scott Woodaeb45522007-10-25 02:56:28 +1000356 system_reset_overlay=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000357 | grep ' __system_reset_overlay$' \
358 | cut -d' ' -f1`
359 system_reset_overlay=`printf "%d" $system_reset_overlay`
Scott Woodaeb45522007-10-25 02:56:28 +1000360 system_reset_kernel=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000361 | grep ' __system_reset_kernel$' \
362 | cut -d' ' -f1`
363 system_reset_kernel=`printf "%d" $system_reset_kernel`
364 overlay_dest="256"
Geoff Levand5761eaa2008-03-28 07:41:45 +1100365 overlay_size="512"
Geoff Levandbafdb642007-07-04 09:07:18 +1000366
Scott Woodaeb45522007-10-25 02:56:28 +1000367 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
368
Grant Likelyd4740372007-10-23 14:27:36 +1000369 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
370 skip=$overlay_dest seek=$system_reset_kernel \
371 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000372
Grant Likelyd4740372007-10-23 14:27:36 +1000373 dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
374 skip=$system_reset_overlay seek=$overlay_dest \
375 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000376
David Woodhouse928b9692007-12-03 13:48:03 +1100377 odir="$(dirname "$ofile.bin")"
378 rm -f "$odir/otheros.bld"
379 gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"
Geoff Levandbafdb642007-07-04 09:07:18 +1000380 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000381esac