Subversion Repositories livecd

Rev

Rev 7 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 beyerle@PS 1
###############################################################
2
#
9 beyerle@PS 3
# Config file for the LiveCD build scripts
1 beyerle@PS 4
# 
5
# This file will be sourced
6
#
7
# Urs Beyerle, PSI
8
#
9
###############################################################
10
 
11
# KERNEL = Kernel version of the LiveCD. 
12
# Change it to "2.6.9-42.0.3.EL" for example, if you are 
13
# building the LiveCD with a different kernel than the one 
14
# you are actually running
15
# 
16
# if the SMP version of the $KERNEL is installed, 
9 beyerle@PS 17
# it will alos be included in the LiveCD
1 beyerle@PS 18
#KERNEL="`uname -r`"
9 beyerle@PS 19
KERNEL=2.6.9-42.0.3.EL
1 beyerle@PS 20
 
21
# Define default runlevel for your LiveCD
22
RUNLEVEL=5
23
 
24
# The size of the RAM disk (in KBytes)
25
# normally you do not have to change this
26
RAM0SIZE=10000
9 beyerle@PS 27
# to be save, we use RAM0SIZE+10 for ramdisk_size boot option
28
RAMDISK_SIZE=$(( $RAM0SIZE + 10 ))
1 beyerle@PS 29
 
30
# Define default boot options
31
# normally you do not have to change this
9 beyerle@PS 32
BOOT_OPTIONS="max_loop=32 vga=791 ramdisk_size=$RAMDISK_SIZE root=/dev/ram0 rw"
1 beyerle@PS 33
 
34
# Define extra boot parameters, for example: pw=mypassword kb=us
35
# for more, see http://linux.web.psi.ch/livecd/parameter.html
36
#EXTRA_BOOT_OPTIONS="nopasswd kb=sg-latin1"
37
 
38
# Define failsafe boot option
9 beyerle@PS 39
# used if you boot with lable "failsafe"
1 beyerle@PS 40
FAILSAFE_BOOT_OPTIONS="nonet simplex apm=off acpi=off nofstab"
41
 
42
# Define default desktop windows manager and default login manager
43
# (will be put in /etc/sysconfig/desktop)
44
#DESKTOP=KDE
45
#DISPLAYMANAGER=GNOME
46
 
47
# Services which are off (not running) on the LiveCD
48
SERVICES_OFF="microcode_ctl cups yum xinetd afs rhnsd nfslock ip6tables \
49
              mdmonitor mdmpd hpoj sendmail sshd portmap snmptrapd \
50
              snmpd smartd cups-config-daemon sysstat lm_sensors exim \
9 beyerle@PS 51
              ntpd httpd irqbalance firstboot clamd"
1 beyerle@PS 52
 
53
# Services which are on (running) on the LiveCD
54
SERVICES_ON="apmd acpid pcmcia haldaemon autofs"
55
 
56
# Most probably the LiveCD will not boot with SELinux enabled !  
57
# SELinux can also be disabled with boot parameter "enforcing=0"
58
SELINUX=disabled
59
#BOOT_OPTIONS="$BOOT_OPTIONS enforcing=0"
60
 
9 beyerle@PS 61
# Define LiveCD OS string
62
LIVECD_OS="SL4"