Skip to content

Commit 3f132c6

Browse files
authored
Update download_prebuilt.sh
Update download script to use prebuilt AEs with security updates.
1 parent 049541f commit 3f132c6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

download_prebuilt.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333

3434
top_dir=`dirname $0`
3535
out_dir=$top_dir
36-
optlib_name=optimized_libs-2.1.tar
37-
ae_file_name=prebuilt-ae-2.1.tar
38-
server_url_path=https://download.01.org/intel-sgx/linux-2.1/
36+
optlib_name=optimized_libs-2.1.1.tar
37+
ae_file_name=prebuilt-ae-2.1.1.tar
38+
server_url_path=https://download.01.org/intel-sgx/linux-2.1.1/
3939
server_optlib_url=$server_url_path/$optlib_name
4040
server_ae_url=$server_url_path/$ae_file_name
4141
optlib_sha256=239cae39f87934d56c4eb919a4702c6ac82c19957b9a8d56c02b10eb4e27f573
42-
ae_sha256=3dfac14590a74aa860ea88ca9d1e2e112efb300c622e9ea02b3fa4bd69c50b07
42+
ae_sha256=f95589a69a8a8767815fe3bccf32bac5c9709022f9f32ae1a726b1da7955200b
4343
rm -rf $out_dir/$optlib_name
4444
wget $server_optlib_url -P $out_dir
4545
if [ $? -ne 0 ]; then
@@ -66,3 +66,4 @@ if [ $? -ne 0 ]; then
6666
fi
6767

6868
pushd $out_dir;tar -xf $optlib_name;tar -xf $ae_file_name;rm -f $optlib_name;rm -f $ae_file_name;popd
69+

0 commit comments

Comments
 (0)