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```**