1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
###########################################
#
# System Configurator Sample Configuration
#
###########################################
# Use to following to use act upon an alternate root
ROOT = /tmp/sctests
[BOOT]
###########################################
#
# Boot global section.
#
###########################################
# device to be mounted as the root
ROOTDEV = /dev/sda5
# device to which boot image will be installed
BOOTDEV = /dev/sda
TIMEOUT = 50
# label of default boot image
DEFAULTBOOT = linux-multi
VGA = test
EXTRAS = go team
#APPEND = ""
###########################################
#
# Boot image section.
#
###########################################
[KERNEL0]
# the path to the image
PATH = /boot/vmlinuz
LABEL = linux-multi
INITRD = /boot/initrd-2.4.2-2.img
[KERNEL1]
PATH = /boot/vmlinuz
LABEL = linux-single
APPEND = "single"
# "ROOTDEV" are both "global" and per kernel
# specific
ROOTDEV = /dev/sda5
INITRD = /boot/initrd-2.4.2-2.img
###########################################
#
# Networking global section
#
###########################################
[NETWORK]
# Set up the default gateway
GATEWAY = 192.168.64.1
HOSTNAME = test
DOMAINNAME = dual.alpha.mycluster.big
DNS1 = 192.168.64.1
###########################################
#
# NIC section
#
###########################################
[INTERFACE0]
# TYPE can be static, dhcp, or bootp
TYPE = static
DEVICE = dummy0
IPADDR = 192.168.64.129
NETMASK = 255.255.255.0
[INTERFACE1]
# TYPE can be static, dhcp, or bootp
TYPE = dhcp
DEVICE = dummy1
[INTERFACE2]
# TYPE can be static, dhcp, or bootp
TYPE = bootp
DEVICE = dummy2
[INTERFACE3]
TYPE = static
DEVICE = dummy3
[KERNEL3]
PATH = /boot/vmlinuz
LABEL = linux-multi
INITRD = /boot/initrd-2.4.2-2.img
# The following options shouldn't parse at all (and are hear for sanity reasons)
BADOPTION = 1
[KERNEL00]
PATH = bad1
[KERNEL01]
PATH = bad2
[BADOPTION]
BADOPTION = 1
# The following options should only parse if kernels are cranked up
[KERNEL12]
PATH = dummy12
[KERNEL103]
PATH = dummy103
|