source: bootscripts/lfs/sysconfig/rc.site@ e6b6261

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.7 7.8 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 e6b6261 was a93258d, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Update minimum kernel requirement for the host
Minor edit in rc.sit requiring bootscript update.

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

  • Property mode set to 100644
File size: 2.3 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# Interactive startup
36#IPROMPT="yes" # Whether to display the interactive boot prompt
37#itime="3" # The amount of time (in seconds) to display the prompt
38
39# The total length of the distro welcome string, without escape codes
40#wlen=$(echo "Welcome to ${DISTRO}" | wc -c )
41#welcome_message="Welcome to ${INFO}${DISTRO}${NORMAL}"
42
43# The total length of the interactive string, without escape codes
44#ilen=$(echo "Press 'I' to enter interactive startup" | wc -c )
45#i_message="Press '${FAILURE}I${NORMAL}' to enter interactive startup"
46
47# Set scripts to skip the file system check on reboot
48#FASTBOOT=yes
49
50# Skip reading from the console
51#HEADLESS=yes
52
53# Write out fsck progress if yes
54#VERBOSE_FSCK=no
55
56# Speed up boot without waiting for settle in udev
57#OMIT_UDEV_SETTLE=y
58
59# Speed up boot without waiting for settle in udev_retry
60#OMIT_UDEV_RETRY_SETTLE=yes
61
62# Skip cleaning /tmp if yes
63#SKIPTMPCLEAN=no
64
65# For setclock
66#UTC=1
67#CLOCKPARAMS=
68
69# For consolelog
70#LOGLEVEL=5
71
72# For network
73#HOSTNAME=mylfs
74
75# Delay between TERM and KILL signals at shutdown
76#KILLDELAY=3
77
78# Optional sysklogd parameters
79#SYSKLOGD_PARMS="-m 0"
80
81# Console parameters
82#UNICODE=1
83#KEYMAP="de-latin1"
84#KEYMAP_CORRECTIONS="euro2"
85#FONT="lat0-16 -m 8859-15"
86#LEGACY_CHARSET=
87
Note: See TracBrowser for help on using the repository browser.