Skip to content

Commit 607a226

Browse files
committed
Linux 2.18.1 Open Source Gold Release
Fixed enclave load failure in environments where no symbolic links, /dev/sgx/{enclave, provision} are created to point to the default SGX device nodes exported by kernel, /dev/{sgx_enclave, sgx_provision}, respectively. Signed-off-by: Li, Xun <xun.li@intel.com>
1 parent 984f3c9 commit 607a226

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

common/inc/internal/se_version.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@
3131
#ifndef _SE_VERSION_H_
3232
#define _SE_VERSION_H_
3333

34-
#define STRFILEVER "2.18.100.3"
34+
#define STRFILEVER "2.18.101.1"
3535
#define SGX_MAJOR_VERSION 2
3636
#define SGX_MINOR_VERSION 18
37-
#define SGX_REVISION_VERSION 100
37+
#define SGX_REVISION_VERSION 101
3838
#define MAKE_VERSION_UINT(major,minor,rev) (((uint64_t)major)<<32 | ((uint64_t)minor) << 16 | rev)
3939
#define VERSION_UINT MAKE_VERSION_UINT(SGX_MAJOR_VERSION, SGX_MINOR_VERSION, SGX_REVISION_VERSION)
4040

4141
#define COPYRIGHT "Copyright (C) 2022 Intel Corporation"
4242

43-
#define UAE_SERVICE_VERSION "2.3.216.3"
44-
#define URTS_VERSION "2.0.100.3"
45-
#define ENCLAVE_COMMON_VERSION "1.2.100.3"
46-
#define LAUNCH_VERSION "1.0.118.3"
47-
#define EPID_VERSION "1.0.118.3"
48-
#define QUOTE_EX_VERSION "1.1.118.3"
43+
#define UAE_SERVICE_VERSION "2.3.217.1"
44+
#define URTS_VERSION "2.0.101.1"
45+
#define ENCLAVE_COMMON_VERSION "1.2.101.1"
46+
#define LAUNCH_VERSION "1.0.119.1"
47+
#define EPID_VERSION "1.0.119.1"
48+
#define QUOTE_EX_VERSION "1.1.119.1"
4949

5050
#define PCE_VERSION "1.17.100.2"
5151
#define LE_VERSION "1.17.100.2"

download_prebuilt.sh

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

3434
top_dir=`dirname $0`
3535
out_dir=$top_dir
36-
optlib_name=optimized_libs_2.18.tar.gz
37-
ae_file_name=prebuilt_ae_2.18.tar.gz
36+
optlib_name=optimized_libs_2.18.1.tar.gz
37+
ae_file_name=prebuilt_ae_2.18.1.tar.gz
3838
binutils_file_name=as.ld.objdump.r4.tar.gz
39-
checksum_file=SHA256SUM_prebuilt_2.18.cfg
40-
server_url_path=https://download.01.org/intel-sgx/sgx-linux/2.18
39+
checksum_file=SHA256SUM_prebuilt_2.18.1.cfg
40+
server_url_path=https://download.01.org/intel-sgx/sgx-linux/2.18.1
4141
server_optlib_url=$server_url_path/$optlib_name
4242
server_ae_url=$server_url_path/$ae_file_name
4343
server_binutils_url=$server_url_path/$binutils_file_name

0 commit comments

Comments
 (0)