source: lsb-bootscripts/etc/default/rc.site@ 63a2c2d

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 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/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 63a2c2d was 63a2c2d, checked in by DJ Lucas <dj@…>, 13 years ago

Moved BOOK/bootscripts/contrib/lsb-v3 to BOOK/lsb-bootscripts.

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

  • Property mode set to 100644
File size: 2.6 KB
Line 
1# Set base directory information
2RC_BASE="/etc"
3RC_FUNCTIONS="${RC_BASE}/init.d/lfs-functions"
4
5# Location of network device scripts and config files
6NETWORK_DEVICES="/etc/network"
7
8# Bootlogging (requires a tempfs mount)
9BOOTLOG_ENAB="yes"
10
11# Hostname
12HOSTNAME=<lfs>
13
14# System time variables
15UTC=1
16CLOCKPARAMS=
17
18# Manual input is not appropriate on remote systems. Define what happens when
19# an error is encountered that interupts the boot/shutdown proceess
20FAILURE_ACTION="read ENTER"
21
22# Distro Information
23DISTRO="Linux From Scratch" # The distro name
24DISTRO_CONTACT="lfs-dev@linuxfromscratch.org" # Bug report address
25DISTRO_MINI="lfs" # Short name used in filenames for distro config
26
27# Define custom colors used in messages printed to the screen
28BRACKET="\\033[1;34m" # Blue
29FAILURE="\\033[1;31m" # Red
30INFO="\\033[1;36m" # Cyan
31NORMAL="\\033[0;39m" # Grey
32SUCCESS="\\033[1;32m" # Green
33WARNING="\\033[1;33m" # Yellow
34
35# Prefix boot messages for easier reading on framebuffer consoles
36PREFIX_SUCCESS=" ${SUCCESS}*${NORMAL} "
37PREFIX_WARNING="${WARNING}**${NORMAL} "
38PREFIX_FAILURE="${FAILURE}***${NORMAL}"
39
40# Export varialbles so that they are inherited by the initscripts
41export RC_BASE RC_FUNCTIONS NETWORK_DEVICES BOOTLOG_ENAB
42export HOSTNAME UTC CLOCKPARAMS FAILURE_ACTION
43export DISTRO DISTRO_CONTACT DISTRO_MINI
44export BRACKET FAILURE INFO NORMAL SUCCESS WARNING
45export PREFIX_SUCCESS PREFIX_WARNING PREFIX_FAILURE
46
47# Interactive startup
48iprompt="yes" # Wether to display the interactive boot promp
49itime="2" # The ammount of time (in seconds) to display the prompt
50dlen="29" # The total length of the distro welcome string
51ilen="38" # The total length of the interactive message
52welcome_message="Welcome to ${INFO}${DISTRO}${NORMAL}"
53i_message="Press '${FAILURE}I${NORMAL}' to enter interactive startup"
54
55# Error message displayed when a script's exit value is not zero
56print_error_msg()
57{
58 # ${link} and ${error_value} are defined by the rc script
59 echo -e "${FAILURE}FAILURE: You should not be reading this error message."
60 echo -e ""
61 echo -e -n "${FAILURE}It means that an unforseen error took place in"
62 echo -e -n "${INFO} ${link}"
63 echo -e "${FAILURE},"
64 echo -e "${FAILURE}which exited with a return value of ${error_value}."
65 echo -e ""
66 echo -e -n "${FAILURE}If you are able to track this error down to a bug"
67 echo -e "${FAILURE}in one of the files"
68 echo -e -n "provided by ${INFO}${DISTRO}${FAILURE}, "
69 echo -e -n "${FAILURE}please be so kind to inform us at "
70 echo -e "${INFO}${DISTRO_CONTACT}${FAILURE}.${NORMAL}"
71 echo -e ""
72 echo -e "${INFO}Press Enter to continue..."
73 echo -e "${NORMAL}"
74 $FAILURE_ACTION
75}
76
77
Note: See TracBrowser for help on using the repository browser.