From 4bb54c0c38e1f752e4b2cbc02beeec437fbe554b Mon Sep 17 00:00:00 2001 From: Duesentrieb71 Date: Wed, 5 Jun 2024 10:44:12 +0200 Subject: [PATCH] Highlight binary locations more in the readme --- README.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index da3ffc0..2265389 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,7 @@ docker build -t compile_fsbl . ```sh docker run -v ./embeddedsw:/fsbl compile_fsbl /bin/bash -c "cd lib/sw_apps/zynq_fsbl/src && make BOARD=zed SHELL=/bin/bash" ``` - -If you want, copy the fsbl.elf to the docker/compile_fsbl directory for easier access: -```sh -cp embeddedsw/lib/sw_apps/zynq_fsbl/src/fsbl.elf . -``` +**Binary can be found at ```embeddedsw/lib/sw_apps/zynq_fsbl/src/fsbl.elf```** ## mission_rust @@ -40,7 +36,7 @@ docker build -t compile_mission . ```sh docker run -v $(pwd)/../../mission_rust:/mission_rust compile_mission /bin/bash -c "cargo build -Z build-std" ``` - +**Library can be found at ```mission_rust/target/armv7a-none-eabihf/debug/libmission_rust.a```** ## obsw @@ -58,10 +54,9 @@ docker build -t compile_obsw . ##### To build the obsw, run the following command in the `docker/compile_obsw` directory: ```sh -docker run -v $(pwd)/../..:/obsw compile_obsw /bin/bash -c "mkdir -p build_cli && cd build_cli && cmake -DCMAKE_TOOLCHAIN_FILE=../bsp_z7/cmake/arm-none-eabi.toolchain .. && make -j 8" +docker run -v $(pwd)/../..:/obsw compile_obsw /bin/bash -c "mkdir -p build_cli && cd build_cli && cmake -DCMAKE_TOOLCHAIN_FILE=../bsp_z7/cmake/arm-none-eabi.toolchain .. && make -j" ``` - -The romeo-obsw binary can now be found in the `build_cli` directory. +**romeo-obsw binary can be found at ```build_cli/romeo-obsw```**