Deleted Added
full compact
NOTES (163531) NOTES (163535)
1# $FreeBSD: head/sys/conf/NOTES 163531 2006-10-20 08:56:26Z des $
1# $FreeBSD: head/sys/conf/NOTES 163535 2006-10-20 09:52:27Z des $
2#
3# NOTES -- Lines that can be cut/pasted into kernel and hints configs.
4#
5# Lines that begin with 'device', 'options', 'machine', 'ident', 'maxusers',
6# 'makeoptions', 'hints', etc. go into the kernel configuration that you
7# run config(8) with.
8#
9# Lines that begin with 'hint.' are NOT for config(8), they go into your

--- 1211 unchanged lines hidden (view full) ---

1221# For ISA the required hints are listed.
1222# EISA, MCA, PCI and pccard are self identifying buses, so no hints
1223# are needed.
1224
1225#
1226# Mandatory devices:
1227#
1228
2#
3# NOTES -- Lines that can be cut/pasted into kernel and hints configs.
4#
5# Lines that begin with 'device', 'options', 'machine', 'ident', 'maxusers',
6# 'makeoptions', 'hints', etc. go into the kernel configuration that you
7# run config(8) with.
8#
9# Lines that begin with 'hint.' are NOT for config(8), they go into your

--- 1211 unchanged lines hidden (view full) ---

1221# For ISA the required hints are listed.
1222# EISA, MCA, PCI and pccard are self identifying buses, so no hints
1223# are needed.
1224
1225#
1226# Mandatory devices:
1227#
1228
1229# The keyboard controller; it controls the keyboard and the PS/2 mouse.
1230device atkbdc
1231hint.atkbdc.0.at="isa"
1232hint.atkbdc.0.port="0x060"
1233
1234# The AT keyboard
1235device atkbd
1236hint.atkbd.0.at="atkbdc"
1237hint.atkbd.0.irq="1"
1238
1239# Options for atkbd:
1240options ATKBD_DFLT_KEYMAP # specify the built-in keymap
1241makeoptions ATKBD_DFLT_KEYMAP=jp.106
1242
1243# These options are valid for other keyboard drivers as well.
1244options KBD_DISABLE_KEYMAP_LOAD # refuse to load a keymap
1245options KBD_INSTALL_CDEV # install a CDEV entry in /dev
1246
1229# These options are valid for other keyboard drivers as well.
1230options KBD_DISABLE_KEYMAP_LOAD # refuse to load a keymap
1231options KBD_INSTALL_CDEV # install a CDEV entry in /dev
1232
1247# `flags' for atkbd:
1248# 0x01 Force detection of keyboard, else we always assume a keyboard
1249# 0x02 Don't reset keyboard, useful for some newer ThinkPads
1250# 0x03 Force detection and avoid reset, might help with certain
1251# dockingstations
1252# 0x04 Old-style (XT) keyboard support, useful for older ThinkPads
1253
1254# PS/2 mouse
1255device psm
1256hint.psm.0.at="atkbdc"
1257hint.psm.0.irq="12"
1258
1259# Options for psm:
1260options PSM_HOOKRESUME #hook the system resume event, useful
1261 #for some laptops
1262options PSM_RESETAFTERSUSPEND #reset the device at the resume event
1263
1264# Video card driver for VGA adapters.
1265device vga
1266hint.vga.0.at="isa"
1267
1268# Options for vga:
1269# Try the following option if the mouse pointer is not drawn correctly
1270# or font does not seem to be loaded properly. May cause flicker on
1271# some systems.
1272options VGA_ALT_SEQACCESS
1273
1274# If you can dispense with some vga driver features, you may want to
1275# use the following options to save some memory.
1276#options VGA_NO_FONT_LOADING # don't save/load font
1277#options VGA_NO_MODE_CHANGE # don't change video modes
1278
1279# Older video cards may require this option for proper operation.
1280options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
1281
1282# The following option probably won't work with the LCD displays.
1283options VGA_WIDTH90 # support 90 column modes
1284
1285options FB_DEBUG # Frame buffer debugging
1286
1233options FB_DEBUG # Frame buffer debugging
1234
1287device splash # Splash screen and screen saver support
1288
1289# Various screen savers.
1290device blank_saver
1291device daemon_saver
1292device dragon_saver
1293device fade_saver
1294device fire_saver
1295device green_saver
1296device logo_saver
1297device rain_saver
1298device snake_saver
1299device star_saver
1300device warp_saver
1301
1302# The syscons console driver (SCO color console compatible).
1303device sc
1304hint.sc.0.at="isa"
1305options MAXCONS=16 # number of virtual consoles
1306options SC_ALT_MOUSE_IMAGE # simplified mouse cursor in text mode
1307options SC_DFLT_FONT # compile font in
1308makeoptions SC_DFLT_FONT=cp850
1309options SC_DISABLE_KDBKEY # disable `debug' key

--- 1301 unchanged lines hidden ---
1235# The syscons console driver (SCO color console compatible).
1236device sc
1237hint.sc.0.at="isa"
1238options MAXCONS=16 # number of virtual consoles
1239options SC_ALT_MOUSE_IMAGE # simplified mouse cursor in text mode
1240options SC_DFLT_FONT # compile font in
1241makeoptions SC_DFLT_FONT=cp850
1242options SC_DISABLE_KDBKEY # disable `debug' key

--- 1301 unchanged lines hidden ---