wrapper (9b09c6d909dfd8de96b99b9b9c808b94b0a71614) | wrapper (d58577d8f36f66dbb5dec30fc01dfddda0cfd1fa) |
---|---|
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 --- 193 unchanged lines hidden (view full) --- 202 platformo="$object/fixed-head.o $object/$platform.o" 203 binary=y 204 ;; 205adder875-redboot) 206 platformo="$object/fixed-head.o $object/redboot-8xx.o" 207 binary=y 208 ;; 209simpleboot-virtex405-*) | 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 --- 193 unchanged lines hidden (view full) --- 202 platformo="$object/fixed-head.o $object/$platform.o" 203 binary=y 204 ;; 205adder875-redboot) 206 platformo="$object/fixed-head.o $object/redboot-8xx.o" 207 binary=y 208 ;; 209simpleboot-virtex405-*) |
210 platformo="$object/virtex405-head.o $object/simpleboot.o" | 210 platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o" |
211 binary=y 212 ;; | 211 binary=y 212 ;; |
213simpleboot-virtex440-*) 214 platformo="$object/simpleboot.o $object/virtex.o" 215 binary=y 216 ;; |
|
213asp834x-redboot) 214 platformo="$object/fixed-head.o $object/redboot-83xx.o" 215 binary=y 216 ;; 217esac 218 219vmz="$tmpdir/`basename \"$kernel\"`.$ext" 220if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then --- 138 unchanged lines hidden --- | 217asp834x-redboot) 218 platformo="$object/fixed-head.o $object/redboot-83xx.o" 219 binary=y 220 ;; 221esac 222 223vmz="$tmpdir/`basename \"$kernel\"`.$ext" 224if [ -z "$cacheit" -o ! -f "$vmz$gzip" -o "$vmz$gzip" -ot "$kernel" ]; then --- 138 unchanged lines hidden --- |