From b871e10d083cb88d10db7b346c472e2d0ab35629 Mon Sep 17 00:00:00 2001 From: StoyanDimitrov Date: Mon, 2 Sep 2019 20:34:20 +0000 Subject: [PATCH] Highlight command and few file names --- docs/solo/customization.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/solo/customization.md b/docs/solo/customization.md index 601a576..4826c74 100644 --- a/docs/solo/customization.md +++ b/docs/solo/customization.md @@ -115,7 +115,7 @@ If the checks succeed, you are ready to program the device attestation key and c ### Programming an attestation key and certificate Convert the DER format of the device attestation certificate to "C" bytes using our utility script. You may first need to -first install prerequisite python modules (pip install -r tools/requirements.txt). +first install prerequisite python modules (`pip install -r tools/requirements.txt`). ``` python tools/gencert/cbytes.py device_cert.der @@ -123,7 +123,7 @@ python tools/gencert/cbytes.py device_cert.der Copy the byte string portion into the [`attestation.c` source file of Solo](https://github.com/solokeys/solo/blob/master/targets/stm32l432/src/attestation.c). Overwrite the development or "default" certificate that is already there. -Now [build the Solo firmware](/solo/building), either a secure or hacker build. You will need to produce a bootloader.hex file and a solo.hex file. +Now [build the Solo firmware](/solo/building), either a secure or hacker build. You will need to produce a `bootloader.hex` file and a `solo.hex` file. Print your attestation key in a hex string format. @@ -131,11 +131,11 @@ Print your attestation key in a hex string format. python tools/print_x_y.py device_key.pem ``` -Merge the bootloader.hex, solo.hex, and attestion key into one firmware file. +Merge the `bootloader.hex`, `solo.hex`, and attestion key into one firmware file. ``` solo mergehex --attestation-key bootloader.hex solo.hex all.hex ``` -Now you have a newly create `all.hex` file with a custom attestation key. You can [program this all.hex file -with Solo in DFU mode](/solo/programming#procedure). \ No newline at end of file +Now you have a newly create `all.hex` file with a custom attestation key. You can [program this `all.hex` file +with Solo in DFU mode](/solo/programming#procedure).