aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/wrapper
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2009-03-11 11:36:26 -0400
committerGrant Likely <grant.likely@secretlab.ca>2009-03-11 11:36:26 -0400
commita7e1cf0c517d44db8e871a86b2cf7ea7e7d06a4b (patch)
treee06336ccef949eddfc08dff636340cc20ce011f2 /arch/powerpc/boot/wrapper
parent10b9dc6f6bd64885fcd6a005aa211582dbe92647 (diff)
powerpc/bootwrapper: add fixed-head.o to simpleimage wrappers
fixed-head.o must be linked into the bootwrapper for raw-binary images to work. This patch adds it into the bootwrapper. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Reported-by: Eddie Dawydiuk <eddie@embeddedarm.com> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/boot/wrapper')
-rwxr-xr-xarch/powerpc/boot/wrapper4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper
index 6170bbf339a3..3ac75aecdb94 100755
--- a/arch/powerpc/boot/wrapper
+++ b/arch/powerpc/boot/wrapper
@@ -214,11 +214,11 @@ simpleboot-virtex405-*)
214 binary=y 214 binary=y
215 ;; 215 ;;
216simpleboot-virtex440-*) 216simpleboot-virtex440-*)
217 platformo="$object/simpleboot.o $object/virtex.o" 217 platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
218 binary=y 218 binary=y
219 ;; 219 ;;
220simpleboot-*) 220simpleboot-*)
221 platformo="$object/simpleboot.o" 221 platformo="$object/fixed-head.o $object/simpleboot.o"
222 binary=y 222 binary=y
223 ;; 223 ;;
224asp834x-redboot) 224asp834x-redboot)