diff --git a/LICENSE b/LICENSE
index e5d082c115619658b4c130a604c5579455ed315a..2bc1319e18ca8f06a1d3f0d1339d41bd73d919ab 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) 2009-2013 Robert Nelson <robertcnelson@gmail.com>
+Copyright (c) 2009-2014 Robert Nelson <robertcnelson@gmail.com>
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in
diff --git a/README b/README
index f6e752ff6f76e104db6b31056f84ac2ce4424e4b..35c6288d37c94c4d3fbf1a3d5b5a5d521914f91f 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This just a simple set of scripts to rebuild a known working kernel for ARM devices..
+This is just a set of scripts to rebuild a known working kernel for ARM devices.
 
 Script Bugs: "bugs@rcn-ee.com"
 
@@ -7,17 +7,15 @@ Dependencies: GCC ARM Cross ToolChain
 Linaro:
 http://www.linaro.org/downloads/
 
-Angstrom:
-http://www.angstrom-distribution.org/simplified-development-setup
-
 Dependencies: Linux Kernel Source
 
-This git repo contains just scripts/patches to build a specific kernel for these
+This git repo contains just scripts/patches to build a specific kernel for some
 ARM devices. The kernel source will be downloaded when you run any of the build
 scripts.
 
-By default this script will clone the linux-stable tree, to ${DIR}/ignore/linux-src:
+By default this script will clone the linux-stable tree:
 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
+to: ${DIR}/ignore/linux-src:
 
 If you've already cloned torvalds tree and would like to save some hard drive
 space, just modify the LINUX_GIT variable in system.sh to point to your current
@@ -31,11 +29,11 @@ Optional: Build Debian Package:
 
 ./build_deb.sh
 
-Install Kernel Image to SD card: (requires MMC set in system.sh)
+Install Kernel Image to SD card: (requires MMC set in system.sh):
 
 ./tools/install_kernel.sh
 
-Install Kernel Image to local system (built on arm board):
+Install Kernel Image to local system (kernel was built on ARM board):
 
 ./tools/local_install.sh
 
diff --git a/tools/host_det.sh b/tools/host_det.sh
index 763227831a2d4bfefca9b53a80587168fd5c122f..430b98f507e4fd7f0ee5221b0e0cc94129af0694 100755
--- a/tools/host_det.sh
+++ b/tools/host_det.sh
@@ -275,41 +275,42 @@ debian_regs () {
 			;;
 		esac
 
+		unset error_unknown_deb_distro
 		case "${deb_distro}" in
 		squeeze|wheezy|jessie|sid)
-			#Supported Debian:
-			unset error_unknown_deb_distro
 			unset warn_eol_distro
 			;;
-		trusty|utopic)
-			#lts: trusty -> xyz
-			unset error_unknown_deb_distro
+		utopic)
+			#14.10
 			unset warn_eol_distro
 			;;
-		precise|quantal|saucy)
-			#lts: precise -> trusty
-			unset error_unknown_deb_distro
+		trusty)
+			#14.04: lts: trusty -> xyz
+			unset warn_eol_distro
+			;;
+		quantal|saucy)
+			#12.10|13.10
 			unset warn_eol_distro
 			;;
 		raring)
-			#EOL Ubuntu: between lts: precise -> trusty
-			unset error_unknown_deb_distro
+			#13.04
 			warn_eol_distro=1
 			;;
-		lucid)
-			#lts: lucid -> precise
-			unset error_unknown_deb_distro
+		precise)
+			#12.04: lts: precise -> trusty
 			unset warn_eol_distro
 			;;
 		maverick|natty|oneiric)
-			#EOL Ubuntu: between lts: lucid -> precise
-			unset error_unknown_deb_distro
+			#10.04|10.10|11.04
 			warn_eol_distro=1
 			stop_pkg_search=1
 			;;
+		lucid)
+			#10.04: lts: lucid -> precise
+			unset warn_eol_distro
+			;;
 		hardy)
-			#Old Ubuntu LTS: unsupported...
-			unset error_unknown_deb_distro
+			#8.04: lts: hardy -> lucid
 			warn_eol_distro=1
 			stop_pkg_search=1
 			;;