diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-04-04 18:40:46 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-04-04 18:40:46 +0000 |
commit | 16e34b98a1f7acb3a37579388df585fbc0fa10e5 (patch) | |
tree | 37fe3da0c76fe50d82cf7555ddde8607b44e0024 | |
parent | e6cc67b07a8cf25a3b439febcdfdce37e64297ab (diff) |
small workaround for romtool incompatibility with ppc ports
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4068 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/arch/ppc/Config.lb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/arch/ppc/Config.lb b/src/arch/ppc/Config.lb index 4e3c858c53..1a5ad840e7 100644 --- a/src/arch/ppc/Config.lb +++ b/src/arch/ppc/Config.lb @@ -1,10 +1,15 @@ ldscript init/ldscript.lb -makerule coreboot.rom +makerule coreboot.strip depends "coreboot" action "cp $< $@" end +makerule coreboot.rom + depends "coreboot.strip" + action "cp $< $@" +end + dir init dir lib dir boot |