diff --git a/SDAccel/docs/Setup_AWS_CLI_and_S3_Bucket.md b/SDAccel/docs/Setup_AWS_CLI_and_S3_Bucket.md index 288e6527e..6257e2e9a 100644 --- a/SDAccel/docs/Setup_AWS_CLI_and_S3_Bucket.md +++ b/SDAccel/docs/Setup_AWS_CLI_and_S3_Bucket.md @@ -8,19 +8,17 @@ The AWS SDAccel scripts require JSON output format and the scripts will not work ``` $ aws configure # to set your credentials (found in your console.aws.amazon.com page), region (us-east-1) and output (json) ``` -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. -Start by creating a bucket and a folder within your new bucket: +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. +Start by creating a bucket: ``` $ aws s3 mb s3:// --region us-east-1 # Create an S3 bucket (choose a unique bucket name) - $ aws s3 mb s3:/// # Create folder for your tarball files $ touch FILES_GO_HERE.txt # Create a temp file - $ aws s3 cp FILES_GO_HERE.txt s3://// # Which creates the folder on S3 + $ aws s3 cp FILES_GO_HERE.txt s3://// # Choose a dcp folder name ``` -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. +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. Next, create a folder for your log files: ``` - $ aws s3 mb s3:/// # Create a folder to keep your logs $ touch LOGS_FILES_GO_HERE.txt # Create a temp file - $ aws s3 cp LOGS_FILES_GO_HERE.txt s3://// # Which creates the folder on S3 + $ aws s3 cp LOGS_FILES_GO_HERE.txt s3://// # Choose a logs folder name ``` 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. diff --git a/Vitis/docs/Setup_AWS_CLI_and_S3_Bucket.md b/Vitis/docs/Setup_AWS_CLI_and_S3_Bucket.md index dae672967..5583b2ef4 100644 --- a/Vitis/docs/Setup_AWS_CLI_and_S3_Bucket.md +++ b/Vitis/docs/Setup_AWS_CLI_and_S3_Bucket.md @@ -8,19 +8,17 @@ The AWS Vitis scripts require JSON output format and the scripts will not work p ``` $ aws configure # to set your credentials (found in your console.aws.amazon.com page), region (us-east-1) and output (json) ``` -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. -Start by creating a bucket and a folder within your new bucket: +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. +Start by creating a bucket: ``` $ aws s3 mb s3:// --region us-east-1 # Create an S3 bucket (choose a unique bucket name) - $ aws s3 mb s3:/// # Create folder for your tarball files $ touch FILES_GO_HERE.txt # Create a temp file - $ aws s3 cp FILES_GO_HERE.txt s3://// # Which creates the folder on S3 + $ aws s3 cp FILES_GO_HERE.txt s3://// # Choose a dcp folder name ``` -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. +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. Next, create a folder for your log files: ``` - $ aws s3 mb s3:/// # Create a folder to keep your logs $ touch LOGS_FILES_GO_HERE.txt # Create a temp file - $ aws s3 cp LOGS_FILES_GO_HERE.txt s3://// # Which creates the folder on S3 + $ aws s3 cp LOGS_FILES_GO_HERE.txt s3://// # Choose a logs folder name ``` 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.