Ignore:
Timestamp:
05/21/2011 05:22:20 PM (13 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 12.2, 12.2-rc1, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/loongarch-12.2, xry111/mips64el, xry111/multilib, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
ff8773d
Parents:
c2db087
Message:

Multiple changes - cleanup and udev trigger - see changelog

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9544 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lsb-bootscripts/etc/default/rc

    rc2db087 rd93bdd1e  
    99# Source site specific rc configuration
    1010. /etc/default/rc.site
     11
     12# Set base directory information
     13RC_BASE="/etc"
     14
     15# Location of network device scripts and config files
     16NETWORK_DEVICES="/etc/network"
    1117
    1218# This sets default terminal options.
     
    3945CURS_UP="\\033[1A\\033[0G"   # Up one line, at the 0'th char
    4046
     47# Distro Information
     48DISTRO="Linux From Scratch" # The distro name
     49DISTRO_CONTACT="lfs-dev@linuxfromscratch.org" # Bug report address
     50DISTRO_MINI="lfs" # Short name used in filenames for distro config
     51
     52# Define custom colors used in messages printed to the screen
     53BRACKET="\\033[1;34m" # Blue
     54FAILURE="\\033[1;31m" # Red
     55INFO="\\033[1;36m"    # Cyan
     56NORMAL="\\033[0;39m"  # Grey
     57SUCCESS="\\033[1;32m" # Green
     58WARNING="\\033[1;33m" # Yellow
     59
     60# Prefix boot messages for easier reading on framebuffer consoles
     61PREFIX_SUCCESS=" ${SUCCESS}*${NORMAL} "
     62PREFIX_WARNING="${WARNING}**${NORMAL} "
     63PREFIX_FAILURE="${FAILURE}***${NORMAL}"
     64
    4165# Export the environment variables so they are inherited by the scripts
    42 export PATH SET_COL SET_WCOL CURS_UP BOOTLOG_ENAB
     66export RC_BASE NETWORK_DEVICES PATH SET_COL SET_WCOL CURS_UP
     67export DISTRO DISTRO_CONTACT DISTRO_MINI
     68export BRACKET FAILURE INFO NORMAL SUCCESS WARNING
     69export PREFIX_SUCCESS PREFIX_WARNING PREFIX_FAILURE
     70
     71# Interactive startup
     72dlen="29" # The total length of the distro welcome string
     73ilen="38" # The total length of the interactive message
     74welcome_message="Welcome to ${INFO}${DISTRO}${NORMAL}"
     75i_message="Press '${FAILURE}I${NORMAL}' to enter interactive startup"
     76
     77# Error message displayed when a script's exit value is not zero
     78print_error_msg()
     79{
     80    # ${link} and ${error_value} are defined by the rc script
     81    echo -e "${FAILURE}FAILURE:  You should not be reading this error message."
     82    echo -e ""
     83    echo -e -n "${FAILURE}It means that an unforseen error took place in"
     84    echo -e -n "${INFO} ${link}"
     85    echo -e "${FAILURE},"
     86    echo -e "${FAILURE}which exited with a return value of ${error_value}."
     87    echo -e ""
     88    echo -e -n "${FAILURE}If you are able to track this error down to a bug"
     89    echo -e "${FAILURE}in one of the files"
     90    echo -e -n "provided by ${INFO}${DISTRO}${FAILURE}, "
     91    echo -e -n "${FAILURE}please be so kind to inform us at "
     92    echo -e "${INFO}${DISTRO_CONTACT}${FAILURE}.${NORMAL}"
     93    echo -e ""
     94    echo -e "${INFO}Press Enter to continue..."
     95    echo -e "${NORMAL}"
     96    $FAILURE_ACTION
     97}
    4398
    4499# End /etc/default/rc
Note: See TracChangeset for help on using the changeset viewer.