diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-22 13:03:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-22 13:03:12 +0200 |
commit | 27ff5f0ba1a4cb3ef7429de113b5943106ecba9b (patch) | |
tree | e9c9d80ca597bdc65d9b216c90534e0ac613f439 /tests/machine/testscript | |
parent | 3ea6e51b28a06ad4c8b70e9f4d206a56e4771027 (diff) |
Rename directory toolchain/ to toolchains/
To be consistent with machines/
Diffstat (limited to 'tests/machine/testscript')
-rw-r--r-- | tests/machine/testscript | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/machine/testscript b/tests/machine/testscript index 93791e9..dfd1312 100644 --- a/tests/machine/testscript +++ b/tests/machine/testscript @@ -25,7 +25,7 @@ rfp = FF:DF:7D:38:67:4E:C3:82:65:7E:EE:1F:D4:80:EC:56:C4:33:5B:65:3F:9B:29:9A:30 # # Note: similar logic to what we have in Build OS. # -+mkdir -p $tftp/toolchain/default/ ++mkdir -p $tftp/toolchains/default/ +curl -s -S -f -L $toolchain_url/toolchain.sha256 >=toolchain.sha256 +sed -n -e 's%^[0-9a-f]+ \*(.+)$%\1%p' toolchain.sha256 | set -e archives @@ -34,19 +34,19 @@ rfp = FF:DF:7D:38:67:4E:C3:82:65:7E:EE:1F:D4:80:EC:56:C4:33:5B:65:3F:9B:29:9A:30 +/bin/bash -c "while read i && test -n \"\$i\"; do \ b=`basename \$i` ; \ -f=$tftp/toolchain/default/\$b; \ +f=$tftp/toolchains/default/\$b; \ echo \$b: 1>&2; \ curl -# -f -L -z \$f -o \$f $toolchain_url/\$i; \ ln -sf \$b `sed -n -re 's/^\(.+\)-$version\(.+\)/\\1\\2/p' <<<\$f`; \ done" <"$archives" 2>| -+echo "$version" >=$tftp/toolchain/default/version -+echo "$toolchain_trust" >=$tftp/toolchain/default/trust ++echo "$version" >=$tftp/toolchains/default/version ++echo "$toolchain_trust" >=$tftp/toolchains/default/trust #\ # # To test the bootstrap script locally, start the TFTP server in -# $tftp/toolchain/default/. +# $tftp/toolchains/default/. # sudo /usr/sbin/in.tftpd \ |