diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2008-07-04 00:59:37 -0600 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2008-07-04 00:59:37 -0600 |
commit | 1d46e379aae7349069f459618f53fd5193c2fd29 (patch) | |
tree | 5553caf17770f4a2492da1bdf236f77dc5d98589 /arch/powerpc/boot | |
parent | 70bf0333d72cd66daf7664c44708f65518b267cc (diff) | |
download | op-kernel-dev-1d46e379aae7349069f459618f53fd5193c2fd29.zip op-kernel-dev-1d46e379aae7349069f459618f53fd5193c2fd29.tar.gz |
powerpc/bootwrapper: add missing bit of simpleImage target
The wrapper script is missing the bits needed for building generic
simpleImage targets (targets which don't depend on any particular
firmware interface and retrieve all their data from the device tree).
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/powerpc/boot')
-rwxr-xr-x | arch/powerpc/boot/wrapper | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index 592a6ea..644bf9d 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper @@ -214,6 +214,10 @@ simpleboot-virtex440-*) platformo="$object/simpleboot.o $object/virtex.o" binary=y ;; +simpleboot-*) + platformo="$object/simpleboot.o" + binary=y + ;; asp834x-redboot) platformo="$object/fixed-head.o $object/redboot-83xx.o" binary=y |