diff --git a/.travis.yml b/.travis.yml
index 1b7739a..fc541c3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -80,9 +80,9 @@ matrix:
- pip install "intelhex>=1.3,<=2.2.1"
script:
- cd getting-started
- - mbedtools checkout
- - echo mbedtools build -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE}
- - mbedtools build -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE}
+ - mbedtools deploy
+ - echo mbedtools compile -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE}
+ - mbedtools compile -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE}
- ccache -s
- cd ..
diff --git a/README.md b/README.md
index f7d006a..1185dc1 100644
--- a/README.md
+++ b/README.md
@@ -1,34 +1,46 @@

# Running Mbed Crypto examples on Mbed OS
-This repository contains a set of examples demonstrating the compilation and use of Mbed Crypto on Mbed OS.
-
-List of examples contained within this repository:
-* Example code snippets for using the library, with [documentation](https://github.com/ARMmbed/mbed-crypto/blob/development/docs/getting_started.md).
+This repository contains an example demonstrating the compilation and use of PSA Crypto on Mbed OS.
## Prerequisites
-* Install Mbed CLI
+This example requires the PSA Crypto API:
+* On TF-M targets, this API is provided by TF-M and always enabled.
+* On other targets, Mbed OS PSA can be enabled by adding `target.extra_labels_add": ["MBED_PSA_SRV"]`
+to `target_overrides` in [`getting-started/mbed_app.json`](./getting-started/mbed_app.json). Note that
+this cannot coexist with TF-M.
+
+## Mbed OS build tools
+
+### Mbed CLI 2
+Starting with version 6.5, Mbed OS uses Mbed CLI 2. It uses Ninja as a build system, and CMake to generate the build environment and manage the build process in a compiler-independent manner. If you are working with Mbed OS version prior to 6.5 then check the section [Mbed CLI 1](#mbed-cli-1).
+1. [Install Mbed CLI 2](https://os.mbed.com/docs/mbed-os/latest/build-tools/install-or-upgrade.html).
+1. From the command-line, import the example: `mbed-tools import mbed-os-example-mbed-crypto`
+
+### Mbed CLI 1
+1. [Install Mbed CLI 1](https://os.mbed.com/docs/mbed-os/latest/quick-start/offline-with-mbed-cli.html).
+1. From the command-line, import the example: `mbed import mbed-os-example-mbed-crypto`
+
+## Building and running
+
+1. Change the current directory to `mbed-os-example-mbed-crypto/getting-started`.
+1. Connect a USB cable between the USB port on the board and the host computer.
+1. Run the following command to build the example project, program the microcontroller flash memory and open a serial monitor:
-## Import
-The following are the steps required to install the application:
-1. Clone the repository: `git clone https://github.com/ARMmbed/mbed-os-example-mbed-crypto.git`
-1. Navigate to the "getting-started" example: `cd mbed-os-example-mbed-crypto/getting-started`
-1. Deploy the Mbed OS project: `mbed deploy`
+ * Mbed CLI 2
-## Compile
-To compile the example program use `mbed compile` while specifying the target platform and the compiler.
-For example, in order to compile using the ARM GCC compiler and a K64F target platform use: `mbed compile -m K64F -t GCC_ARM`.
+ ```bash
+ $ mbed-tools compile -m -t --flash --sterm
+ ```
-Once the compilation is completed successfully a binary file will be created: `./BUILD/K64F/GCC_ARM/getting-started.bin`
+ * Mbed CLI 1
-## Program your board
-1. Connect your Mbed device to the computer over USB.
-1. Copy the binary file (`getting-started.bin`) to the Mbed device.
+ ```bash
+ $ mbed compile -m -t --flash --sterm
+ ```
-## Run
-1. Connect to the Mbed Device using a serial client application of your choice.
-1. Press the reset button on the Mbed device to run the program.
+Your PC may take a few minutes to compile your code.
-The expected output from the first successful execution of the example program should be as follows:
+## Expected output
```
-- Begin Mbed Crypto Getting Started --
diff --git a/getting-started/mbed_app.json b/getting-started/mbed_app.json
index 5f5c43b..800d540 100644
--- a/getting-started/mbed_app.json
+++ b/getting-started/mbed_app.json
@@ -2,7 +2,7 @@
"target_overrides": {
"*": {
"platform.stdio-convert-newlines": true,
- "target.features_add" : ["EXPERIMENTAL_API"],
+ "target.features_add" : ["EXPERIMENTAL_API", "PSA"],
"target.components_remove": ["SD"]
}
},