Subversion Repositories livecd

Rev

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

Rev 187 Rev 190
Line 62... Line 62...
62
# To be save, we use RAM0SIZE * 5 for ramdisk_size boot option
62
# To be save, we use RAM0SIZE * 5 for ramdisk_size boot option
63
RAMDISK_SIZE=$(( $RAM0SIZE * 5 ))
63
RAMDISK_SIZE=$(( $RAM0SIZE * 5 ))
64
 
64
 
65
# Define default boot options
65
# Define default boot options
66
# normally you do not have to change this
66
# normally you do not have to change this
67
BOOT_OPTIONS="max_loop=32 ramdisk_size=$RAMDISK_SIZE root=/dev/ram0 rw rhgb"
67
BOOT_OPTIONS="max_loop=32 ramdisk_size=$RAMDISK_SIZE root=/dev/ram0 rw"
68
 
68
 
69
# Add vga=791 for SL4
69
# Add vga=791 for SL4
70
[ "$OS_RELEASE" = "4" ] && BOOT_OPTIONS="$BOOT_OPTIONS vga=791"
70
[ "$OS_RELEASE" = "4" ] && BOOT_OPTIONS="$BOOT_OPTIONS vga=791"
71
 
71
 
-
 
72
# Add rhgb for SL5
-
 
73
[ "$OS_RELEASE" = "5" ] && BOOT_OPTIONS="$BOOT_OPTIONS rhgb"
-
 
74
 
-
 
75
 
72
# Define extra boot parameters, for example: pw=mypassword kb=us
76
# Define extra boot parameters, for example: pw=mypassword kb=us
73
# for more, see http://linux.web.psi.ch/livecd/parameter.html
77
# for more, see http://linux.web.psi.ch/livecd/parameter.html
74
#EXTRA_BOOT_OPTIONS="nopasswd kb=sg-latin1"
78
#EXTRA_BOOT_OPTIONS="nopasswd kb=sg-latin1"
75
EXTRA_BOOT_OPTIONS=""
79
EXTRA_BOOT_OPTIONS=""
76
 
80