summaryrefslogtreecommitdiffstats
path: root/sys/conf/options.i386
Commit message (Collapse)AuthorAgeFilesLines
* Added new options CPU_PPRO2CELERON and CPU_L2_LATENCY to supportkato2000-06-131-0/+2
| | | | | | | | | | | | | | | Socket 8 to 370 converters. When (1) CPU_PPRO2CELERON option is defined, (2) Intel CPU is found and (3) CPU ID is 0x66?, L2 cache is enabled through MSR 0x11e. The L2 cache latency value can be specified by CPU_L2_LATENCY option. Default value of L2 cache latency is 5. These options are useful if you use Socket 8 to Socket 370 converter (e.g. Power Leap's PL-Pro/II.) Most PentiumPro BIOSs don't enable L2 cache of Mendocino Celeron CPUs because they don't know Celeron CPUs. These options are needles if you use a Coppermine (FCPGA) Celeron or PentiumIII, becuase the L2 cache enable bit is hard wired and L2 cache is always enabled.
* Add option BROKEN_KEYBOARD_RESET to an opt_*.h filepeter2000-06-101-0/+1
|
* Move UKBD_DFLT_KEYMAP into the options file since USB is machinejhb2000-05-091-1/+0
| | | | | | independent. This allows the ukbd0 driver to compile on the Alpha. Approved by: o`brien (in principle)
* Some more i386-only BIOS-friendliness:msmith2000-04-161-3/+0
| | | | | | | | | - Add support for using the PCI BIOS functions for configuration space accesses, and make this the default. - Make PNPBIOS the default (obsoletes the PNPBIOS config option). - Add two new boot-time tunables to disable each of the above.
* Remove useless PCVT_FREEBSD and PCVT_EMU_MOUSE. Add PCVT_GREENSAVER.hm2000-03-311-2/+1
|
* Connect the ISA and PCI compatability shims to an option. In this casepeter2000-03-191-0/+1
| | | | | | | | it's options COMPAT_OLDISA and COMPAT_OLDPCI. This is meant to be a fairly strong incentive to update the older drivers to newbus, but doesn't (quite) leave anybody hanging with no hardware support. I was talking with a few folks and I was encouraged to simply break or disable the shims but that was a bit too drastic for my liking.
* Port of ppbus standalone framework to the newbus system.nsouch2000-01-141-0/+1
| | | | | | | | | | | | | | | | | | | | | Note1: the correct interrupt level is invoked correctly for each driver. For this purpose, drivers request the bus before being able to call BUS_SETUP_INTR and BUS_TEARDOWN_INTR call is forced by the ppbus core when drivers release it. Thus, when BUS_SETUP_INTR is called at ppbus driver level, ppbus checks that the caller owns the bus and stores the interrupt handler cookie (in order to unregister it later). Printing is impossible while plip link is up is still TRUE. vpo (ZIP driver) and lpt are make in such a way that using the ZIP and printing concurrently is permitted is also TRUE. Note2: specific chipset detection is not done by default. PPC_PROBE_CHIPSET is now needed to force chipset detection. If set, the flags 0x40 still avoid detection at boot. Port of the pcf(4) driver to the newbus system (was previously directly connected to the rootbus and attached by a bogus pcf_isa_probe function).
* Put COMPAT_SVR4 in opt_dontuse.h for the same reasons as IBCS2 andbde2000-01-091-10/+9
| | | | | | | COMPAT_LINUX are there. It shouldn't be and isn't used after config time, except to complicate the svr4 module makefile. Moved options for emulators to a separate section.
* - Add the device resume method. It supercedes the existing resumeyokota1999-12-151-1/+1
| | | | | | routine which hooks the apm driver. - Rename the PSM_HOOKAPM option to PSM_HOOKRESUME. - Delete unnecessary #include.
* update to isdn4bsd beta release 0.90hm1999-12-141-4/+5
| | | | drivers which are likely to be ported to newbus are commented out for now
* Add support for compiling SVR4 as a static modulenewton1999-12-081-0/+3
| | | | | | ("AND THE CROWD GOES... uh.") Tested by: Joerg Wunsch <joerg_wunsch@interface-business.de>
* - Added the following options; they have existed in sysconsyokota1999-11-081-0/+4
| | | | | | | | | | | for sometime, but haven't been registered here. SC_NORM_ATTR SC_NORM_REV_ATTR SC_KERNEL_CONS_ATTR SC_KERNEL_CONS_REV_ATTR PR: kern/13176
* - Added a new kernel configuration option: SC_TWOBUTTON_MOUSE.yokota1999-11-081-0/+1
| | | | | | | The new option will make the right mouse button the `paste' button. Useful for two button mice. Submitted by: morganw@engr.sc.edu (Wes Morgan)
* - Removed SC_VIDEO_DEBUG. It is broken and useless now.yokota1999-11-081-1/+0
|
* Options cleanup.eivind1999-11-061-4/+0
| | | | | | | | | * GC unused options * Move options that exist on all architectures to conf/options * Add missing options to LINT * Sort undocumented options list in LINT Reviewed by: green
* Elminiate the (unused) TUNE_1542 option.eivind1999-11-011-1/+0
|
* Add PNPBIOS option.dfr1999-10-141-0/+3
|
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* The "LINUX" option isn't actually used or referenced anywhere. The stuffpeter1999-08-181-2/+1
| | | | | | | that goes to opt_dontuse.h is so an opt_*.h file doesn't get created even though an option may be used for bringing stuff in via files[.*]. Pointed out by: bde
* updating isdn4bsd to beta version 0.83hm1999-08-061-2/+7
|
* The second phase of syscons reorganization.yokota1999-06-221-4/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* Kill option FAILSAFE.des1999-06-151-1/+2
| | | | | PR: i386/12187 Approved by: bde
* The FD options are now in /sys/conf/options so need to duplicate themsteve1999-06-061-4/+1
| | | | here and keep people from building new kernels. :)
* Make vm86 a standard componentjlemon1999-06-011-2/+1
| | | | Reviewed by: silence on on -current
* upgrade isdn4bsd from version 0.71 to the just released version 0.81hm1999-05-201-1/+2
|
* Move opt_sio.h options to conf/options and activate in isa/sio.cpeter1999-05-091-4/+1
|
* The fd options changed during new-bus.peter1999-04-241-4/+3
|
* Shoot the LKM support in the old wd/wdc/atapi driver set in the head andpeter1999-04-131-6/+1
| | | | | | | | | | | | | | | | | perform a cleanup/unifdef sweep over it to tidy things up. The atapi code is permanently attached to the wd driver and is always probed. I will add an extra option bit in the flags to disable an atapi probe on either the master or slave if needed, if people want this. Remember, this driver is destined to die some time. It's possible that it will loose all atapi support down the track and only be used for dumb non-ATA disks and all ata/atapi devices will be handled by the new ata system. ATAPI, ATAPI_STATIC and CMD640 are no longer options, all are implicit. Previously discussed with: sos
* Make NDGBPORTS an official option.joerg1999-03-131-1/+6
|
* Keyboard driver update in preparation for the USB keyboard driver.yokota1999-03-101-1/+5
| | | | | | | | | | | | | | | | | | | | | | | - 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.
* Submitted by: Larry Lilejulian1999-03-101-1/+8
| | | | | | | | Move the Olicom token ring driver to the officially sanctionned location of /sys/contrib. Also fix some brokenness in the generic token ring support. Be warned that if_dl.h has been changed and SOME programs might like recompilation.
* Make TIMER_FREQ a normal, undocumented option. Raise confusion tophk1999-03-091-1/+2
| | | | | | | a higher level with example in LINT. Clarify comment about PPS_SYNC. Ignore for now that it doesn't work in FLL mode, it will in a few days.
* add kernel config support for i4b driver for AVM Fritz PCIhm1999-03-071-1/+2
|
* Added FE_8BIT_SUPPORT into the list. The fe driver includes opt_fe.h.kato1999-03-031-1/+3
| | | | Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
* - Remove reference to obsolete options.yokota1999-01-231-6/+1
| | | | | - Describe options for the vga driver. Reviewed by: bde
* The first stage of console driver reorganization: activate newyokota1999-01-111-8/+19
| | | | | | | | | | | | | keyboard and video card drivers. Because of the changes, you are required to update your kernel configuration file now! The files in sys/dev/syscons are still i386-specific (but less so than before), and won't compile for alpha and PC98 yet. syscons still directly accesses the video card registers here and there; this will be rectified in the later stages.
* Forgotten options needed to build last ppbus commit.nsouch1999-01-101-1/+3
| | | | Submitted by: "D. Rock" <rock@wurzelausix.CS.Uni-SB.DE>
* Part 1 of pcvt/voxware revival. I hope I have not clobbered any otherpeter1999-01-011-1/+21
| | | | | | | deltas, but it is possible since I had a few merge conflicts over the last few days while this has been sitting ready to go. Approved by: core
* From the submitter:msmith1998-12-271-1/+2
| | | | | | | | | | | CPU_WT_ALLOC does not work correctly for K6-2s of model 8+ and probably K6-3s (when they appear on the market soon). In addition, print_AMD_info() incorrectly printfs write allocation's size. I've fixed them, so they now Do The Right Thing, and added a "NO_MEMORY_HOLE" option to easily allow 15-16mb range handling for us K6 and K6-2 users. Submitted by: Brian Feldman <green@unixhelp.org>
* Initial entry of ISDN4BSD into the FreeBSD tree.phk1998-12-271-1/+37
| | | | | | | | | | | | | | | ISDN4BSD is the work of our brand-new comitter: Hellmuth Michaelis, who has done a tremendous amount of work to bring us this far. There are still some outstanding issues and files to bring into the tree, and for now it will be needed to pick up all the extra docs from the isdn4bsd release. It is probably also a very good idea to subscribe to the isdn@freebsd.org mailing list before you try this out. These files correspond to release "beta Version 0.70.00 / December 1998" from Hellmuth.
* Pre 3.0 branch cleanup sos#2: soundsos1998-12-271-6/+1
| | | | Superceded by the snd driver...
* forgot to remote options here.phk1998-12-271-17/+1
|
* Move the "generic" SMP options from options.i386 to conf/optionsmsmith1998-12-191-7/+2
|
* Add support for the YE-Data external PCMCIA floppy driver. Thisimp1998-12-121-1/+2
| | | | | | | | | | | | | | | | | floppy is used on the toshiba Libretto line of subnotebook computers. It differs from a normal floppy in that you must use PIO rather than DMA to transfer the data. To enable this, you must add options "FDC_YE" to your kernel. I don't have a machine that has a floppy and a pcmcia slot to test to make sure that this doesn't impact normal floppy units, so I've left this as an option. I have ported this to -current and made an attempt to ensure that the indentation conforms to style(9), aka the bruce filter. Reviewed by: nate, markm Submitted by: David Horwitt (dhorwitt@ucsd.edu)
* Obtained from: "Kenneth D. Merry" <ken@plutotech.com>dillon1998-12-051-2/+1
| | | | | ICMP_BANDLIM option moved from i386/conf/options.i386 to generic conf/options since it is platform indpendant.
* Reviewed by: freebsd-currentdillon1998-12-031-1/+2
| | | | Add ICMP_BANDLIM option
* Make it possible to adjust the IDE probe delay from kernel config files.eivind1998-11-151-1/+2
|
* Remove USERCONFIG_BOOT, add INTRO_USERCONFIGmsmith1998-11-031-2/+2
|
* - Implement enabling write allocate on AMD K5/K6/K6-2 cpus.kato1998-10-061-1/+2
| | | | | | | | | | | | The code was originaly contributed by Kelly Yancey <kbyanc@freedomnet.com> in PR i386/6269 and revised by Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp> and me. Test was performed by Akio Morita and Toshiomi Moriki <moriki@db.is.kyushu-u.ac.jp>. - Fix stylistic bug in identcpu.c. - Update copyright in initcpu.c - Fix typo in LINT. PR: 6269 and 6270
* Goodbye BOUNCE_BUFFERS, for a hack it has served us well.peter1998-09-251-2/+1
| | | | | | | | The last consumer of this code (the old SCSI system) has left us and the CAM code does it's own bouncing. The isa dma system has been doing it's own bouncing for a while too. Reviewed by: core
OpenPOWER on IntegriCloud