Skip to content

Commit 5c2be56

Browse files
AWSaallurikristopk
authored andcommitted
[RC_V1_4_7b]Document & XRT installation instructions Fixes (#454)
* Document & XRT installation instruction updates * Update Create_Runtime_AMI.md
1 parent a9c3a00 commit 5c2be56

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

SDAccel/docs/Create_Runtime_AMI.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
## 1. Launch a Runtime Instance & Install Required Packages
1111

12-
### Using Amazon Linux
12+
* Please note Amazon Linux 2 or Amazon Linux are not supported by Xilinx XRT at this time. Please use Centos/RHEL or Ubuntu when using Xilinx XRT Runtimes for the AFIs generated using Xilinx SDx 2018.2 and 2018.3 toolsets.
1313

14-
* Launch an F1 instance using an [Amazon Linux AMI](https://aws.amazon.com/marketplace/pp/B00635Y2IW)
14+
* Launch an F1 instance using an [Amazon Linux AMI](https://aws.amazon.com/marketplace/pp/B00635Y2IW) or [Centos 7](https://aws.amazon.com/marketplace/pp/B00O7WM7QW)
1515
* Install the required updates
1616

1717
````

hdk/docs/SDxPatch_AR71715_and_XRT_installation_instructions.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,14 @@
5757
5858
### Centos/RedHat Linux
5959
60-
Run following commands to download and install XRT 2018.2_XDF.RC4 for 'Centos/RHEL' based distributions
60+
Run following commands to download and install XRT 2018.2_XDF.RC4 for 'Centos/RHEL'
6161
6262
```
6363
curl -s https://s3.amazonaws.com/aws-fpga-developer-ami/1.5.0/Patches/xrt_201802.2.1.0_7.5.1804-xrt.rpm -o xrt_201802.2.1.0_7.5.1804-xrt.rpm
6464
curl -s https://s3.amazonaws.com/aws-fpga-developer-ami/1.5.0/Patches/xrt_201802.2.1.0_7.5.1804-aws.rpm -o xrt_201802.2.1.0_7.5.1804-aws.rpm
65-
sudo yum reinstall -y xrt_201802.2.1.0_7.5.1804-xrt.rpm
66-
sudo yum reinstall -y xrt_201802.2.1.0_7.5.1804-aws.rpm
65+
sudo yum remove -y xrt
66+
sudo yum install -y xrt_201802.2.1.0_7.5.1804-xrt.rpm
67+
sudo yum install -y xrt_201802.2.1.0_7.5.1804-aws.rpm
6768

6869
```
6970
@@ -75,14 +76,16 @@
7576
7677
### Centos/RedHat Linux
7778
78-
Run following commands to download and install XRT 2018.2_XDF.RC4 for 'Centos/RHEL' based distributions
79+
Run following commands to download and install XRT 2018.2_XDF.RC5 for 'Centos/RHEL'
7980
8081
```
8182
curl -s https://s3.amazonaws.com/aws-fpga-developer-ami/1.5.0/Patches/XRT_2018_2_XDF_RC5/xrt_201802.2.1.0_7.5.1804-xrt.rpm -o xrt_201802.2.1.0_7.5.1804-xrt.rpm
8283
curl -s https://s3.amazonaws.com/aws-fpga-developer-ami/1.5.0/Patches/XRT_2018_2_XDF_RC5/xrt_201802.2.1.0_7.5.1804-aws.rpm -o xrt_201802.2.1.0_7.5.1804-aws.rpm
83-
sudo yum reinstall -y xrt_201802.2.1.0_7.5.1804-xrt.rpm
84-
sudo yum reinstall -y xrt_201802.2.1.0_7.5.1804-aws.rpm
84+
sudo yum remove -y xrt-aws
85+
sudo yum remove -y xrt
86+
sudo yum install -y xrt_201802.2.1.0_7.5.1804-xrt.rpm
87+
sudo yum install -y xrt_201802.2.1.0_7.5.1804-aws.rpm
8588

8689
```
8790
88-
91+

sdaccel_runtime_setup.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,10 @@ function xrt_install_instructions_2018_2 {
6969
err_msg "use following command to download and install latest validated XRT rpms for centos distributions"
7070
err_msg "curl -s https://s3.amazonaws.com/aws-fpga-developer-ami/1.5.0/Patches/XRT_2018_2_XDF_RC5/xrt_201802.2.1.0_7.5.1804-xrt.rpm -o xrt_201802.2.1.0_7.5.1804-xrt.rpm"
7171
err_msg "curl -s https://s3.amazonaws.com/aws-fpga-developer-ami/1.5.0/Patches/XRT_2018_2_XDF_RC5/xrt_201802.2.1.0_7.5.1804-aws.rpm -o xrt_201802.2.1.0_7.5.1804-aws.rpm"
72-
err_msg "sudo yum reinstall -y xrt_*-xrt.rpm"
73-
err_msg "sudo yum reinstall -y xrt_*-aws.rpm"
72+
err_msg "sudo yum remove -y xrt-aws"
73+
err_msg "sudo yum remove -y xrt"
74+
err_msg "sudo yum install -y xrt_201802.2.1.0_7.5.1804-xrt.rpm"
75+
err_msg "sudo yum install -y xrt_201802.2.1.0_7.5.1804-aws.rpm"
7476
}
7577

7678
function check_xdma_driver {

0 commit comments

Comments
 (0)