diff --git a/README.md b/README.md
index e9bc757a..297a4b61 100644
--- a/README.md
+++ b/README.md
@@ -18,45 +18,40 @@ In the future, these things will just be bundled with eSF. The problem with some
### Toolchains
-Loose naming convention for toolchains:
+Loose naming convention for toolchains:
`----`
- arm-none-eabi:
- Toolchain targetting the embedded ABI for arm
- - Debian/Ubuntu:
+ - Debian/Ubuntu:
`
sudo apt-get install gcc-arm-none-eabi binutils-arm-none-eabi gdb-arm-none-eabi
`
- - **NOTE:** If you run into an issue when running arm-none-eabi-gdb where it needs libncurses.so.5 on Ubuntu/Debian, install this package:
+ - **NOTE:** If you run into an issue when running arm-none-eabi-gdb where it needs libncurses.so.5 on Ubuntu/Debian, install this package:
`
sudo apt-get install libncurses5
`
- - Arch
+ - Arch:
`
sudo pacman -S arm-none-eabi-binutils arm-none-eabi-gcc arm-none-eabi-gdb arm-none-eabi-newlib
`
- Gentoo:
- See this wiki [here](https://wiki.gentoo.org/wiki/How_to_build_a_toolchain_for_arm_cortex-m_and_cortex-r).
-
-
- avr-\*
- Ubuntu/Debian: (To be added)
-
- - Arch:
-
+ - Arch:
`
sudo pacman -S avr-binutils avr-gcc avr-gdb avr-libc avrdude
`
- Gentoo:
- - Install via [crossdev](https://wiki.gentoo.org/wiki/Crossdev):
-
- `
- crossdev -s4 --stable --portage --verbose --target avr
- `
+ - Install via [crossdev](https://wiki.gentoo.org/wiki/Crossdev):
+ `
+ crossdev -s4 --stable --portage --verbose --target avr
+ `
#### OpenOCD