Subversion Repositories livecd

Rev

Rev 162 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 162 Rev 165
Line 50... Line 50...
50
# to be save, we use RAM0SIZE * 5 for ramdisk_size boot option
50
# to be save, we use RAM0SIZE * 5 for ramdisk_size boot option
51
RAMDISK_SIZE=$(( $RAM0SIZE * 5 ))
51
RAMDISK_SIZE=$(( $RAM0SIZE * 5 ))
52
 
52
 
53
# Define default boot options
53
# Define default boot options
54
# normally you do not have to change this
54
# normally you do not have to change this
55
BOOT_OPTIONS="max_loop=32 ramdisk_size=$RAMDISK_SIZE root=/dev/ram0 rw"
55
BOOT_OPTIONS="max_loop=32 ramdisk_size=$RAMDISK_SIZE root=/dev/ram0 rw rhgb"
56
 
56
 
57
# add vga=791 for SL4
57
# add vga=791 for SL4
58
[ "$OS_RELEASE" = "4" ] && BOOT_OPTIONS="$BOOT_OPTIONS vga=791"
58
[ "$OS_RELEASE" = "4" ] && BOOT_OPTIONS="$BOOT_OPTIONS vga=791"
59
 
59
 
60
# Define extra boot parameters, for example: pw=mypassword kb=us
60
# Define extra boot parameters, for example: pw=mypassword kb=us
61
# for more, see http://linux.web.psi.ch/livecd/parameter.html
61
# for more, see http://linux.web.psi.ch/livecd/parameter.html
62
#EXTRA_BOOT_OPTIONS="nopasswd kb=sg-latin1"
62
#EXTRA_BOOT_OPTIONS="nopasswd kb=sg-latin1"
63
EXTRA_BOOT_OPTIONS="rhgb"
63
EXTRA_BOOT_OPTIONS=""
64
 
64
 
65
# Define failsafe boot option
65
# Define failsafe boot option
66
# used if you boot with label "failsafe"
66
# used if you boot with label "failsafe"
67
FAILSAFE_BOOT_OPTIONS="nonet simplex apm=off acpi=off noapic nofstab"
67
FAILSAFE_BOOT_OPTIONS="nonet simplex apm=off acpi=off noapic nofstab"
68
 
68