blob: 76fe3ccfd381d6e9099f5490c36145d36abaa296 [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 .)
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +100023# -z use gzip (legacy)
24# -Z zsuffix compression to use (gz, xz or none)
Paul Mackerras2bf11812006-09-27 22:47:03 +100025
Grant Likelyd4740372007-10-23 14:27:36 +100026# Stop execution if any command fails
27set -e
28
Grant Likely7f66c1f2007-10-23 14:27:31 +100029# Allow for verbose output
30if [ "$V" = 1 ]; then
31 set -x
32fi
33
Paul Mackerras2bf11812006-09-27 22:47:03 +100034# defaults
35kernel=
36ofile=zImage
37platform=of
38initrd=
39dtb=
40dts=
41cacheit=
Scott Wood11c146c2007-09-14 14:58:25 -050042binary=
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +100043compression=.gz
Michael Ellerman6975a782011-04-12 20:38:55 +000044pie=
Cédric Le Goater147c0512014-04-24 09:23:39 +020045format=
Paul Mackerras2bf11812006-09-27 22:47:03 +100046
47# cross-compilation prefix
48CROSS=
49
Peter Tyser3f884bf2009-12-30 15:23:26 -070050# mkimage wrapper script
51MKIMAGE=$srctree/scripts/mkuboot.sh
52
Paul Mackerras2bf11812006-09-27 22:47:03 +100053# directory for object and other files used by this script
54object=arch/powerpc/boot
David Woodhouse5c539ee2007-12-03 13:52:05 +110055objbin=$object
Lucian Adrian Grijincuc79b2972009-07-23 00:13:37 +000056dtc=scripts/dtc/dtc
Paul Mackerras2bf11812006-09-27 22:47:03 +100057
58# directory for working files
59tmpdir=.
60
61usage() {
62 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2
63 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +100064 echo ' [-D datadir] [-W workingdir] [-Z (gz|xz|none)]' >&2
65 echo ' [--no-compression] [vmlinux]' >&2
Paul Mackerras2bf11812006-09-27 22:47:03 +100066 exit 1
67}
68
Geoff Levand879c26d2015-10-19 10:53:26 -070069run_cmd() {
70 if [ "$V" = 1 ]; then
71 $* 2>&1
72 else
73 local msg
74
75 set +e
76 msg=$($* 2>&1)
77
78 if [ $? -ne "0" ]; then
79 echo $msg
80 exit 1
81 fi
82 set -e
83 fi
84}
85
Paul Mackerras2bf11812006-09-27 22:47:03 +100086while [ "$#" -gt 0 ]; do
87 case "$1" in
88 -o)
89 shift
90 [ "$#" -gt 0 ] || usage
91 ofile="$1"
92 ;;
93 -p)
94 shift
95 [ "$#" -gt 0 ] || usage
96 platform="$1"
97 ;;
98 -i)
99 shift
100 [ "$#" -gt 0 ] || usage
101 initrd="$1"
102 ;;
103 -d)
104 shift
105 [ "$#" -gt 0 ] || usage
106 dtb="$1"
107 ;;
108 -s)
109 shift
110 [ "$#" -gt 0 ] || usage
111 dts="$1"
112 ;;
113 -c)
114 cacheit=y
115 ;;
116 -C)
117 shift
118 [ "$#" -gt 0 ] || usage
119 CROSS="$1"
120 ;;
121 -D)
122 shift
123 [ "$#" -gt 0 ] || usage
124 object="$1"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100125 objbin="$1"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000126 ;;
127 -W)
128 shift
129 [ "$#" -gt 0 ] || usage
130 tmpdir="$1"
131 ;;
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000132 -z)
133 compression=.gz
134 ;;
135 -Z)
136 shift
137 [ "$#" -gt 0 ] || usage
138 [ "$1" != "gz" -o "$1" != "xz" -o "$1" != "none" ] || usage
139
140 compression=".$1"
141
142 if [ $compression = ".none" ]; then
143 compression=
144 fi
145 ;;
Scott Wooda9903812007-03-16 12:27:59 -0500146 --no-gzip)
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000147 # a "feature" of the the wrapper script is that it can be used outside
148 # the kernel tree. So keeping this around for backwards compatibility.
149 compression=
Scott Wooda9903812007-03-16 12:27:59 -0500150 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000151 -?)
152 usage
153 ;;
154 *)
155 [ -z "$kernel" ] || usage
156 kernel="$1"
157 ;;
158 esac
159 shift
160done
161
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000162
Paul Mackerras2bf11812006-09-27 22:47:03 +1000163if [ -n "$dts" ]; then
David Woodhouse701172d12007-12-03 13:49:24 +1100164 if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then
165 dts="$object/dts/$dts"
166 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000167 if [ -z "$dtb" ]; then
168 dtb="$platform.dtb"
169 fi
Lucian Adrian Grijincuc79b2972009-07-23 00:13:37 +0000170 $dtc -O dtb -o "$dtb" -b 0 "$dts"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000171fi
172
173if [ -z "$kernel" ]; then
174 kernel=vmlinux
175fi
176
Laurent Vivier58531b02015-11-05 12:31:34 +0100177LANG=C elfformat="`${CROSS}objdump -p "$kernel" | grep 'file format' | awk '{print $4}'`"
Cédric Le Goater147c0512014-04-24 09:23:39 +0200178case "$elfformat" in
179 elf64-powerpcle) format=elf64lppc ;;
180 elf64-powerpc) format=elf32ppc ;;
181 elf32-powerpc) format=elf32ppc ;;
182esac
183
Nicholas Pigginff450002016-11-28 12:42:26 +1100184ld_version()
185{
186 # Poached from scripts/ld-version.sh, but we don't want to call that because
187 # this script (wrapper) is distributed separately from the kernel source.
188 # Extract linker version number from stdin and turn into single number.
189 awk '{
190 gsub(".*\\)", "");
191 gsub(".*version ", "");
192 gsub("-.*", "");
193 split($1,a, ".");
194 print a[1]*100000000 + a[2]*1000000 + a[3]*10000;
195 exit
196 }'
197}
198
199# Do not include PT_INTERP segment when linking pie. Non-pie linking
200# just ignores this option.
201LD_VERSION=$(${CROSS}ld --version | ld_version)
202LD_NO_DL_MIN_VERSION=$(echo 2.26 | ld_version)
203if [ "$LD_VERSION" -ge "$LD_NO_DL_MIN_VERSION" ] ; then
204 nodl="--no-dynamic-linker"
205fi
Cédric Le Goater147c0512014-04-24 09:23:39 +0200206
Paul Mackerras2bf11812006-09-27 22:47:03 +1000207platformo=$object/"$platform".o
208lds=$object/zImage.lds
209ext=strip
210objflags=-S
211tmp=$tmpdir/zImage.$$.o
212ksection=.kernel:vmlinux.strip
213isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000214link_address='0x400000'
Stephen Rothwelldfbc2d72012-03-20 14:13:51 +1100215make_space=y
Paul Mackerras2bf11812006-09-27 22:47:03 +1000216
217case "$platform" in
Benjamin Herrenschmidt44790a02013-11-05 10:09:11 +1100218of)
219 platformo="$object/of.o $object/epapr.o"
220 make_space=n
221 ;;
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000222pseries)
Cédric Le Goater2d9afb32014-04-24 09:23:38 +0200223 platformo="$object/pseries-head.o $object/of.o $object/epapr.o"
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000224 link_address='0x4000000'
Cédric Le Goater147c0512014-04-24 09:23:39 +0200225 if [ "$format" != "elf32ppc" ]; then
226 link_address=
227 pie=-pie
228 fi
Paul Mackerrasf5467e22013-10-29 16:21:26 +1100229 make_space=n
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000230 ;;
Corey Minyard58706ef2010-01-29 14:18:20 +0000231maple)
Benjamin Herrenschmidt0c9fa292013-09-24 16:10:38 +1000232 platformo="$object/of.o $object/epapr.o"
Corey Minyard58706ef2010-01-29 14:18:20 +0000233 link_address='0x400000'
Paul Mackerrasf5467e22013-10-29 16:21:26 +1100234 make_space=n
Corey Minyard58706ef2010-01-29 14:18:20 +0000235 ;;
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000236pmac|chrp)
Benjamin Herrenschmidt0c9fa292013-09-24 16:10:38 +1000237 platformo="$object/of.o $object/epapr.o"
Paul Mackerrasf5467e22013-10-29 16:21:26 +1100238 make_space=n
Paul Mackerras2bf11812006-09-27 22:47:03 +1000239 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000240coff)
Benjamin Herrenschmidt0c9fa292013-09-24 16:10:38 +1000241 platformo="$object/crt0.o $object/of.o $object/epapr.o"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000242 lds=$object/zImage.coff.lds
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000243 link_address='0x500000'
Paul Mackerrasf5467e22013-10-29 16:21:26 +1100244 make_space=n
Michael Ellerman6975a782011-04-12 20:38:55 +0000245 pie=
Paul Mackerras2bf11812006-09-27 22:47:03 +1000246 ;;
Benjamin Herrenschmidt11eab2972011-12-01 19:35:08 +0000247miboot|uboot*)
Paul Mackerras2bf11812006-09-27 22:47:03 +1000248 # miboot and U-boot want just the bare bits, not an ELF binary
249 ext=bin
250 objflags="-O binary"
251 tmp="$ofile"
252 ksection=image
253 isection=initrd
254 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000255cuboot*)
Scott Wood11c146c2007-09-14 14:58:25 -0500256 binary=y
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000257 compression=
Grant Likely25431332008-02-07 05:18:34 +1100258 case "$platform" in
Scott Wood8dd217b2008-07-31 19:10:22 +0300259 *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc)
Grant Likely25431332008-02-07 05:18:34 +1100260 platformo=$object/cuboot-8xx.o
261 ;;
262 *5200*|*-motionpro)
263 platformo=$object/cuboot-52xx.o
264 ;;
265 *-pq2fads|*-ep8248e|*-mpc8272*|*-storcenter)
266 platformo=$object/cuboot-pq2.o
267 ;;
268 *-mpc824*)
269 platformo=$object/cuboot-824x.o
270 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100271 *-mpc83*|*-asp834x*)
Grant Likely25431332008-02-07 05:18:34 +1100272 platformo=$object/cuboot-83xx.o
273 ;;
Alexandr Smirnovff880112008-03-04 19:34:26 +0300274 *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
Grant Likely25431332008-02-07 05:18:34 +1100275 platformo=$object/cuboot-85xx-cpm2.o
276 ;;
Wolfgang Grandegger6dd1b642008-06-06 13:50:04 +0200277 *-mpc85*|*-tqm85*|*-sbc85*)
Grant Likely25431332008-02-07 05:18:34 +1100278 platformo=$object/cuboot-85xx.o
279 ;;
Gerhard Pircher8f237352009-02-10 12:26:11 +0000280 *-amigaone)
281 link_address='0x800000'
282 ;;
Grant Likely25431332008-02-07 05:18:34 +1100283 esac
Scott Wood0fdd7172007-04-17 09:25:50 +1000284 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000285ps3)
286 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o"
287 lds=$object/zImage.ps3.lds
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000288 compression=
Geoff Levandbafdb642007-07-04 09:07:18 +1000289 ext=bin
290 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
291 ksection=.kernel:vmlinux.bin
292 isection=.kernel:initrd
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000293 link_address=''
Stephen Rothwelldfbc2d72012-03-20 14:13:51 +1100294 make_space=n
Michael Ellerman6975a782011-04-12 20:38:55 +0000295 pie=
Geoff Levandbafdb642007-07-04 09:07:18 +1000296 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600297ep88xc|ep405|ep8248e)
Scott Wood11c146c2007-09-14 14:58:25 -0500298 platformo="$object/fixed-head.o $object/$platform.o"
299 binary=y
300 ;;
Scott Wooda55387e2008-02-20 12:33:38 -0600301adder875-redboot)
302 platformo="$object/fixed-head.o $object/redboot-8xx.o"
303 binary=y
304 ;;
Grant Likelyd2477b52008-03-19 04:07:43 +1100305simpleboot-virtex405-*)
John Linnd58577d2008-07-02 15:11:28 -0700306 platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
307 binary=y
308 ;;
309simpleboot-virtex440-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600310 platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
Grant Likelyd2477b52008-03-19 04:07:43 +1100311 binary=y
312 ;;
Grant Likely1d46e372008-07-04 00:59:37 -0600313simpleboot-*)
Grant Likelya7e1cf02009-03-11 09:36:26 -0600314 platformo="$object/fixed-head.o $object/simpleboot.o"
Grant Likely1d46e372008-07-04 00:59:37 -0600315 binary=y
316 ;;
Bryan O'Donoghue59d13f92008-05-08 13:47:00 +0100317asp834x-redboot)
318 platformo="$object/fixed-head.o $object/redboot-83xx.o"
319 binary=y
320 ;;
Nate Case24760822009-06-11 14:43:01 -0500321xpedite52*)
322 link_address='0x1400000'
323 platformo=$object/cuboot-85xx.o
324 ;;
Albert Herranz6cdd24172009-12-12 06:31:45 +0000325gamecube|wii)
Albert Herranzb68a24b2009-12-12 06:31:36 +0000326 link_address='0x600000'
327 platformo="$object/$platform-head.o $object/$platform.o"
328 ;;
Tony Breeds228d5502011-11-30 21:39:24 +0000329treeboot-currituck)
330 link_address='0x1000000'
331 ;;
Alistair Popple2a2c74b2014-03-06 14:52:27 +1100332treeboot-akebono)
333 link_address='0x1000000'
334 ;;
Torez Smithb4e8c8d2010-03-05 10:45:54 +0000335treeboot-iss4xx-mpic)
336 platformo="$object/treeboot-iss4xx.o"
337 ;;
David Gibson6c5b59b2011-04-14 18:29:16 +0000338epapr)
Jeremy Kerr90d1d442015-02-11 12:55:44 +0800339 platformo="$object/pseries-head.o $object/epapr.o $object/epapr-wrapper.o"
David Gibson6c5b59b2011-04-14 18:29:16 +0000340 link_address='0x20000000'
341 pie=-pie
342 ;;
Stephen Chiversbe201982014-01-09 13:01:22 +1100343mvme5100)
344 platformo="$object/fixed-head.o $object/mvme5100.o"
345 binary=y
346 ;;
Alessio Igor Bogani97493e2e2016-05-30 11:47:16 +0200347mvme7100)
348 platformo="$object/motload-head.o $object/mvme7100.o"
349 link_address='0x4000000'
350 binary=y
351 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000352esac
353
354vmz="$tmpdir/`basename \"$kernel\"`.$ext"
Scott Wooda9903812007-03-16 12:27:59 -0500355
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000356# Calculate the vmlinux.strip size
357${CROSS}objcopy $objflags "$kernel" "$vmz.$$"
358strip_size=$(stat -c %s $vmz.$$)
Suzuki Poulosec55aef02011-12-14 22:59:57 +0000359
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000360if [ -z "$cacheit" -o ! -f "$vmz$compression" -o "$vmz$compression" -ot "$kernel" ]; then
361 # recompress the image if we need to
362 case $compression in
363 .xz)
364 xz --check=crc32 -f -6 "$vmz.$$"
365 ;;
366 .gz)
Michal Marekc4f56af2011-04-05 04:58:50 +0000367 gzip -n -f -9 "$vmz.$$"
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000368 ;;
369 *)
370 # drop the compression suffix so the stripped vmlinux is used
371 compression=
372 ;;
373 esac
Scott Wooda9903812007-03-16 12:27:59 -0500374
Paul Mackerras2bf11812006-09-27 22:47:03 +1000375 if [ -n "$cacheit" ]; then
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000376 mv -f "$vmz.$$$compression" "$vmz$compression"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000377 else
378 vmz="$vmz.$$"
379 fi
Suzuki Poulosec55aef02011-12-14 22:59:57 +0000380else
Suzuki Poulosec55aef02011-12-14 22:59:57 +0000381 rm -f $vmz.$$
382fi
383
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000384vmz="$vmz$compression"
385
Stephen Rothwelldfbc2d72012-03-20 14:13:51 +1100386if [ "$make_space" = "y" ]; then
387 # Round the size to next higher MB limit
388 round_size=$(((strip_size + 0xfffff) & 0xfff00000))
Suzuki Poulosec55aef02011-12-14 22:59:57 +0000389
Stephen Rothwelldfbc2d72012-03-20 14:13:51 +1100390 round_size=0x$(printf "%x" $round_size)
391 link_addr=$(printf "%d" $link_address)
Suzuki Poulosec55aef02011-12-14 22:59:57 +0000392
Stephen Rothwelldfbc2d72012-03-20 14:13:51 +1100393 if [ $link_addr -lt $strip_size ]; then
394 echo "INFO: Uncompressed kernel (size 0x$(printf "%x\n" $strip_size))" \
395 "overlaps the address of the wrapper($link_address)"
396 echo "INFO: Fixing the link_address of wrapper to ($round_size)"
397 link_address=$round_size
398 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000399fi
400
David Gibsona6afacb2007-05-01 10:20:20 +1000401# Extract kernel version information, some platforms want to include
402# it in the image header
403version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
404 cut -d' ' -f3`
405if [ -n "$version" ]; then
406 uboot_version="-n Linux-$version"
407fi
Scott Wood0fdd7172007-04-17 09:25:50 +1000408
Kumar Galab18796d2008-04-16 05:52:29 +1000409# physical offset of kernel image
410membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
411
Scott Wood0fdd7172007-04-17 09:25:50 +1000412case "$platform" in
413uboot)
414 rm -f "$ofile"
Peter Tyser3f884bf2009-12-30 15:23:26 -0700415 ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
David Gibsona6afacb2007-05-01 10:20:20 +1000416 $uboot_version -d "$vmz" "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000417 if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500418 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000419 fi
420 exit 0
421 ;;
Benjamin Herrenschmidt11eab2972011-12-01 19:35:08 +0000422uboot-obs600)
423 rm -f "$ofile"
424 # obs600 wants a multi image with an initrd, so we need to put a fake
425 # one in even when building a "normal" image.
426 if [ -n "$initrd" ]; then
427 real_rd="$initrd"
428 else
429 real_rd=`mktemp`
430 echo "\0" >>"$real_rd"
431 fi
432 ${MKIMAGE} -A ppc -O linux -T multi -C gzip -a $membase -e $membase \
433 $uboot_version -d "$vmz":"$real_rd":"$dtb" "$ofile"
434 if [ -z "$initrd" ]; then
435 rm -f "$real_rd"
436 fi
437 if [ -z "$cacheit" ]; then
438 rm -f "$vmz"
439 fi
440 exit 0
441 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000442esac
443
444addsec() {
445 ${CROSS}objcopy $4 $1 \
446 --add-section=$3="$2" \
447 --set-section-flags=$3=contents,alloc,load,readonly,data
448}
449
Scott Wooda9903812007-03-16 12:27:59 -0500450addsec $tmp "$vmz" $ksection $object/empty.o
Paul Mackerras2bf11812006-09-27 22:47:03 +1000451if [ -z "$cacheit" ]; then
Scott Wooda9903812007-03-16 12:27:59 -0500452 rm -f "$vmz"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000453fi
454
455if [ -n "$initrd" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700456 addsec $tmp "$initrd" $isection
Paul Mackerras2bf11812006-09-27 22:47:03 +1000457fi
458
459if [ -n "$dtb" ]; then
Mark A. Greerc8885542006-10-16 13:49:27 -0700460 addsec $tmp "$dtb" .kernel:dtb
Mark A. Greere9c4b4b2006-11-08 17:50:44 -0700461 if [ -n "$dts" ]; then
462 rm $dtb
463 fi
Paul Mackerras2bf11812006-09-27 22:47:03 +1000464fi
465
466if [ "$platform" != "miboot" ]; then
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000467 if [ -n "$link_address" ] ; then
Michael Ellerman6975a782011-04-12 20:38:55 +0000468 text_start="-Ttext $link_address"
Tony Breeds9b09c6d2008-06-24 14:20:29 +1000469 fi
Oliver O'Halloranf1e510b2016-09-22 16:54:33 +1000470#link everything
Nicholas Pigginff450002016-11-28 12:42:26 +1100471 ${CROSS}ld -m $format -T $lds $text_start $pie $nodl -o "$ofile" \
David Gibsoncd197ff2007-03-05 14:24:52 +1100472 $platformo $tmp $object/wrapper.a
Paul Mackerras2bf11812006-09-27 22:47:03 +1000473 rm $tmp
474fi
475
David Gibsona6afacb2007-05-01 10:20:20 +1000476# Some platforms need the zImage's entry point and base address
477base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
478entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3`
479
Scott Wood11c146c2007-09-14 14:58:25 -0500480if [ -n "$binary" ]; then
481 mv "$ofile" "$ofile".elf
Scott Woodaeb45522007-10-25 02:56:28 +1000482 ${CROSS}objcopy -O binary "$ofile".elf "$ofile"
Scott Wood11c146c2007-09-14 14:58:25 -0500483fi
484
Paul Mackerras2bf11812006-09-27 22:47:03 +1000485# post-processing needed for some platforms
486case "$platform" in
Corey Minyard58706ef2010-01-29 14:18:20 +0000487pseries|chrp|maple)
Paul Mackerras5663a122008-10-31 22:27:17 +1100488 $objbin/addnote "$ofile"
Paul Mackerras0dcd4402008-10-20 17:42:42 +0000489 ;;
Milton Miller627aa942007-05-31 01:29:01 +1000490coff)
David Gibsoncd197ff2007-03-05 14:24:52 +1100491 ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100492 $objbin/hack-coff "$ofile"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000493 ;;
Scott Wood0fdd7172007-04-17 09:25:50 +1000494cuboot*)
Michal Marekc4f56af2011-04-05 04:58:50 +0000495 gzip -n -f -9 "$ofile"
Peter Tyser3f884bf2009-12-30 15:23:26 -0700496 ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
Scott Woodaeb45522007-10-25 02:56:28 +1000497 $uboot_version -d "$ofile".gz "$ofile"
Scott Wood0fdd7172007-04-17 09:25:50 +1000498 ;;
David Gibsonf6dfc802007-05-08 14:10:01 +1000499treeboot*)
500 mv "$ofile" "$ofile.elf"
David Woodhouse5c539ee2007-12-03 13:52:05 +1100501 $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry"
David Gibsonf6dfc802007-05-08 14:10:01 +1000502 if [ -z "$cacheit" ]; then
503 rm -f "$ofile.elf"
504 fi
505 exit 0
506 ;;
Geoff Levandbafdb642007-07-04 09:07:18 +1000507ps3)
Geoff Levand5761eaa2008-03-28 07:41:45 +1100508 # The ps3's loader supports loading a gzipped binary image from flash
509 # rom to ram addr zero. The loader then enters the system reset
510 # vector at addr 0x100. A bootwrapper overlay is used to arrange for
511 # a binary image of the kernel to be at addr zero, and yet have a
512 # suitable bootwrapper entry at 0x100. To construct the final rom
513 # image 512 bytes from offset 0x100 is copied to the bootwrapper
514 # place holder at symbol __system_reset_kernel. The 512 bytes of the
515 # bootwrapper entry code at symbol __system_reset_overlay is then
516 # copied to offset 0x100. At runtime the bootwrapper program copies
517 # the data at __system_reset_kernel back to addr 0x100.
Geoff Levandbafdb642007-07-04 09:07:18 +1000518
Scott Woodaeb45522007-10-25 02:56:28 +1000519 system_reset_overlay=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000520 | grep ' __system_reset_overlay$' \
521 | cut -d' ' -f1`
522 system_reset_overlay=`printf "%d" $system_reset_overlay`
Scott Woodaeb45522007-10-25 02:56:28 +1000523 system_reset_kernel=0x`${CROSS}nm "$ofile" \
Geoff Levandbafdb642007-07-04 09:07:18 +1000524 | grep ' __system_reset_kernel$' \
525 | cut -d' ' -f1`
526 system_reset_kernel=`printf "%d" $system_reset_kernel`
527 overlay_dest="256"
Geoff Levand5761eaa2008-03-28 07:41:45 +1100528 overlay_size="512"
Geoff Levandbafdb642007-07-04 09:07:18 +1000529
Scott Woodaeb45522007-10-25 02:56:28 +1000530 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
531
Geoff Levand879c26d2015-10-19 10:53:26 -0700532 run_cmd dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
533 skip=$overlay_dest seek=$system_reset_kernel \
Grant Likelyd4740372007-10-23 14:27:36 +1000534 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000535
Geoff Levand879c26d2015-10-19 10:53:26 -0700536 run_cmd dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \
537 skip=$system_reset_overlay seek=$overlay_dest \
Grant Likelyd4740372007-10-23 14:27:36 +1000538 count=$overlay_size bs=1
Geoff Levandbafdb642007-07-04 09:07:18 +1000539
David Woodhouse928b9692007-12-03 13:48:03 +1100540 odir="$(dirname "$ofile.bin")"
541 rm -f "$odir/otheros.bld"
Michal Marekc4f56af2011-04-05 04:58:50 +0000542 gzip -n --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld"
Geoff Levandbafdb642007-07-04 09:07:18 +1000543 ;;
Paul Mackerras2bf11812006-09-27 22:47:03 +1000544esac