root/floppyfw/files/syslinux.cfg-flash

Revision 1, 1.4 KB (checked in by root, 6 years ago)

First post

Line 
1#
2# $Id: syslinux.cfg-flash,v 1.3 2005/04/12 05:53:50 thomasez Exp $
3#
4# 0 is the first port, 1 is the second and so on.
5# the last argument is the speed.
6#
7# serial 0 19200
8default usb
9display floppyfw.msg
10label floppyfw
11  kernel vmlinuz
12 # Append stuff, usually the only stuff you might need to edit.
13 # Under this append line you can find two other options that can be added
14 # to the append line.
15
16append rw init=/linuxrc initrd=initrd.sq root=/dev/ram0 source=/dev/floppy/0
17
18# for HD/DOM
19label hd
20   kernel vmlinuz
21   append rw init=/linuxrc initrd=initrd.sq root=/dev/ram0 source=/dev/discs/disc0/part1
22
23#for USB disk
24label usb
25   kernel vmlinuz
26   append rw init=/linuxrc initrd=initrd.sq root=/dev/ram0 source=/dev/scsi/host0/bus0/target0/lun0/part1
27
28# You will get a terminal (getty) on the first serial port by default
29# even without setting anyting here (except when using PPP)
30
31# For console over serial port add this to the append line:
32# and also remove the comment in the serial line (line one in this file)
33# console=ttyS0,19200
34
35# If you are using a serial console and do not want to have any consoles
36# on the box screen:
37# console=ttyS0,19200,nomonitor
38
39# You may have the base floppyfw on a read-only device but would like to have
40# the config files (and ini files) on a RW media.
41# To do this, add "configdevice=/dev/<DEVICE>" to the append line above.
42# configdevice=/dev/floppy/0
43
Note: See TracBrowser for help on using the browser.