source: bootscripts/contrib/lsb-v3/etc/default/rc@ dc55fb5e

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 dc55fb5e was dc55fb5e, checked in by DJ Lucas <dj@…>, 13 years ago

Changes per thread starting at http://archive.linuxfromscratch.org/mail-archives/lfs-dev/2011-May/064677.html

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

  • Property mode set to 100644
File size: 1.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# This sets default terminal options.
13# stty sane - this has been removed as nobody recalls
14# the reason for it in the first place - if no problems arize,
15# then it will be removed completely at a later date.
16
17# Setup default values for the environment
18umask 022
19PATH="/bin:/sbin"
20
21# Find current screen size
22if [ -z "${COLUMNS}" ]; then
23 COLUMNS=$(stty size)
24 COLUMNS=${COLUMNS##* }
25fi
26
27# When using remote connections, such as a serial port, stty size returns 0
28if [ "${COLUMNS}" = "0" ]; then
29 COLUMNS=80
30fi
31
32## Measurements for positioning result messages
33COL=$((${COLUMNS} - 8))
34WCOL=$((${COL} - 2))
35
36# Set Cursur Position Commands, used via echo -e
37SET_COL="\\033[${COL}G" # at the $COL char
38SET_WCOL="\\033[${WCOL}G" # at the $WCOL char
39CURS_UP="\\033[1A\\033[0G" # Up one line, at the 0'th char
40
41# Export the environment variables so they are inherited by the scripts
42export PATH SET_COL SET_WCOL CURS_UP BOOTLOG_ENAB
43
44# End /etc/default/rc
Note: See TracBrowser for help on using the repository browser.