Consolidate the unpack scripts for the bootstrap tools.

This commit is contained in:
Ambroz Bizjak
2015-02-05 21:27:12 +01:00
parent 8fb7d8bede
commit 810b416d89
3 changed files with 3 additions and 72 deletions
+1 -4
View File
@@ -42,10 +42,7 @@ rec {
builder = bootstrapFiles.busybox;
args = if system == "armv5tel-linux" || system == "armv6l-linux"
|| system == "armv7l-linux"
then [ "ash" "-e" ./scripts/unpack-bootstrap-tools-arm.sh ]
else [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
tarball = bootstrapFiles.bootstrapTools;