Creating /ect/lfs-release also in CLFS.
This commit is contained in:
parent
a110145fa5
commit
7f38b6d9a7
1 changed files with 4 additions and 12 deletions
|
@ -719,13 +719,13 @@ bootable_Makefiles() { #
|
||||||
#-----------------------------#
|
#-----------------------------#
|
||||||
echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) make bootable${R_arrow}"
|
echo "${tab_}${GREEN}Processing... ${L_arrow}(chroot) make bootable${R_arrow}"
|
||||||
|
|
||||||
for file in bootable/* ; do
|
for file in {bootable,the-end}/* ; do
|
||||||
# Keep the script file name
|
# Keep the script file name
|
||||||
this_script=`basename $file`
|
this_script=`basename $file`
|
||||||
|
|
||||||
# A little housekeeping on the scripts
|
# A little housekeeping on the scripts
|
||||||
case $this_script in
|
case $this_script in
|
||||||
*grub | *aboot | *colo | *silo | *arcload | *lilo ) continue ;;
|
*grub | *aboot | *colo | *silo | *arcload | *lilo | *reboot* ) continue ;;
|
||||||
*kernel) # if there is no kernel config file do not build the kernel
|
*kernel) # if there is no kernel config file do not build the kernel
|
||||||
[[ -z $CONFIG ]] && continue
|
[[ -z $CONFIG ]] && continue
|
||||||
# Copy the config file to /sources with a standardized name
|
# Copy the config file to /sources with a standardized name
|
||||||
|
@ -793,13 +793,13 @@ bm_bootable_Makefiles() { #
|
||||||
#-----------------------------#
|
#-----------------------------#
|
||||||
echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) make bootable${R_arrow}"
|
echo "${tab_}${GREEN}Processing... ${L_arrow}(boot) make bootable${R_arrow}"
|
||||||
|
|
||||||
for file in bootable/* ; do
|
for file in {bootable,the-end}/* ; do
|
||||||
# Keep the script file name
|
# Keep the script file name
|
||||||
this_script=`basename $file`
|
this_script=`basename $file`
|
||||||
|
|
||||||
# A little housekeeping on the scripts
|
# A little housekeeping on the scripts
|
||||||
case $this_script in
|
case $this_script in
|
||||||
*grub | *aboot | *colo | *silo | *arcload | *lilo ) continue ;;
|
*grub | *aboot | *colo | *silo | *arcload | *lilo | *reboot* ) continue ;;
|
||||||
*kernel) # if there is no kernel config file do not build the kernel
|
*kernel) # if there is no kernel config file do not build the kernel
|
||||||
[[ -z $CONFIG ]] && continue
|
[[ -z $CONFIG ]] && continue
|
||||||
# Copy the named config file to /sources with a standardized name
|
# Copy the named config file to /sources with a standardized name
|
||||||
|
@ -864,14 +864,6 @@ bm_bootable_Makefiles() { #
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-----------------------------#
|
|
||||||
the_end_Makefiles() { #
|
|
||||||
#-----------------------------#
|
|
||||||
echo "${tab_}${GREEN}Processing... ${L_arrow}THE END${R_arrow}"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#-----------------------------#
|
#-----------------------------#
|
||||||
build_Makefile() { # Construct a Makefile from the book scripts
|
build_Makefile() { # Construct a Makefile from the book scripts
|
||||||
#-----------------------------#
|
#-----------------------------#
|
||||||
|
|
Reference in a new issue