1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
2001-08-02 23:54:23 +00:00
|
|
|
# Options specific to the Alpha platform kernels
|
1998-06-10 10:57:29 +00:00
|
|
|
|
|
|
|
EV5 opt_global.h
|
1998-08-20 08:27:11 +00:00
|
|
|
EV4 opt_global.h
|
2000-05-07 04:58:32 +00:00
|
|
|
DEC_KN300 opt_cpu.h
|
1998-06-10 10:57:29 +00:00
|
|
|
DEC_KN8AE opt_cpu.h
|
1998-07-12 16:28:09 +00:00
|
|
|
DEC_EB164 opt_cpu.h
|
1999-01-18 20:26:50 +00:00
|
|
|
DEC_EB64PLUS opt_cpu.h
|
1998-07-22 08:24:39 +00:00
|
|
|
DEC_KN20AA opt_cpu.h
|
Lots of changes, including:
* Support for AlphaStation 200, 250, 255, 400
* Untested support for UDB, Multia, AXPpci33 (Noname)
* Support for Personal Workstation 433a/433au, 500a/500au, 600a/600au (Miata)
* Some minor fixes and improvements to interrupt handling.
Submitted by: Andrew Gallatin <gallatin@cs.duke.edu> (AS200, Miata)
Obtained from: NetBSD (some code for AS200, Miata, Noname)
1998-08-10 07:53:59 +00:00
|
|
|
DEC_2100_A50 opt_cpu.h
|
2000-05-28 02:52:54 +00:00
|
|
|
DEC_2100_A500 opt_cpu.h
|
Lots of changes, including:
* Support for AlphaStation 200, 250, 255, 400
* Untested support for UDB, Multia, AXPpci33 (Noname)
* Support for Personal Workstation 433a/433au, 500a/500au, 600a/600au (Miata)
* Some minor fixes and improvements to interrupt handling.
Submitted by: Andrew Gallatin <gallatin@cs.duke.edu> (AS200, Miata)
Obtained from: NetBSD (some code for AS200, Miata, Noname)
1998-08-10 07:53:59 +00:00
|
|
|
DEC_ST550 opt_cpu.h
|
1999-05-27 22:03:31 +00:00
|
|
|
DEC_ST6600 opt_cpu.h
|
Lots of changes, including:
* Support for AlphaStation 200, 250, 255, 400
* Untested support for UDB, Multia, AXPpci33 (Noname)
* Support for Personal Workstation 433a/433au, 500a/500au, 600a/600au (Miata)
* Some minor fixes and improvements to interrupt handling.
Submitted by: Andrew Gallatin <gallatin@cs.duke.edu> (AS200, Miata)
Obtained from: NetBSD (some code for AS200, Miata, Noname)
1998-08-10 07:53:59 +00:00
|
|
|
DEC_AXPPCI_33 opt_cpu.h
|
1999-12-01 15:25:04 +00:00
|
|
|
DEC_1000A opt_cpu.h
|
2000-06-19 21:15:45 +00:00
|
|
|
API_UP1000 opt_cpu.h
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2003-08-25 03:43:08 +00:00
|
|
|
NO_SIO opt_global.h
|
|
|
|
|
2001-09-10 07:03:59 +00:00
|
|
|
MAXMEM
|
|
|
|
|
2000-05-14 13:47:57 +00:00
|
|
|
PPC_PROBE_CHIPSET opt_ppc.h
|
|
|
|
PPC_DEBUG opt_ppc.h
|
|
|
|
|
2002-08-22 19:52:16 +00:00
|
|
|
DEV_SC
|
1998-07-22 08:24:39 +00:00
|
|
|
|
1999-01-23 16:53:30 +00:00
|
|
|
VGA_ALT_SEQACCESS opt_vga.h
|
|
|
|
VGA_DEBUG opt_vga.h
|
|
|
|
VGA_NO_FONT_LOADING opt_vga.h
|
|
|
|
VGA_NO_MODE_CHANGE opt_vga.h
|
|
|
|
VGA_SLOW_IOACCESS opt_vga.h
|
The second phase of syscons reorganization.
- Split syscons source code into manageable chunks and reorganize
some of complicated functions.
- Many static variables are moved to the softc structure.
- Added a new key function, PREV. When this key is pressed, the vty
immediately before the current vty will become foreground. Analogue
to PREV, which is usually assigned to the PrntScrn key.
PR: kern/10113
Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
- Modified the kernel console input function sccngetc() so that it
handles function keys properly.
- Reorganized the screen update routine.
- VT switching code is reorganized. It now should be slightly more
robust than before.
- Added the DEVICE_RESUME function so that syscons no longer hooks the
APM resume event directly.
- New kernel configuration options: SC_NO_CUTPASTE, SC_NO_FONT_LOADING,
SC_NO_HISTORY and SC_NO_SYSMOUSE.
Various parts of syscons can be omitted so that the kernel size is
reduced.
SC_PIXEL_MODE
Made the VESA 800x600 mode an option, rather than a standard part of
syscons.
SC_DISABLE_DDBKEY
Disables the `debug' key combination.
SC_ALT_MOUSE_IMAGE
Inverse the character cell at the mouse cursor position in the text
console, rather than drawing an arrow on the screen.
Submitted by: Nick Hibma (n_hibma@FreeBSD.ORG)
SC_DFLT_FONT
makeoptions "SC_DFLT_FONT=_font_name_"
Include the named font as the default font of syscons. 16-line,
14-line and 8-line font data will be compiled in. This option replaces
the existing STD8X16FONT option, which loads 16-line font data only.
- The VGA driver is split into /sys/dev/fb/vga.c and /sys/isa/vga_isa.c.
- The video driver provides a set of ioctl commands to manipulate the
frame buffer.
- New kernel configuration option: VGA_WIDTH90
Enables 90 column modes: 90x25, 90x30, 90x43, 90x50, 90x60. These
modes are mot always supported by the video card.
PR: i386/7510
Submitted by: kbyanc@freedomnet.com and alexv@sui.gda.itesm.mx.
- The header file machine/console.h is reorganized; its contents is now
split into sys/fbio.h, sys/kbio.h (a new file) and sys/consio.h
(another new file). machine/console.h is still maintained for
compatibility reasons.
- Kernel console selection/installation routines are fixed and
slightly rebumped so that it should now be possible to switch between
the interanl kernel console (sc or vt) and a remote kernel console
(sio) again, as it was in 2.x, 3.0 and 3.1.
- Screen savers and splash screen decoders
Because of the header file reorganization described above, screen
savers and splash screen decoders are slightly modified. After this
update, /sys/modules/syscons/saver.h is no longer necessary and is
removed.
1999-06-22 14:14:06 +00:00
|
|
|
VGA_WIDTH90 opt_vga.h
|
1999-01-23 16:53:30 +00:00
|
|
|
|
2002-04-13 22:34:16 +00:00
|
|
|
GFB_DEBUG opt_gfb.h
|
|
|
|
GFB_NO_FONT_LOADING opt_gfb.h
|
|
|
|
GFB_NO_MODE_CHANGE opt_gfb.h
|
|
|
|
|
|
|
|
TGA_DEBUG opt_tga.h
|
|
|
|
TGA_NO_FONT_LOADING opt_tga.h
|
|
|
|
TGA_NO_MODE_CHANGE opt_tga.h
|
|
|
|
|
1999-12-15 10:04:05 +00:00
|
|
|
PSM_HOOKRESUME opt_psm.h
|
1998-07-22 08:24:39 +00:00
|
|
|
PSM_RESETAFTERSUSPEND opt_psm.h
|
|
|
|
PSM_DEBUG opt_psm.h
|
|
|
|
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
# Atkbd options
|
|
|
|
ATKBD_DFLT_KEYMAP opt_atkbd.h
|
|
|
|
|
2000-09-07 01:33:02 +00:00
|
|
|
# Clock options
|
|
|
|
CLK_USE_I8254_CALIBRATION opt_clock.h
|
|
|
|
TIMER_FREQ opt_clock.h
|
2000-12-02 04:17:19 +00:00
|
|
|
|
|
|
|
# Options for emulators. These should only be used at config time, so
|
2002-05-16 21:28:32 +00:00
|
|
|
# they are handled like options for static filesystems
|
2002-02-15 10:19:39 +00:00
|
|
|
# (see src/sys/conf/options).
|
2000-12-05 09:10:50 +00:00
|
|
|
COMPAT_LINUX opt_dontuse.h
|
|
|
|
COMPAT_OSF1 opt_dontuse.h
|