You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: SDAccel/docs/Setup_AWS_CLI_and_S3_Bucket.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,17 @@ The AWS SDAccel scripts require JSON output format and the scripts will not work
8
8
```
9
9
$ aws configure # to set your credentials (found in your console.aws.amazon.com page), region (us-east-1) and output (json)
10
10
```
11
-
This S3 bucket will be used by the AWS SDAccel scripts to upload your DCP to AWS for AFI generation which will be packaged into a tar file.
12
-
Start by creating a bucket and a folder within your new bucket:
11
+
This S3 bucket will be used by the AWS scripts to upload your DCP to AWS for AFI generation which will be packaged into a tar file.
12
+
Start by creating a bucket:
13
13
```
14
14
$ aws s3 mb s3://<bucket-name> --region us-east-1 # Create an S3 bucket (choose a unique bucket name)
15
-
$ aws s3 mb s3://<bucket-name>/<dcp-folder-name> # Create folder for your tarball files
16
15
$ touch FILES_GO_HERE.txt # Create a temp file
17
-
$ aws s3 cp FILES_GO_HERE.txt s3://<bucket-name>/<dcp-folder-name>/ # Which creates the folder on S3
16
+
$ aws s3 cp FILES_GO_HERE.txt s3://<bucket-name>/<dcp-folder-name>/ # Choose a dcp folder name
18
17
```
19
-
The AFI creation process will generate logs and will be placed in your S3 bucket. These logs can be used for debug if the AFI generation fails.
18
+
The AFI creation process will generate logs and will be placed in your S3 bucket. These logs can be used for debug if the AFI generation fails.
20
19
Next, create a folder for your log files:
21
20
```
22
-
$ aws s3 mb s3://<bucket-name>/<logs-folder-name> # Create a folder to keep your logs
23
21
$ touch LOGS_FILES_GO_HERE.txt # Create a temp file
24
-
$ aws s3 cp LOGS_FILES_GO_HERE.txt s3://<bucket-name>/<logs-folder-name>/ # Which creates the folder on S3
22
+
$ aws s3 cp LOGS_FILES_GO_HERE.txt s3://<bucket-name>/<logs-folder-name>/ # Choose a logs folder name
25
23
```
26
24
Once your AFI has been created successfully, you are free to delete the tar file and logs as needed. Deleting these files will not delete or modify your AFI.
Copy file name to clipboardExpand all lines: Vitis/docs/Setup_AWS_CLI_and_S3_Bucket.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,17 @@ The AWS Vitis scripts require JSON output format and the scripts will not work p
8
8
```
9
9
$ aws configure # to set your credentials (found in your console.aws.amazon.com page), region (us-east-1) and output (json)
10
10
```
11
-
This S3 bucket will be used by the AWS SDAccel scripts to upload your DCP to AWS for AFI generation which will be packaged into a tar file.
12
-
Start by creating a bucket and a folder within your new bucket:
11
+
This S3 bucket will be used by the AWS scripts to upload your DCP to AWS for AFI generation which will be packaged into a tar file.
12
+
Start by creating a bucket:
13
13
```
14
14
$ aws s3 mb s3://<bucket-name> --region us-east-1 # Create an S3 bucket (choose a unique bucket name)
15
-
$ aws s3 mb s3://<bucket-name>/<dcp-folder-name> # Create folder for your tarball files
16
15
$ touch FILES_GO_HERE.txt # Create a temp file
17
-
$ aws s3 cp FILES_GO_HERE.txt s3://<bucket-name>/<dcp-folder-name>/ # Which creates the folder on S3
16
+
$ aws s3 cp FILES_GO_HERE.txt s3://<bucket-name>/<dcp-folder-name>/ # Choose a dcp folder name
18
17
```
19
-
The AFI creation process will generate logs and will be placed in your S3 bucket. These logs can be used for debug if the AFI generation fails.
18
+
The AFI creation process will generate logs and will be placed in your S3 bucket. These logs can be used for debug if the AFI generation fails.
20
19
Next, create a folder for your log files:
21
20
```
22
-
$ aws s3 mb s3://<bucket-name>/<logs-folder-name> # Create a folder to keep your logs
23
21
$ touch LOGS_FILES_GO_HERE.txt # Create a temp file
24
-
$ aws s3 cp LOGS_FILES_GO_HERE.txt s3://<bucket-name>/<logs-folder-name>/ # Which creates the folder on S3
22
+
$ aws s3 cp LOGS_FILES_GO_HERE.txt s3://<bucket-name>/<logs-folder-name>/ # Choose a logs folder name
25
23
```
26
24
Once your AFI has been created successfully, you are free to delete the tar file and logs as needed. Deleting these files will not delete or modify your AFI.
0 commit comments