1998-06-10 10:57:29 +00:00
|
|
|
# This file tells config what files go into building a kernel,
|
|
|
|
# files marked standard are always included.
|
|
|
|
#
|
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
|
|
|
# $Id: files.alpha,v 1.21 1999/06/19 13:12:51 dfr Exp $
|
1998-06-10 10:57:29 +00:00
|
|
|
#
|
|
|
|
# The long compile-with and dependency lines are required because of
|
|
|
|
# limitations in config: backslash-newline doesn't work in strings, and
|
|
|
|
# dependency lines other than the first are silently ignored.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
font8x16.o optional std8x16font \
|
|
|
|
compile-with "uudecode < /usr/share/syscons/fonts/${STD8X16FONT}-8x16.fnt && file2c 'unsigned char font_16[16*256] = {' '};' < ${STD8X16FONT}-8x16 > font8x16.c && ${CC} -c ${CFLAGS} font8x16.c" \
|
|
|
|
no-implicit-rule before-depend \
|
|
|
|
clean "${STD8X16FONT}-8x16 font8x16.c"
|
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
|
|
|
#
|
|
|
|
atkbdmap.h optional atkbd_dflt_keymap \
|
|
|
|
compile-with "kbdcontrol -L ${ATKBD_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > atkbdmap.h" \
|
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "atkbdmap.h"
|
1998-06-10 10:57:29 +00:00
|
|
|
#
|
|
|
|
alpha/alpha/autoconf.c standard device-driver
|
|
|
|
alpha/alpha/cpuconf.c standard
|
1998-08-24 08:48:22 +00:00
|
|
|
alpha/alpha/atomic.s standard
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/alpha/dec_kn8ae.c optional dec_kn8ae
|
1998-07-12 16:26:52 +00:00
|
|
|
alpha/alpha/dec_eb164.c optional dec_eb164
|
1999-01-18 20:26:50 +00:00
|
|
|
alpha/alpha/dec_eb64plus.c optional dec_eb64plus
|
1998-07-22 08:24:39 +00:00
|
|
|
alpha/alpha/dec_kn20aa.c optional dec_kn20aa
|
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
|
|
|
alpha/alpha/dec_2100_a50.c optional dec_2100_a50
|
|
|
|
alpha/alpha/dec_st550.c optional dec_st550
|
1999-05-26 23:22:14 +00:00
|
|
|
alpha/alpha/dec_st6600.c optional dec_st6600
|
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
|
|
|
alpha/alpha/dec_axppci_33.c optional dec_axppci_33
|
1998-08-20 08:27:11 +00:00
|
|
|
alpha/alpha/dec_3000_300.c optional dec_3000_300
|
|
|
|
alpha/alpha/dec_3000_500.c optional dec_3000_500
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/alpha/mountroot.c optional slice
|
|
|
|
alpha/alpha/ipl_funcs.c standard
|
|
|
|
alpha/alpha/pal.s standard
|
1998-09-16 08:22:09 +00:00
|
|
|
alpha/alpha/busdma_machdep.c standard
|
1999-06-05 13:30:13 +00:00
|
|
|
alpha/alpha/sgmap.c standard
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/alpha/cons.c standard
|
|
|
|
alpha/alpha/prom.c standard
|
1998-07-12 16:26:52 +00:00
|
|
|
alpha/alpha/promcons.c standard
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/alpha/prom_disp.s standard
|
1998-07-12 16:26:52 +00:00
|
|
|
alpha/alpha/alpha-gdbstub.c optional ddb
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/alpha/db_disasm.c optional ddb
|
|
|
|
alpha/alpha/db_interface.c optional ddb
|
|
|
|
alpha/alpha/db_trace.c optional ddb
|
|
|
|
alpha/alpha/exception.s standard
|
|
|
|
alpha/alpha/in_cksum.c optional inet
|
|
|
|
# locore.s needs to be handled in Makefile to put it first. Otherwise it's
|
|
|
|
# now normal.
|
|
|
|
# alpha/alpha/locore.s standard
|
|
|
|
alpha/alpha/machdep.c standard
|
1998-12-04 10:52:48 +00:00
|
|
|
alpha/alpha/fp_emulate.c standard
|
|
|
|
alpha/alpha/ieee_float.c standard
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/alpha/mem.c standard
|
|
|
|
alpha/alpha/mp_machdep.c optional smp
|
|
|
|
alpha/alpha/perfmon.c optional perfmon profiling-routine
|
|
|
|
alpha/alpha/perfmon.c optional perfmon
|
|
|
|
alpha/alpha/pmap.c standard
|
|
|
|
alpha/alpha/procfs_machdep.c standard
|
|
|
|
alpha/alpha/simplelock.s optional smp
|
|
|
|
alpha/alpha/support.s standard
|
|
|
|
alpha/alpha/swtch.s standard
|
|
|
|
alpha/alpha/sys_machdep.c standard
|
|
|
|
alpha/alpha/trap.c standard
|
|
|
|
alpha/alpha/interrupt.c standard
|
|
|
|
alpha/alpha/userconfig.c optional userconfig
|
|
|
|
alpha/alpha/vm_machdep.c standard
|
|
|
|
alpha/alpha/clock.c standard
|
1998-09-07 07:29:30 +00:00
|
|
|
clock_if.o standard \
|
|
|
|
dependency "clock_if.c" \
|
|
|
|
compile-with "${NORMAL_C}" \
|
|
|
|
no-implicit-rule local
|
|
|
|
clock_if.c standard \
|
1998-11-08 18:39:57 +00:00
|
|
|
dependency "$S/kern/makedevops.pl $S/alpha/alpha/clock_if.m" \
|
|
|
|
compile-with "perl $S/kern/makedevops.pl -c $S/alpha/alpha/clock_if.m" \
|
1998-09-07 07:29:30 +00:00
|
|
|
no-obj no-implicit-rule before-depend local \
|
1998-06-14 13:46:10 +00:00
|
|
|
clean "clock_if.c"
|
1998-09-07 07:29:30 +00:00
|
|
|
clock_if.h standard \
|
1998-11-08 18:39:57 +00:00
|
|
|
dependency "$S/kern/makedevops.pl $S/alpha/alpha/clock_if.m" \
|
|
|
|
compile-with "perl $S/kern/makedevops.pl -h $S/alpha/alpha/clock_if.m" \
|
1998-09-07 07:29:30 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
1998-06-14 13:46:10 +00:00
|
|
|
clean "clock_if.h"
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/alpha/diskslice_machdep.c standard
|
|
|
|
alpha/tlsb/tlsb.c optional tlsb
|
|
|
|
alpha/tlsb/gbus.c optional gbus
|
|
|
|
alpha/tlsb/kftxx.c optional kft
|
|
|
|
alpha/tlsb/mcclock_tlsb.c optional gbus
|
|
|
|
alpha/tlsb/zs_tlsb.c optional gbus
|
|
|
|
alpha/tlsb/dwlpx.c optional dwlpx
|
1998-08-20 08:27:11 +00:00
|
|
|
alpha/tc/tcasic.c optional tcasic
|
|
|
|
alpha/tc/tc.c optional tc
|
|
|
|
alpha/tc/ioasic.c optional tc
|
|
|
|
alpha/tc/mcclock_ioasic.c optional tc
|
|
|
|
alpha/tc/if_le_ioasic.c optional le device-driver
|
|
|
|
alpha/tc/if_le_dec.c optional le device-driver
|
|
|
|
alpha/tc/am7990.c optional le device-driver
|
|
|
|
alpha/tc/tcds.c optional tcds device-driver
|
|
|
|
alpha/tc/tcds_dma.c optional tcds device-driver
|
|
|
|
alpha/tc/esp.c optional esp device-driver
|
1999-06-19 13:12:51 +00:00
|
|
|
dev/dec/mcclock.c optional mcclock device-driver
|
|
|
|
mcclock_if.o optional mcclock \
|
1998-09-07 07:29:30 +00:00
|
|
|
dependency "mcclock_if.c" \
|
|
|
|
compile-with "${NORMAL_C}" \
|
|
|
|
no-implicit-rule local
|
|
|
|
mcclock_if.c standard \
|
1998-11-08 18:39:57 +00:00
|
|
|
dependency "$S/kern/makedevops.pl $S/dev/dec/mcclock_if.m" \
|
|
|
|
compile-with "perl $S/kern/makedevops.pl -c $S/dev/dec/mcclock_if.m" \
|
1998-09-07 07:29:30 +00:00
|
|
|
no-obj no-implicit-rule before-depend local \
|
1998-06-14 13:46:10 +00:00
|
|
|
clean "mcclock_if.c"
|
1999-06-19 13:12:51 +00:00
|
|
|
mcclock_if.h optional mcclock \
|
1998-11-08 18:39:57 +00:00
|
|
|
dependency "$S/kern/makedevops.pl $S/dev/dec/mcclock_if.m" \
|
|
|
|
compile-with "perl $S/kern/makedevops.pl -h $S/dev/dec/mcclock_if.m" \
|
1998-09-07 07:29:30 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
1998-06-14 13:46:10 +00:00
|
|
|
clean "mcclock_if.h"
|
1998-07-12 16:26:52 +00:00
|
|
|
alpha/pci/cia.c optional cia
|
1999-04-16 21:22:55 +00:00
|
|
|
alpha/pci/cia_pci.c optional cia
|
1998-07-12 16:26:52 +00:00
|
|
|
alpha/pci/pci_eb164_intr.s optional cia
|
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
|
|
|
alpha/pci/apecs.c optional apecs
|
1999-04-16 21:22:55 +00:00
|
|
|
alpha/pci/apecs_pci.c optional apecs
|
1999-01-18 20:26:50 +00:00
|
|
|
alpha/pci/pci_eb64plus_intr.s optional apecs
|
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
|
|
|
alpha/pci/lca.c optional lca
|
1999-04-16 21:22:55 +00:00
|
|
|
alpha/pci/lca_pci.c optional lca
|
1999-05-26 23:22:14 +00:00
|
|
|
alpha/pci/tsunami.c optional tsunami
|
|
|
|
alpha/pci/tsunami_pci.c optional tsunami
|
1998-06-10 10:57:29 +00:00
|
|
|
alpha/pci/pcibus.c optional pci
|
1998-07-22 08:24:39 +00:00
|
|
|
alpha/isa/isa.c optional isa
|
1999-06-05 13:30:13 +00:00
|
|
|
alpha/isa/isa_dma.c optional isa
|
1999-01-18 20:26:50 +00:00
|
|
|
alpha/isa/mcclock_isa.c optional isa
|
1998-09-07 07:29:30 +00:00
|
|
|
alpha/alpha/elf_machdep.c standard
|
1998-06-10 10:57:29 +00:00
|
|
|
libkern/bcd.c standard
|
|
|
|
libkern/bcmp.c standard
|
|
|
|
libkern/ffs.c standard
|
|
|
|
libkern/inet_ntoa.c standard
|
|
|
|
libkern/index.c standard
|
|
|
|
libkern/mcount.c optional profiling-routine
|
|
|
|
libkern/qsort.c standard
|
|
|
|
libkern/random.c standard
|
1998-10-10 18:32:18 +00:00
|
|
|
libkern/rindex.c standard
|
1998-06-10 10:57:29 +00:00
|
|
|
libkern/scanc.c standard
|
|
|
|
libkern/skpc.c standard
|
|
|
|
libkern/strcat.c standard
|
|
|
|
libkern/strcmp.c standard
|
|
|
|
libkern/strcpy.c standard
|
|
|
|
libkern/strlen.c standard
|
|
|
|
libkern/strncmp.c standard
|
|
|
|
libkern/strncpy.c standard
|
|
|
|
libkern/alpha/htonl.S standard
|
|
|
|
libkern/alpha/htons.S standard
|
|
|
|
libkern/alpha/ntohl.S standard
|
|
|
|
libkern/alpha/ntohs.S standard
|
1998-07-12 16:26:52 +00:00
|
|
|
isa/sio.c optional sio device-driver
|
1999-01-23 16:53:30 +00:00
|
|
|
dev/fb/fb.c optional fb device-driver
|
|
|
|
dev/fb/fb.c optional vga device-driver
|
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
|
|
|
dev/fb/vga.c optional vga device-driver
|
1999-01-23 16:53:30 +00:00
|
|
|
isa/vga_isa.c optional vga device-driver
|
|
|
|
dev/fb/splash.c optional splash
|
|
|
|
dev/kbd/atkbd.c optional atkbd device-driver
|
|
|
|
isa/atkbd_isa.c optional atkbd device-driver
|
|
|
|
dev/kbd/atkbdc.c optional atkbdc device-driver
|
|
|
|
isa/atkbdc_isa.c optional atkbdc device-driver
|
|
|
|
dev/kbd/kbd.c optional atkbd device-driver
|
|
|
|
dev/kbd/kbd.c optional kbd device-driver
|
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
|
|
|
dev/kbd/kbd.c optional ukbd device-driver
|
1999-01-23 16:53:30 +00:00
|
|
|
dev/syscons/syscons.c optional sc device-driver
|
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
|
|
|
dev/syscons/schistory.c optional sc device-driver
|
|
|
|
dev/syscons/scmouse.c optional sc device-driver
|
|
|
|
dev/syscons/scvgarndr.c optional sc device-driver
|
1999-01-23 16:53:30 +00:00
|
|
|
dev/syscons/scvidctl.c optional sc device-driver
|
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
|
|
|
dev/syscons/scvtb.c optional sc device-driver
|
1999-01-23 16:53:30 +00:00
|
|
|
isa/syscons_isa.c optional sc device-driver
|
1998-08-20 08:27:11 +00:00
|
|
|
isa/psm.c optional psm device-driver
|
1999-06-05 13:30:13 +00:00
|
|
|
isa/fd.c optional fd device-driver
|
1999-04-16 21:22:55 +00:00
|
|
|
dev/ata/ata-all.c optional ata device-driver
|
|
|
|
dev/ata/ata-dma.c optional ata device-driver
|
|
|
|
dev/ata/atapi-all.c optional ata device-driver
|
|
|
|
dev/ata/ata-disk.c optional atadisk device-driver
|
|
|
|
dev/ata/atapi-cd.c optional atapicd device-driver
|
|
|
|
dev/ata/atapi-fd.c optional atapifd device-driver
|
|
|
|
dev/ata/atapi-tape.c optional atapist device-driver
|