I add back the arm unpack script

The unified made by ambro doesn't work for me in the sheevaplug.
This commit is contained in:
Lluís Batlle i Rossell
2015-02-09 22:36:10 +01:00
parent 7fc94dd3bb
commit 6790caf713
2 changed files with 68 additions and 1 deletions
+4 -1
View File
@@ -44,7 +44,10 @@ rec {
builder = bootstrapFiles.busybox;
args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
args = if system == "armv5tel-linux" then
[ "ash" "-e" ./scripts/unpack-bootstrap-tools-arm.sh ]
else
[ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
tarball = bootstrapFiles.bootstrapTools;