wrapper (b09c16440eb39c12cc91aea5b572c753a5567d57) | wrapper (0dde1a1df9ab0615ed08558fb7144e7739e9f565) |
---|---|
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 --- 154 unchanged lines hidden (view full) --- 163 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o" 164 lds=$object/zImage.ps3.lds 165 gzip= 166 ext=bin 167 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data" 168 ksection=.kernel:vmlinux.bin 169 isection=.kernel:initrd 170 ;; | 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 --- 154 unchanged lines hidden (view full) --- 163 platformo="$object/ps3-head.o $object/ps3-hvcall.o $object/ps3.o" 164 lds=$object/zImage.ps3.lds 165 gzip= 166 ext=bin 167 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data" 168 ksection=.kernel:vmlinux.bin 169 isection=.kernel:initrd 170 ;; |
171ep88xc|ep405|redboot*) | 171ep88xc|ep405|redboot*|ep8248e) |
172 platformo="$object/fixed-head.o $object/$platform.o" 173 binary=y 174 ;; 175esac 176 177vmz="$tmpdir/`basename \"$kernel\"`.$ext" 178if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then 179 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$" --- 130 unchanged lines hidden --- | 172 platformo="$object/fixed-head.o $object/$platform.o" 173 binary=y 174 ;; 175esac 176 177vmz="$tmpdir/`basename \"$kernel\"`.$ext" 178if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then 179 ${CROSS}objcopy $objflags "$kernel" "$vmz.$$" --- 130 unchanged lines hidden --- |