Skip to content

Commit

Permalink
Remove redundant 'cd' - make cd into downloads folder explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
twilco committed May 26, 2019
1 parent 86eed60 commit 2f9ed76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _posts/2019-03-10-riscv-from-scratch-1.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ Next, let's install a RISC-V compatible copy of [OpenOCD](http://openocd.org/) a
1. Download prebuilt versions of the RISC-V OpenOCD and the RISC-V toolchain from here: <https://www.sifive.com/boards>
2. Move and extract these files into a directory of your choosing. I elected to create one called `~/usys/riscv` for this and other RISC-V toolchain / QEMU needs. Remember the directory you choose as we'll be using it both in this post and in the next.
{% highlight bash %}
mkdir -p ~/usys/riscv && cd ~/usys/riscv
mkdir -p ~/usys/riscv
cd ~/Downloads
cp openocd-<date>-<platform>.tar.gz ~/usys/riscv
cp riscv64-unknown-elf-gcc-<date>-<platform>.tar.gz ~/usys/riscv
cd ~/usys/riscv
Expand Down

0 comments on commit 2f9ed76

Please sign in to comment.