# as published by the Free Software Foundation; either version
 # 2 of the License, or (at your option) any later version.
 
-# This script checks the relcoations of a vmlinux for "suspicious"
+# This script checks the relocations of a vmlinux for "suspicious"
 # relocations.
 
 use strict;
 while (<FD>) {
        study $_;
 
-       # Only look at relcoation lines.
+       # Only look at relocation lines.
        next if (!/\s+R_/);
 
        # These relocations are okay
                 /\bR_PPC_ADDR16_HA\b/ or /\bR_PPC_RELATIVE\b/ or
                 /\bR_PPC_NONE\b/);
 
-       # If we see this type of relcoation it's an idication that
+       # If we see this type of relocation it's an idication that
        # we /may/ be using an old version of binutils.
        if (/R_PPC64_UADDR64/) {
                $old_binutils++;
 }
 
 if ($old_binutils) {
-       print "WARNING: You need at binutils >= 2.19 to build a ".
-             "CONFIG_RELCOATABLE kernel\n";
+       print "WARNING: You need at least binutils >= 2.19 to build a ".
+             "CONFIG_RELOCATABLE kernel\n";
 }