You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
#!/bin/ash
PATH = "/usr/sbin:/usr/bin:/sbin:/bin"
# Insert ctrl character
# ctrl-V then esc will print ^[
# ctrl-V then ctrl-shift-m will print ^M
BACK_UP = "\033[1K\033[0G"
NORMAL = "\033[0m"
WARN = "\033[33;1m"
BAD = "\033[31;1m"
BOLD = "\033[1m"
GOOD = "\033[32;1m"
# From KNOPPIX LINUXRC
# Reset fb color mode
RESET = " ]R"
# ANSI COLORS
# Erase to end of line
CRE = "
[K"
# Clear and reset Screen
CLEAR = " c"
# Normal color
NORMAL = " [0;39m"
# RED: Failure or error message
RED = " [1;31m"
# GREEN: Success message
GREEN = " [1;32m"
# YELLOW: Descriptions
YELLOW = " [1;33m"
# BLUE: System mesages
BLUE = " [1;34m"
# MAGENTA: Found devices or drivers
MAGENTA = " [1;35m"
# CYAN: Questions
CYAN = " [1;36m"
# BOLD WHITE: Hint
WHITE = " [1;37m"
# Clear screen with colormode reset
# echo "$CLEAR$RESET"
# echo "$CLEAR"
# Just go to the top of the screen
# echo -n " [H [J"
KV = ` uname -r`
KMAJOR = ` echo $KV | cut -f1 -d.`
KMINOR = ` echo $KV | cut -f2 -d.`
KVER = " ${ KMAJOR } . ${ KMINOR } "
MISCOPTS = 'debug detect'
QUIET = '1'
ROOT_LINKS = 'bin sbin lib lib32 lib64 boot usr opt emul'
ROOT_TREES = 'etc root home var'
KSUFF = '.ko'
UDEVD = '/sbin/udevd'
MDEVD = '/sbin/mdev'
INITRD_SPLASH = '/etc/initrd.splash'
PLYMOUTHD_BIN = '/sbin/plymouthd'
PLYMOUTH_BIN = '/bin/plymouth'
REAL_ROOT = ''
CONSOLE = '/dev/console'
NEW_ROOT = '/newroot'
CDROOT = '0'
CDROOT_DEV = ''
CDROOT_TYPE = 'auto'
CDROOT_PATH = '/mnt/cdrom'
# This is the file that the cdroot will be checked for as a
# marker. It must exist RELATIVE to the cdroot.
CDROOT_MARKER = '/livecd'
LOOPS = '/livecd.loop /zisofs /livecd.squashfs /image.squashfs /livecd.gcloop'
DEFAULT_NFSOPTIONS = "ro,nolock,rsize=1024,wsize=1024"
# Only sections that are in by default or those that
# are not module groups need to be defined here...
HWOPTS = 'keymap cache modules pata sata scsi usb firewire waitscan lvm dmraid mdadm fs net'
MY_HWOPTS = 'modules pata sata scsi usb firewire waitscan dmraid mdadm fs net iscsi crypto plymouth'