source: bootscripts/lfs/sysconfig/rc.site@ 7c4d11a

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.9 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 7c4d11a was 7c4d11a, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Revise version-check.sh to flag bad /bin/sh symlinks

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

  • Property mode set to 100644
File size: 2.5 KB
Line 
1# rc.site
2# Optional parameters for boot scripts.
3
4# Distro Information
5# These values, if specified here, override the defaults
6#DISTRO="Linux From Scratch" # The distro name
7#DISTRO_CONTACT="lfs-dev@linuxfromscratch.org" # Bug report address
8#DISTRO_MINI="LFS" # Short name used in filenames for distro config
9
10# Define custom colors used in messages printed to the screen
11
12# Please consult `man console_codes` for more information
13# under the "ECMA-48 Set Graphics Rendition" section
14#
15# Warning: when switching from a 8bit to a 9bit font,
16# the linux console will reinterpret the bold (1;) to
17# the top 256 glyphs of the 9bit font. This does
18# not affect framebuffer consoles
19
20# These values, if specified here, override the defaults
21#BRACKET="\\033[1;34m" # Blue
22#FAILURE="\\033[1;31m" # Red
23#INFO="\\033[1;36m" # Cyan
24#NORMAL="\\033[0;39m" # Grey
25#SUCCESS="\\033[1;32m" # Green
26#WARNING="\\033[1;33m" # Yellow
27
28# Use a colored prefix
29# These values, if specified here, override the defaults
30#BMPREFIX=" "
31#SUCCESS_PREFIX="${SUCCESS} * ${NORMAL}"
32#FAILURE_PREFIX="${FAILURE}*****${NORMAL}"
33#WARNING_PREFIX="${WARNING} *** ${NORMAL}"
34
35# Manually seet the right edge of message output (characters)
36# Useful when resetting console font during boot to override
37# automatic screen width detection
38#COLUMNS=120
39
40# Interactive startup
41#IPROMPT="yes" # Whether to display the interactive boot prompt
42#itime="3" # The amount of time (in seconds) to display the prompt
43
44# The total length of the distro welcome string, without escape codes
45#wlen=$(echo "Welcome to ${DISTRO}" | wc -c )
46#welcome_message="Welcome to ${INFO}${DISTRO}${NORMAL}"
47
48# The total length of the interactive string, without escape codes
49#ilen=$(echo "Press 'I' to enter interactive startup" | wc -c )
50#i_message="Press '${FAILURE}I${NORMAL}' to enter interactive startup"
51
52# Set scripts to skip the file system check on reboot
53#FASTBOOT=yes
54
55# Skip reading from the console
56#HEADLESS=yes
57
58# Write out fsck progress if yes
59#VERBOSE_FSCK=no
60
61# Speed up boot without waiting for settle in udev
62#OMIT_UDEV_SETTLE=y
63
64# Speed up boot without waiting for settle in udev_retry
65#OMIT_UDEV_RETRY_SETTLE=yes
66
67# Skip cleaning /tmp if yes
68#SKIPTMPCLEAN=no
69
70# For setclock
71#UTC=1
72#CLOCKPARAMS=
73
74# For consolelog (Note that the default, 7=debug, is noisy)
75#LOGLEVEL=7
76
77# For network
78#HOSTNAME=mylfs
79
80# Delay between TERM and KILL signals at shutdown
81#KILLDELAY=3
82
83# Optional sysklogd parameters
84#SYSKLOGD_PARMS="-m 0"
85
86# Console parameters
87#UNICODE=1
88#KEYMAP="de-latin1"
89#KEYMAP_CORRECTIONS="euro2"
90#FONT="lat0-16 -m 8859-15"
91#LEGACY_CHARSET=
92
Note: See TracBrowser for help on using the repository browser.