summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2009-10-01 20:52:46 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2009-10-01 20:52:46 +0200
commit5e32010188c26e643a7dff0f2405c88a045b9ade (patch)
tree20cc7110761d05bb02585ccfcff76b05eff1d71c
parented24af0ff03b3b00526fc642998f585ff96d2b2e (diff)
Fix typos.
-rw-r--r--README6
-rwxr-xr-xsummon-arm-toolchain12
2 files changed, 9 insertions, 9 deletions
diff --git a/README b/README
index f50c1c5..fb07c6f 100644
--- a/README
+++ b/README
@@ -3,9 +3,9 @@ REMEMBER!
THE RESULTING TOOLCHAIN IS FOR BARE BONE ARM PROCESSOR SOFTWARE. NOT FOR USE
WITH GLIBC OR THE LINUX KERNEL. DO NOT EVEN BOTHER TO ASK FOR THAT!
-To compile the arm toolchain for barebone arm devices:
+To compile the ARM toolchain for barebone ARM devices:
------------------------------------------------------
-* Edit the shellscript header to match your environment
+* Edit the shell script to match your environment
* Run it
* Profit
@@ -15,7 +15,7 @@ Currently tested and known to work target platforms:
Currently tested and known to work host platforms:
--------------------------------------------------
-* Linux 64bit (Debian Unstable)
+* Linux 64bit (Debian unstable)
* Mac OS X Leopard with MacPorts
Notes for Mac OS X users:
diff --git a/summon-arm-toolchain b/summon-arm-toolchain
index 58ae689..bf2059d 100755
--- a/summon-arm-toolchain
+++ b/summon-arm-toolchain
@@ -1,11 +1,11 @@
#!/bin/bash
# Written by Uwe Hermann <uwe@hermann-uwe.de>, released as public domain.
-# Modified by Piot Esden-Tempski <piotr@esden.net>, released as public domain.
+# Modified by Piotr Esden-Tempski <piotr@esden.net>, released as public domain.
-TARGET=arm-elf # Or: TARGET=arm-none-eabi
-PREFIX=${HOME}/arm-elf # Install location of your final toolchain
-PARALLEL="" # Or: PARALLEL="-j 5" for 4 CPU's
-DARWIN_OPT_PATH=/opt/local # Path in which MacPorts or Fink is installed
+TARGET=arm-elf # Or: TARGET=arm-none-eabi
+PREFIX=${HOME}/arm-elf # Install location of your final toolchain
+PARALLEL="" # Or: PARALLEL="-j 5" for 4 CPU's
+DARWIN_OPT_PATH=/opt/local # Path in which MacPorts or Fink is installed
BINUTILS=binutils-2.19.1
GCC=gcc-4.4.0
@@ -34,7 +34,7 @@ case "$(uname)" in
GDBFLAGS="--disable-werror"
;;
*)
- echo "Found Unknown OS. Aborting!"
+ echo "Found unknown OS. Aborting!"
exit 1
;;
esac