diff options
author | bfox <bfox> | 2000-11-10 20:38:48 +0000 |
---|---|---|
committer | bfox <bfox> | 2000-11-10 20:38:48 +0000 |
commit | 40173c55acb1288470f37fe82c07ec0309dc0329 (patch) | |
tree | c0418acda0e4e3c9201a8a27babe57e062df04e9 | |
parent | c438abbdb9f6fcd79e38ab498025b84372210458 (diff) | |
download | anaconda-40173c55acb1288470f37fe82c07ec0309dc0329.tar.gz anaconda-40173c55acb1288470f37fe82c07ec0309dc0329.tar.xz anaconda-40173c55acb1288470f37fe82c07ec0309dc0329.zip |
Modified default option to start kernel in frame buffer mode.
Also created a new option called nofb that will start the kernel without
being in frame buffer mode.
-rwxr-xr-x | bootdisk/i386/syslinux.cfg | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bootdisk/i386/syslinux.cfg b/bootdisk/i386/syslinux.cfg index 2883c4e62..97db1a1de 100755 --- a/bootdisk/i386/syslinux.cfg +++ b/bootdisk/i386/syslinux.cfg @@ -10,7 +10,7 @@ F5 rescue.msg F7 snake.msg label linux kernel vmlinuz - append initrd=initrd.img devfs=nomount + append initrd=initrd.img devfs=nomount vga=787 label text kernel vmlinuz append initrd=initrd.img text devfs=nomount @@ -20,3 +20,6 @@ label expert label ks kernel vmlinuz append ks initrd=initrd.img devfs=nomount +label nofb + kernel vmlinuz + append initrd=initrd.img devfs=nomount
\ No newline at end of file |