diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 812ea6d54..9699762bd 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -1,4 +1,4 @@
-
+e?xml version="1.0" encoding="ISO-8859-1"?>
@@ -36,6 +36,16 @@
-->
+
+ 2008-04-11
+
+
+ [bdubbs] - Updated host requirments to check for
+ symbolic links from sh, awk, and yacc.
+
+
+
+
2008-04-03
@@ -48,7 +58,7 @@
[jhuntwork] - Added patch for 256-byte inode support in GRUB.
- Fixes #2161.
+ Fixes #2161.
@@ -94,7 +104,7 @@
[ken] - Corrected typo in name of ru-ms keymap.
- [ken] - Updated Kbd to 1.13.
+ [ken] - Updated Kbd to 1.13.
@@ -118,13 +128,13 @@
[ken] - Updated Grep to 2.5.3, thanks to Matthew for the fix
- for automated builds.
+ for automated builds.
- [ken] - Updated Flex to 2.5.34.
+ [ken] - Updated Flex to 2.5.34.
- [ken] - Updated Module-Init-Tools to 3.4.
+ [ken] - Updated Module-Init-Tools to 3.4.
diff --git a/general.ent b/general.ent
index a93c8669d..120ecf5dd 100644
--- a/general.ent
+++ b/general.ent
@@ -1,6 +1,6 @@
-
-
+
+
diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml
index 434d86ee1..60adad78b 100644
--- a/prologue/hostreqs.xml
+++ b/prologue/hostreqs.xml
@@ -21,7 +21,8 @@
- Bash-2.05a
+ Bash-2.05a (/bin/sh
+ must be a symbolic or hard link to bash)
@@ -31,7 +32,8 @@
- Bison-1.875
+ Bison-1.875 (/usr/bin/yacc
+ must be a link to bison or small script that executes bison)
@@ -52,7 +54,8 @@
- Gawk-3.0
+ Gawk-3.0 (/usr/bin/awk
+ must be a link to gawk)
@@ -134,13 +137,16 @@ export LC_ALL=C
# Simple script to list version numbers of critical development tools
bash --version | head -n1 | cut -d" " -f2-4
+ls -l `which sh`
echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
bison --version | head -n1
+ls -l `which yacc`
bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f1,6-
echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2
diff --version | head -n1
find --version | head -n1
gawk --version | head -n1
+ls -l `which awk`
gcc --version | head -n1
/lib/libc.so.6 | head -n1 | cut -d" " -f1-7
grep --version | head -n1
@@ -150,7 +156,9 @@ make --version | head -n1
patch --version | head -n1
sed --version | head -n1
tar --version | head -n1
-makeinfo --version | head -n1
+makeinfo --version | head -n1
+
+
EOF