Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 1 | #!/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 Likely | d474037 | 2007-10-23 14:27:36 +1000 | [diff] [blame] | 24 | # Stop execution if any command fails |
| 25 | set -e |
| 26 | |
Grant Likely | 7f66c1f | 2007-10-23 14:27:31 +1000 | [diff] [blame] | 27 | # Allow for verbose output |
| 28 | if [ "$V" = 1 ]; then |
| 29 | set -x |
| 30 | fi |
| 31 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 32 | # defaults |
| 33 | kernel= |
| 34 | ofile=zImage |
| 35 | platform=of |
| 36 | initrd= |
| 37 | dtb= |
| 38 | dts= |
| 39 | cacheit= |
Scott Wood | 11c146c | 2007-09-14 14:58:25 -0500 | [diff] [blame] | 40 | binary= |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 41 | gzip=.gz |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 42 | |
| 43 | # cross-compilation prefix |
| 44 | CROSS= |
| 45 | |
| 46 | # directory for object and other files used by this script |
| 47 | object=arch/powerpc/boot |
David Woodhouse | 5c539ee | 2007-12-03 13:52:05 +1100 | [diff] [blame] | 48 | objbin=$object |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 49 | |
| 50 | # directory for working files |
| 51 | tmpdir=. |
| 52 | |
| 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 |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 56 | echo ' [-D datadir] [-W workingdir] [--no-gzip] [vmlinux]' >&2 |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 57 | exit 1 |
| 58 | } |
| 59 | |
| 60 | while [ "$#" -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 Woodhouse | 5c539ee | 2007-12-03 13:52:05 +1100 | [diff] [blame] | 99 | objbin="$1" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 100 | ;; |
| 101 | -W) |
| 102 | shift |
| 103 | [ "$#" -gt 0 ] || usage |
| 104 | tmpdir="$1" |
| 105 | ;; |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 106 | --no-gzip) |
| 107 | gzip= |
| 108 | ;; |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 109 | -?) |
| 110 | usage |
| 111 | ;; |
| 112 | *) |
| 113 | [ -z "$kernel" ] || usage |
| 114 | kernel="$1" |
| 115 | ;; |
| 116 | esac |
| 117 | shift |
| 118 | done |
| 119 | |
| 120 | if [ -n "$dts" ]; then |
David Woodhouse | 701172d | 2007-12-03 13:49:24 +1100 | [diff] [blame] | 121 | if [ ! -r "$dts" -a -r "$object/dts/$dts" ]; then |
| 122 | dts="$object/dts/$dts" |
| 123 | fi |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 124 | if [ -z "$dtb" ]; then |
| 125 | dtb="$platform.dtb" |
| 126 | fi |
David Gibson | e2dc87a | 2007-12-18 15:07:20 +1100 | [diff] [blame] | 127 | $object/dtc -O dtb -o "$dtb" -b 0 "$dts" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 128 | fi |
| 129 | |
| 130 | if [ -z "$kernel" ]; then |
| 131 | kernel=vmlinux |
| 132 | fi |
| 133 | |
| 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 |
Tony Breeds | 9b09c6d | 2008-06-24 14:20:29 +1000 | [diff] [blame] | 141 | link_address='0x400000' |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 142 | |
| 143 | case "$platform" in |
Tony Breeds | 9b09c6d | 2008-06-24 14:20:29 +1000 | [diff] [blame] | 144 | pseries) |
| 145 | platformo=$object/of.o |
| 146 | link_address='0x4000000' |
| 147 | ;; |
| 148 | pmac|chrp) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 149 | platformo=$object/of.o |
| 150 | ;; |
Milton Miller | 627aa94 | 2007-05-31 01:29:01 +1000 | [diff] [blame] | 151 | coff) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 152 | platformo=$object/of.o |
| 153 | lds=$object/zImage.coff.lds |
Tony Breeds | 9b09c6d | 2008-06-24 14:20:29 +1000 | [diff] [blame] | 154 | link_address='0x500000' |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 155 | ;; |
| 156 | miboot|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 Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 164 | cuboot*) |
Scott Wood | 11c146c | 2007-09-14 14:58:25 -0500 | [diff] [blame] | 165 | binary=y |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 166 | gzip= |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 167 | case "$platform" in |
Scott Wood | 8dd217b | 2008-07-31 19:10:22 +0300 | [diff] [blame^] | 168 | *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc) |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 169 | 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'Donoghue | 59d13f9 | 2008-05-08 13:47:00 +0100 | [diff] [blame] | 180 | *-mpc83*|*-asp834x*) |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 181 | platformo=$object/cuboot-83xx.o |
| 182 | ;; |
Alexandr Smirnov | ff88011 | 2008-03-04 19:34:26 +0300 | [diff] [blame] | 183 | *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*) |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 184 | platformo=$object/cuboot-85xx-cpm2.o |
| 185 | ;; |
Wolfgang Grandegger | 6dd1b64 | 2008-06-06 13:50:04 +0200 | [diff] [blame] | 186 | *-mpc85*|*-tqm85*|*-sbc85*) |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 187 | platformo=$object/cuboot-85xx.o |
| 188 | ;; |
| 189 | esac |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 190 | ;; |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 191 | ps3) |
| 192 | platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o" |
| 193 | lds=$object/zImage.ps3.lds |
| 194 | gzip= |
| 195 | ext=bin |
| 196 | objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data" |
| 197 | ksection=.kernel:vmlinux.bin |
| 198 | isection=.kernel:initrd |
Tony Breeds | 9b09c6d | 2008-06-24 14:20:29 +1000 | [diff] [blame] | 199 | link_address='' |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 200 | ;; |
Scott Wood | a55387e | 2008-02-20 12:33:38 -0600 | [diff] [blame] | 201 | ep88xc|ep405|ep8248e) |
Scott Wood | 11c146c | 2007-09-14 14:58:25 -0500 | [diff] [blame] | 202 | platformo="$object/fixed-head.o $object/$platform.o" |
| 203 | binary=y |
| 204 | ;; |
Scott Wood | a55387e | 2008-02-20 12:33:38 -0600 | [diff] [blame] | 205 | adder875-redboot) |
| 206 | platformo="$object/fixed-head.o $object/redboot-8xx.o" |
| 207 | binary=y |
| 208 | ;; |
Grant Likely | d2477b5 | 2008-03-19 04:07:43 +1100 | [diff] [blame] | 209 | simpleboot-virtex405-*) |
John Linn | d58577d | 2008-07-02 15:11:28 -0700 | [diff] [blame] | 210 | platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o" |
| 211 | binary=y |
| 212 | ;; |
| 213 | simpleboot-virtex440-*) |
| 214 | platformo="$object/simpleboot.o $object/virtex.o" |
Grant Likely | d2477b5 | 2008-03-19 04:07:43 +1100 | [diff] [blame] | 215 | binary=y |
| 216 | ;; |
Grant Likely | 1d46e37 | 2008-07-04 00:59:37 -0600 | [diff] [blame] | 217 | simpleboot-*) |
| 218 | platformo="$object/simpleboot.o" |
| 219 | binary=y |
| 220 | ;; |
Bryan O'Donoghue | 59d13f9 | 2008-05-08 13:47:00 +0100 | [diff] [blame] | 221 | asp834x-redboot) |
| 222 | platformo="$object/fixed-head.o $object/redboot-83xx.o" |
| 223 | binary=y |
| 224 | ;; |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 225 | esac |
| 226 | |
| 227 | vmz="$tmpdir/`basename \"$kernel\"`.$ext" |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 228 | if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 229 | ${CROSS}objcopy $objflags "$kernel" "$vmz.$$" |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 230 | |
| 231 | if [ -n "$gzip" ]; then |
| 232 | gzip -f -9 "$vmz.$$" |
| 233 | fi |
| 234 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 235 | if [ -n "$cacheit" ]; then |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 236 | mv -f "$vmz.$$$gzip" "$vmz$gzip" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 237 | else |
| 238 | vmz="$vmz.$$" |
| 239 | fi |
| 240 | fi |
| 241 | |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 242 | vmz="$vmz$gzip" |
| 243 | |
David Gibson | a6afacb | 2007-05-01 10:20:20 +1000 | [diff] [blame] | 244 | # Extract kernel version information, some platforms want to include |
| 245 | # it in the image header |
| 246 | version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \ |
| 247 | cut -d' ' -f3` |
| 248 | if [ -n "$version" ]; then |
| 249 | uboot_version="-n Linux-$version" |
| 250 | fi |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 251 | |
Kumar Gala | b18796d | 2008-04-16 05:52:29 +1000 | [diff] [blame] | 252 | # physical offset of kernel image |
| 253 | membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'` |
| 254 | |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 255 | case "$platform" in |
| 256 | uboot) |
| 257 | rm -f "$ofile" |
Kumar Gala | b18796d | 2008-04-16 05:52:29 +1000 | [diff] [blame] | 258 | mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \ |
David Gibson | a6afacb | 2007-05-01 10:20:20 +1000 | [diff] [blame] | 259 | $uboot_version -d "$vmz" "$ofile" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 260 | if [ -z "$cacheit" ]; then |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 261 | rm -f "$vmz" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 262 | fi |
| 263 | exit 0 |
| 264 | ;; |
| 265 | esac |
| 266 | |
| 267 | addsec() { |
| 268 | ${CROSS}objcopy $4 $1 \ |
| 269 | --add-section=$3="$2" \ |
| 270 | --set-section-flags=$3=contents,alloc,load,readonly,data |
| 271 | } |
| 272 | |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 273 | addsec $tmp "$vmz" $ksection $object/empty.o |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 274 | if [ -z "$cacheit" ]; then |
Scott Wood | a990381 | 2007-03-16 12:27:59 -0500 | [diff] [blame] | 275 | rm -f "$vmz" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 276 | fi |
| 277 | |
| 278 | if [ -n "$initrd" ]; then |
Mark A. Greer | c888554 | 2006-10-16 13:49:27 -0700 | [diff] [blame] | 279 | addsec $tmp "$initrd" $isection |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 280 | fi |
| 281 | |
| 282 | if [ -n "$dtb" ]; then |
Mark A. Greer | c888554 | 2006-10-16 13:49:27 -0700 | [diff] [blame] | 283 | addsec $tmp "$dtb" .kernel:dtb |
Mark A. Greer | e9c4b4b | 2006-11-08 17:50:44 -0700 | [diff] [blame] | 284 | if [ -n "$dts" ]; then |
| 285 | rm $dtb |
| 286 | fi |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 287 | fi |
| 288 | |
| 289 | if [ "$platform" != "miboot" ]; then |
Tony Breeds | 9b09c6d | 2008-06-24 14:20:29 +1000 | [diff] [blame] | 290 | if [ -n "$link_address" ] ; then |
| 291 | text_start="-Ttext $link_address --defsym _start=$link_address" |
| 292 | fi |
| 293 | ${CROSS}ld -m elf32ppc -T $lds $text_start -o "$ofile" \ |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 294 | $platformo $tmp $object/wrapper.a |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 295 | rm $tmp |
| 296 | fi |
| 297 | |
David Gibson | a6afacb | 2007-05-01 10:20:20 +1000 | [diff] [blame] | 298 | # Some platforms need the zImage's entry point and base address |
| 299 | base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1` |
| 300 | entry=`${CROSS}objdump -f "$ofile" | grep '^start address ' | cut -d' ' -f3` |
| 301 | |
Scott Wood | 11c146c | 2007-09-14 14:58:25 -0500 | [diff] [blame] | 302 | if [ -n "$binary" ]; then |
| 303 | mv "$ofile" "$ofile".elf |
Scott Wood | aeb4552 | 2007-10-25 02:56:28 +1000 | [diff] [blame] | 304 | ${CROSS}objcopy -O binary "$ofile".elf "$ofile" |
Scott Wood | 11c146c | 2007-09-14 14:58:25 -0500 | [diff] [blame] | 305 | fi |
| 306 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 307 | # post-processing needed for some platforms |
| 308 | case "$platform" in |
| 309 | pseries|chrp) |
David Woodhouse | 5c539ee | 2007-12-03 13:52:05 +1100 | [diff] [blame] | 310 | $objbin/addnote "$ofile" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 311 | ;; |
Milton Miller | 627aa94 | 2007-05-31 01:29:01 +1000 | [diff] [blame] | 312 | coff) |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 313 | ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile" |
David Woodhouse | 5c539ee | 2007-12-03 13:52:05 +1100 | [diff] [blame] | 314 | $objbin/hack-coff "$ofile" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 315 | ;; |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 316 | cuboot*) |
Scott Wood | aeb4552 | 2007-10-25 02:56:28 +1000 | [diff] [blame] | 317 | gzip -f -9 "$ofile" |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 318 | mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \ |
Scott Wood | aeb4552 | 2007-10-25 02:56:28 +1000 | [diff] [blame] | 319 | $uboot_version -d "$ofile".gz "$ofile" |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 320 | ;; |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 321 | treeboot*) |
| 322 | mv "$ofile" "$ofile.elf" |
David Woodhouse | 5c539ee | 2007-12-03 13:52:05 +1100 | [diff] [blame] | 323 | $objbin/mktree "$ofile.elf" "$ofile" "$base" "$entry" |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 324 | if [ -z "$cacheit" ]; then |
| 325 | rm -f "$ofile.elf" |
| 326 | fi |
| 327 | exit 0 |
| 328 | ;; |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 329 | ps3) |
Geoff Levand | 5761eaa | 2008-03-28 07:41:45 +1100 | [diff] [blame] | 330 | # The ps3's loader supports loading a gzipped binary image from flash |
| 331 | # rom to ram addr zero. The loader then enters the system reset |
| 332 | # vector at addr 0x100. A bootwrapper overlay is used to arrange for |
| 333 | # a binary image of the kernel to be at addr zero, and yet have a |
| 334 | # suitable bootwrapper entry at 0x100. To construct the final rom |
| 335 | # image 512 bytes from offset 0x100 is copied to the bootwrapper |
| 336 | # place holder at symbol __system_reset_kernel. The 512 bytes of the |
| 337 | # bootwrapper entry code at symbol __system_reset_overlay is then |
| 338 | # copied to offset 0x100. At runtime the bootwrapper program copies |
| 339 | # the data at __system_reset_kernel back to addr 0x100. |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 340 | |
Scott Wood | aeb4552 | 2007-10-25 02:56:28 +1000 | [diff] [blame] | 341 | system_reset_overlay=0x`${CROSS}nm "$ofile" \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 342 | | grep ' __system_reset_overlay$' \ |
| 343 | | cut -d' ' -f1` |
| 344 | system_reset_overlay=`printf "%d" $system_reset_overlay` |
Scott Wood | aeb4552 | 2007-10-25 02:56:28 +1000 | [diff] [blame] | 345 | system_reset_kernel=0x`${CROSS}nm "$ofile" \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 346 | | grep ' __system_reset_kernel$' \ |
| 347 | | cut -d' ' -f1` |
| 348 | system_reset_kernel=`printf "%d" $system_reset_kernel` |
| 349 | overlay_dest="256" |
Geoff Levand | 5761eaa | 2008-03-28 07:41:45 +1100 | [diff] [blame] | 350 | overlay_size="512" |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 351 | |
Scott Wood | aeb4552 | 2007-10-25 02:56:28 +1000 | [diff] [blame] | 352 | ${CROSS}objcopy -O binary "$ofile" "$ofile.bin" |
| 353 | |
Grant Likely | d474037 | 2007-10-23 14:27:36 +1000 | [diff] [blame] | 354 | dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \ |
| 355 | skip=$overlay_dest seek=$system_reset_kernel \ |
| 356 | count=$overlay_size bs=1 |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 357 | |
Grant Likely | d474037 | 2007-10-23 14:27:36 +1000 | [diff] [blame] | 358 | dd if="$ofile.bin" of="$ofile.bin" conv=notrunc \ |
| 359 | skip=$system_reset_overlay seek=$overlay_dest \ |
| 360 | count=$overlay_size bs=1 |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 361 | |
David Woodhouse | 928b969 | 2007-12-03 13:48:03 +1100 | [diff] [blame] | 362 | odir="$(dirname "$ofile.bin")" |
| 363 | rm -f "$odir/otheros.bld" |
| 364 | gzip --force -9 --stdout "$ofile.bin" > "$odir/otheros.bld" |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 365 | ;; |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 366 | esac |