Skip to content

Commit

Permalink
Linux 2.18.1 Open Source Gold Release
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
llly committed Jan 12, 2023
1 parent c37095c commit 7cd5179
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions common/inc/internal/se_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@
#ifndef _SE_VERSION_H_
#define _SE_VERSION_H_

#define STRFILEVER "2.18.100.3"
#define STRFILEVER "2.18.101.1"
#define SGX_MAJOR_VERSION 2
#define SGX_MINOR_VERSION 18
#define SGX_REVISION_VERSION 100
#define SGX_REVISION_VERSION 101
#define MAKE_VERSION_UINT(major,minor,rev) (((uint64_t)major)<<32 | ((uint64_t)minor) << 16 | rev)
#define VERSION_UINT MAKE_VERSION_UINT(SGX_MAJOR_VERSION, SGX_MINOR_VERSION, SGX_REVISION_VERSION)

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

#define UAE_SERVICE_VERSION "2.3.216.3"
#define URTS_VERSION "2.0.100.3"
#define ENCLAVE_COMMON_VERSION "1.2.100.3"
#define LAUNCH_VERSION "1.0.118.3"
#define EPID_VERSION "1.0.118.3"
#define QUOTE_EX_VERSION "1.1.118.3"
#define UAE_SERVICE_VERSION "2.3.217.1"
#define URTS_VERSION "2.0.101.1"
#define ENCLAVE_COMMON_VERSION "1.2.101.1"
#define LAUNCH_VERSION "1.0.119.1"
#define EPID_VERSION "1.0.119.1"
#define QUOTE_EX_VERSION "1.1.119.1"

#define PCE_VERSION "1.17.100.2"
#define LE_VERSION "1.17.100.2"
Expand Down
8 changes: 4 additions & 4 deletions download_prebuilt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@

top_dir=`dirname $0`
out_dir=$top_dir
optlib_name=optimized_libs_2.18.tar.gz
ae_file_name=prebuilt_ae_2.18.tar.gz
optlib_name=optimized_libs_2.18.1.tar.gz
ae_file_name=prebuilt_ae_2.18.1.tar.gz
binutils_file_name=as.ld.objdump.r4.tar.gz
checksum_file=SHA256SUM_prebuilt_2.18.cfg
server_url_path=https://download.01.org/intel-sgx/sgx-linux/2.18
checksum_file=SHA256SUM_prebuilt_2.18.1.cfg
server_url_path=https://download.01.org/intel-sgx/sgx-linux/2.18.1
server_optlib_url=$server_url_path/$optlib_name
server_ae_url=$server_url_path/$ae_file_name
server_binutils_url=$server_url_path/$binutils_file_name
Expand Down

0 comments on commit 7cd5179

Please sign in to comment.