source: lsb-bootscripts/etc/default/rc@ d93bdd1e

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
Last change on this file since d93bdd1e was d93bdd1e, checked in by DJ Lucas <dj@…>, 13 years ago

Multiple changes - cleanup and udev trigger - see changelog

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

  • Property mode set to 100644
File size: 3.2 KB
Line 
1# Begin /etc/default/rc
2
3# Author: DJ Lucas - dj@linuxfromscratch.org
4# Version: 1.0 LSB V.3.1
5
6# Global variable inherited by initscripts are in caps
7# Local variables for the rc script are in lowercase
8
9# Source site specific rc configuration
10. /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"
17
18# This sets default terminal options.
19# stty sane - this has been removed as nobody recalls
20# the reason for it in the first place - if no problems arize,
21# then it will be removed completely at a later date.
22
23# Setup default values for the environment
24umask 022
25PATH="/bin:/sbin"
26
27# Find current screen size
28if [ -z "${COLUMNS}" ]; then
29 COLUMNS=$(stty size)
30 COLUMNS=${COLUMNS##* }
31fi
32
33# When using remote connections, such as a serial port, stty size returns 0
34if [ "${COLUMNS}" = "0" ]; then
35 COLUMNS=80
36fi
37
38## Measurements for positioning result messages
39COL=$((${COLUMNS} - 8))
40WCOL=$((${COL} - 2))
41
42# Set Cursur Position Commands, used via echo -e
43SET_COL="\\033[${COL}G" # at the $COL char
44SET_WCOL="\\033[${WCOL}G" # at the $WCOL char
45CURS_UP="\\033[1A\\033[0G" # Up one line, at the 0'th char
46
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
65# Export the environment variables so they are inherited by the scripts
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}
98
99# End /etc/default/rc
Note: See TracBrowser for help on using the repository browser.