Index: CLFS/master.sh
===================================================================
--- CLFS/master.sh	(revision 3791)
+++ CLFS/master.sh	(working copy)
@@ -358,6 +358,7 @@
     case $this_script in
       *kernel)        name=linux                   ;;
       *bootscripts)   name="bootscripts-cross-lfs" ;;
+      *boot-scripts)   name="boot-scripts-cross-lfs" ;;
       *udev-rules)    name="udev-cross-lfs"        ;;
       *grub-build)    name=grub                    ;;
       *-aboot-build)  name=aboot                   ;;
@@ -611,7 +612,11 @@
     echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) bootscripts     ( ROOT ) ${R_arrow}"
   fi
 
-  for file in bootscripts/* ; do
+  if [ -e bootscripts ]; then config="bootscripts";
+    else config="system-config";
+  fi
+
+  for file in $config/* ; do
     # Keep the script file name
     this_script=`basename $file`
 
