#!/bin/sh


######################################################################
### Network device config.
## Comment this section out if you don't want network support configured.
##

# Set this to yes if you want to get your ip via DHCP.
# If DHCP is set to "yes" the following network specific parameters
# have no effect.
DHCP="yes"

# Set this to yes if you want that the network will be configured according 
# to your current ifconfig automagically.
# If this is set to yes the following three parameters (INET, NETMASK, GATEWAY)
# have no effect.
NETWORKAUTOCONFIG="no"

# IP
INET="192.168.0.22"

# subnet mask
NETMASK="255.255.255.0"

# Default gateway.
# You can leave this blank if you don't use a default gateway.
GATEWAY="192.168.0.1"

# The nameserver you want to use.
NAMESERVER=""


######################################################################
### Modules
## Comment this section out if you don't want module support configured.
##

# A list of modules which should be loaded at boot time.
# example:
# pcnet32,io=0x300,irq=10 rtl8139,io=0x200
MODULES=""


######################################################################
### GPM mouse config.
## On /dev/ttyS0 runs a getty to provide a serial console, so you cannot
## put your mouse on /dev/ttyS0 !
## Comment this section out if you don't want mouse support configured.
##

MOUSEPORT="/dev/input/mice"
MOUSETYPE="autops2"
MOUSEREPEATTYPE=""
MOUSRESPONSIVENESS=""
MOUSEAPPEND=""

######################################################################
### Some more options to go.
##

# Password for the rescue system.
PASSWD="rescue"
