ARMv7 seems to need special ARM unpacking procedure, too

This commit is contained in:
Michael Raskin 2013-01-05 22:14:59 +04:00
parent aadf9699cb
commit bbc494644f

View File

@ -58,9 +58,10 @@ rec {
builder = bootstrapFiles.sh;
args =
if (system == "armv5tel-linux" || system == "armv6l-linux")
then [ ./scripts/unpack-bootstrap-tools-arm.sh ]
else [ ./scripts/unpack-bootstrap-tools.sh ];
if (system == "armv5tel-linux" || system == "armv6l-linux"
|| system == "armv7l-linux")
then ./scripts/unpack-bootstrap-tools-arm.sh
else ./scripts/unpack-bootstrap-tools.sh;
inherit (bootstrapFiles) bzip2 mkdir curl cpio;