Skip to content

Commit 6cc9b32

Browse files
authored
Remove Ubuntu 16.04 from README (#188)
Signed-off-by: Zhang Lili <lili.z.zhang@intel.com>
1 parent 53a075b commit 6cc9b32

File tree

4 files changed

+12
-19
lines changed

4 files changed

+12
-19
lines changed

QuoteGeneration/README.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ For Linux* OS
4444
-----------------
4545
## Prerequisites
4646
- Ensure that you have the following required operating systems:
47-
* Ubuntu* 16.04 LTS Desktop 64bits - minimal kernel 4.10
48-
* Ubuntu* 16.04 LTS Server 64bits - minimal kernel 4.10
4947
* Ubuntu* 18.04 LTS Desktop 64bits
5048
* Ubuntu* 18.04 LTS Server 64bits
5149
* Ubuntu* 20.04 LTS Server 64bits
@@ -56,7 +54,7 @@ For Linux* OS
5654
* Intel(R) Atom(TM) Processor with **Flexible Launch Control** support*
5755
- Configure the system with the **SGX hardware enabled** option.
5856
- Use the following command(s) to install the required tools to build the Intel(R) SGX software:
59-
* On Ubuntu 16.04 and Ubuntu 18.04
57+
* On Ubuntu 18.04
6058
```
6159
$ sudo apt-get install build-essential wget python debhelper zip libcurl4-openssl-dev
6260
```
@@ -114,15 +112,12 @@ A `README.md` is provided in the Intel(R) SGX driver package for Intel(R) SGX DC
114112
$ make DEBUG=1
115113
```
116114
- To build the Intel(R) SGX DCAP Quote Generation Library and the Intel(R) SGX Default Quote Provider Library installers, enter the following command:
117-
* On Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04:
115+
* On Ubuntu 18.04 and Ubuntu 20.04:
118116
```
119117
$ make deb_pkg
120118
```
121119
You can find the generated installers located under `linux/installer/deb/`.
122-
**Note**: On Ubuntu 18.04 and Ubuntu 20.04, the above command also generates another debug symbol package with extension name of `.ddeb` for debug purpose. On Ubuntu 16.04, if you want to keep debug symbols, you need to export an environment variable to ensure the debug symbols not stripped:
123-
```
124-
$ export DEB_BUILD_OPTIONS="nostrip"
125-
```
120+
**Note**: On Ubuntu 18.04 and Ubuntu 20.04, the above command also generates another debug symbol package with extension name of `.ddeb` for debug purpose.
126121
**Note**: The above command builds the installers with default configuration firstly and then generates the target installers. To build the installers without optimization and with full debug information kept in the libraries, enter the following command:
127122
```
128123
$ make deb_pkg DEBUG=1
@@ -139,7 +134,7 @@ A `README.md` is provided in the Intel(R) SGX driver package for Intel(R) SGX DC
139134

140135
## Install the Intel(R) SGX DCAP Quote Generation Library Package
141136
- Install prebuilt Intel(R) SGX common loader and other prerequisites from [01.org](https://01.org/intel-software-guard-extensions/downloads)
142-
* On Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04:
137+
* On Ubuntu 18.04 and Ubuntu 20.04:
143138
```
144139
$ sudo dpkg -i --force-overwrite libsgx-ae-pce_*.deb libsgx-ae-qe3_*.deb libsgx-ae-qve_*.deb libsgx-enclave-common_*.deb libsgx-urts_*.deb
145140
```
@@ -152,7 +147,7 @@ A `README.md` is provided in the Intel(R) SGX driver package for Intel(R) SGX DC
152147
**NOTE**: If you're not doing a fresh install, please replace option `-i` to `-U` to avoid some conflict errors.
153148

154149
- For production systems, package should be installed by the following command:
155-
* On Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04:
150+
* On Ubuntu 18.04 and Ubuntu 20.04:
156151
```
157152
$ sudo dpkg -i libsgx-dcap-ql_*.deb
158153
```
@@ -162,7 +157,7 @@ A `README.md` is provided in the Intel(R) SGX driver package for Intel(R) SGX DC
162157
```
163158

164159
- For development systems, another two packages should be installed by the following commands:
165-
* On Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04:
160+
* On Ubuntu 18.04 and Ubuntu 20.04:
166161
```
167162
$ sudo dpkg -i libsgx-dcap-ql-dev_*.deb
168163
$ sudo dpkg -i libsgx-dcap-ql-dbgsym_*.deb
@@ -175,7 +170,7 @@ A `README.md` is provided in the Intel(R) SGX driver package for Intel(R) SGX DC
175170

176171
## Install the Intel(R) SGX Default Quote Provider Library Package
177172
- For production systems, package should be installed by the following commands:
178-
* On Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04:
173+
* On Ubuntu 18.04 and Ubuntu 20.04:
179174
```
180175
$ sudo dpkg -i libsgx-dcap-default-qpl_*.deb
181176
$ sudo dpkg -i sgx-dcap-pccs_*.deb
@@ -187,7 +182,7 @@ A `README.md` is provided in the Intel(R) SGX driver package for Intel(R) SGX DC
187182
```
188183
Please refer to /opt/intel/sgx-dcap-pccs/README.md for more details about the installation of sgx-dcap-pccs.
189184
- For development systems, another two packages should be installed by the following commands:
190-
* On Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04:
185+
* On Ubuntu 18.04 and Ubuntu 20.04:
191186
```
192187
$ sudo dpkg -i libsgx-dcap-default-qpl-dev*.deb libsgx-headers*.deb
193188
$ sudo dpkg -i libsgx-dcap-default-qpl-dbgsym*.deb

QuoteVerification/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Intel(R) Software Guard Extensions Data Center Attestation Primitives (Intel(R)
44
## Build QvE and dcap_quoteverify libraries, non-production only (for debug purposes). For production you must use Intel(R) signed QvE.
55
## Linux
66
Supported operating systems:
7-
* Ubuntu* 16.04 LTS Desktop 64bits - minimal kernel 4.10
8-
* Ubuntu* 16.04 LTS Server 64bits - minimal kernel 4.10
97
* Ubuntu* 18.04 LTS Desktop 64bits
108
* Ubuntu* 18.04 LTS Server 64bits
119
* Ubuntu* 20.04 LTS Server 64bits

SampleCode/QuoteGenerationSample/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Intel(R) Software Guard Extensions Data Center Attestation Primitives (Intel(R)
33

44
## Linux
55
Supported operating systems:
6-
* Ubuntu* 16.04 LTS Desktop 64bits - minimal kernel 4.10
7-
* Ubuntu* 16.04 LTS Server 64bits - minimal kernel 4.10
86
* Ubuntu* 18.04 LTS Desktop 64bits
97
* Ubuntu* 18.04 LTS Server 64bits
8+
* Ubuntu\* 20.04 LTS Server 64bits
109
* Red Hat Enterprise Linux Server release 8.2 64bits
10+
* CentOS 8.2 64bits
1111

1212
Requirements:
1313
* make

SampleCode/QuoteVerificationSample/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Intel(R) Software Guard Extensions Data Center Attestation Primitives (Intel(R)
33

44
## Linux
55
Supported operating systems:
6-
* Ubuntu* 16.04 LTS Desktop 64bits - minimal kernel 4.10
7-
* Ubuntu* 16.04 LTS Server 64bits - minimal kernel 4.10
86
* Ubuntu* 18.04 LTS Desktop 64bits
97
* Ubuntu* 18.04 LTS Server 64bits
8+
* Ubuntu* 20.04 LTS Server 64bits
109
* Red Hat Enterprise Linux Server release 8.2 64bits
10+
* CentOS 8.2 64bits
1111

1212
Requirements:
1313
* make

0 commit comments

Comments
 (0)