1
0
Fork 0

powerpc/boot: Properly handle the base "of" boot wrapper

The wrapper script needs an explicit rule for the "of" boot
wrapper (generic wrapper, similar to pseries). Before
0c9fa29149 it was hanlded
implicitly by the statement:

platformo=$object/"$platform".o

But now that epapr.o needs to be added, that doesn't work
and an explicit rule must be added.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
hifive-unleashed-5.1
Benjamin Herrenschmidt 2013-11-05 10:09:11 +11:00
parent 5c509a2bb4
commit 44790a0b93
1 changed files with 4 additions and 0 deletions

View File

@ -147,6 +147,10 @@ link_address='0x400000'
make_space=y
case "$platform" in
of)
platformo="$object/of.o $object/epapr.o"
make_space=n
;;
pseries)
platformo="$object/of.o $object/epapr.o"
link_address='0x4000000'