summaryrefslogtreecommitdiffstats
path: root/sys/conf
Commit message (Collapse)AuthorAgeFilesLines
* Change kern.bootfile when mv'ing the kernelbrian2001-10-175-0/+10
| | | | Not tested by: brian
* Change kern.bootfile when mv'ing the kernelbrian2001-10-171-0/+2
|
* Back out previous revision. TCBHASHSIZE isn't an option, despite what I'ddes2001-10-171-5/+0
| | | | | been misled to believe by unknown parties. It probably *should* be an option, but the runtime value is controlled by a tunable, which Ought To Be Enough.
* Document TCBHASHSIZE.des2001-10-161-0/+5
|
* Remove another unneeded instance of -elf.benno2001-10-141-1/+1
|
* Changes for both compilation on NetBSD (PPC) and cross-compilation on FreeBSD.mp2001-10-131-2/+5
| | | | | | - Hardcode and trim warning flags down to compatible subset. - Remove -elf FMT flag. - Allow for NM commandline override.
* These files have been gone for a long time.des2001-10-131-4/+0
|
* Documentation nitpick. IPFIREWALL_VERBOSE logging really has nothingcjc2001-10-111-2/+1
| | | | | | | | to do with "dropped packets." Any packets matching rules with the 'log' directive are logged regardless of the action, drop, pass, divert, pipe, etc. MFC after: 1 day
* Make MAXTSIZ, DFLDSIZ, MAXDSIZ, DFLSSIZ, MAXSSIZ, SGROWSIZ loaderps2001-10-101-5/+3
| | | | | | | tunable. Reviewed by: peter MFC after: 2 weeks
* Note that this driver is soon to be deprecated and removed from FreeBSD.mjacob2001-10-091-0/+4
|
* Page align the data segment.mp2001-10-081-3/+2
|
* Dissociate ptrace from procfs.des2001-10-071-4/+4
| | | | | | | | | | | | | | | | | Until now, the ptrace syscall was implemented as a wrapper that called various functions in procfs depending on which ptrace operation was requested. Most of these functions were themselves wrappers around procfs_{read,write}_{,db,fp}regs(), with only some extra error checks, which weren't necessary in the ptrace case anyway. This commit moves procfs_rwmem() from procfs_mem.c into sys_process.c (renaming it to proc_rwmem() in the process), and implements ptrace() directly in terms of procfs_{read,write}_{,db,fp}regs() instead of having it fake up a struct uio and then call procfs_do{,db,fp}regs(). It also moves the prototypes for procfs_{read,write}_{,db,fp}regs() and proc_rwmem() from proc.h to ptrace.h, and marks all procfs files except procfs_machdep.c as "optional procfs" instead of "standard".
* Mention that ed requires miibus.iedowse2001-10-071-0/+1
| | | | Suggested by: Eugene Grosbein <eugen@grosbein.pp.ru>
* Rewrite the pc98 bus_space stuff.nyan2001-10-072-0/+3
| | | | | | | | | | | | | | | | The type of bus_space_tag_t is now a pointer to bus_space_tag structure, and the bus_space_tag structure saves pointers to functions for direct access and relocate access. Added bsh_bam member to the bus_space_handle structure, it saves access method either direct access or relocate access which is called by bus_space_* functions. Added the mecia device support. If the bs_da and bs_ra in bus tag are set NEPC_io_space_tag and NEPC_mem_space_tag respectively, new bus_space stuff changes the register of mecia automatically for 16bit access. Obtained from: NetBSD/pc98
* Remove nexus_pcib.c.dfr2001-10-061-1/+0
|
* Add ia64/ia64/sapic.cpeter2001-10-061-0/+1
|
* Update to reflect one file added, one removed.msmith2001-10-041-1/+1
|
* Add nmdm driver.mp2001-10-041-0/+3
| | | | | | PR: 31027 Submitted by: Edwin Groothuis <edwin@mavetju.org> MFC after: 1 day
* Add eficlock.c and remove sscclock.c.dfr2001-10-041-1/+1
|
* Comment out RESTARTABLE_PANICS so that it is not defined in LINT. Itjhb2001-10-041-1/+1
| | | | introduces many useless warnings obscuring the useful ones.
* Add a couple of low-level acpi support files.dfr2001-10-041-0/+2
|
* Add identcpu.c.jake2001-09-301-0/+1
|
* Add an option ED_NO_MIIBUS, which causes the `ed' driver to beiedowse2001-09-292-0/+4
| | | | | | built without support for miibus PHYs. Most ed cards don't need miibus support, so it's useful to be able to avoid the bloat of all the mii devices for small fixed-purpose kernels.
* Add various file relating to firmware interfaces and make SKI supportdfr2001-09-292-5/+13
| | | | optional.
* Introduce network device nodes. Network devices will now automaticallyjlemon2001-09-291-0/+1
| | | | | | appear in /dev. Interface hardware ioctls (not protocol or routing) can be performed on the descriptor. The SIOCGIFCONF ioctl may be performed on the special /dev/network node.
* Add device driver support for the Broadcom BCM570x family of gigabitwpaul2001-09-272-0/+7
| | | | | | | | | | | | | | ethernet controllers. This adds support for the 3Com 3c996-T, the SysKonnect SK-9D21 and SK-9D41, and the built-in gigE NICs on Dell PowerEdge 2550 servers. The latter configuration hauls ass: preliminary measurements show TCP speeds of over 900Mbps using only normal size frames. TCP/IP checksum offload, jumbo frames and VLAN tag insertion/stripping are supported, as well as interrupt moderation. Still need to fix autonegotiation support for 1000baseSX NICs, but beyond that, driver is pretty solid.
* Add the new ng_gif, ng_gif_demux, and ng_ip_input nodes to NOTES so theybrooks2001-09-271-0/+3
| | | | get compiled with LINT.
* Add ng_ip_input. A new netgraph node for queuing IP packets into thebrooks2001-09-272-0/+2
| | | | main IP input processing code.
* Update a comment to reflect the param.c -> subr_param.c move.murray2001-09-271-1/+1
| | | | | PR: kern/30766 Submitted by: Kevin Way <kevin.way@overtone.org>
* /home/brooks/ng_gif.messagebrooks2001-09-262-0/+4
|
* The number of ccd(4) devices is no longer set at compile time so stopbrooks2001-09-262-2/+2
| | | | trying to do it in the examples and config files.
* The faith(4) device is no longer a count device so don't specify a count.brooks2001-09-251-1/+1
|
* Make faith loadable, unloadable, and clonable.brooks2001-09-251-1/+1
|
* Add CONSPEED option.dfr2001-09-221-0/+2
|
* Introduce new syscons(4) kernel options:sobomax2001-09-212-0/+8
| | | | | | | | | | | | | - SC_CUT_SPACES2TABS - when copying text into the cut buffer convert leading spaces into the tabs; - SC_CUT_SEPCHARS="XYZ" - treat supplied characters as possible words separators when the driver searches for words boundaries when doing cut operation. Also unify cut code a bit to decrease amount of duplicated code. This fixes line cut mode, so that it is no longer pads line with useless spaces. Approved by: ru
* Add some comments about KVA_PAGES and a test.peter2001-09-211-0/+9
|
* Introduce a new option, KVA_SPACE, which can be used to reconfigurepeter2001-09-212-0/+6
| | | | | | the size of the kernel virtual address space relatively painlessly. Userland will adapt via the exported kernbase symbol. Increasing this causes the user part of address space to reduce.
* Add kernbase symbol and use it instead of magic numbers in thejake2001-09-211-4/+4
| | | | linker script.
* Use the kernbase symbol exported from locore.o instead of hardcoded magicpeter2001-09-201-2/+2
| | | | numbers.
* Cleanup and split of nfs client and server code.peter2001-09-183-15/+21
| | | | This builds on the top of several repo-copies.
* Remove hard coded magic load address. Now to change the load address,peter2001-09-182-2/+2
| | | | | we just have to change the pmap.h constants and ld will automatically adapt based on the "kernbase" symbol.
* SMBus support for the AMD 756 power management unit. See smbus(4),murray2001-09-161-0/+1
| | | | | | | | | | | amdpm(4) and smb(4). This device can be used with userland programs such as sysutils/lmmon to retrieve sensor information from the motherboard. PR: kern/23989 Obtained from: Matthew C. Forman <mcf@dmu.ac.uk> Based on: alpm(4)
* MFi386: files.i386 revision 1.367, 1.370, 1.371 and 1.372.nyan2001-09-161-1/+9
|
* MFi386: removed IDE_DELAY option.nyan2001-09-161-1/+0
|
* Allow C++ comments in headers - the EFI headers are full of them.dfr2001-09-151-1/+1
|
* Place CPU_UPGRADE_HW_CACHE in the right section.asmodai2001-09-141-3/+3
|
* Remove pointer to ftp.freesoftware.com.asmodai2001-09-141-1/+1
|
* * Enable dynamically linked kernel. This involves adding a self-relocatordfr2001-09-131-1/+1
| | | | | | | | to locore to process the @fptr relocations in the dynamic executable. * Don't initialise the timer until *after* we install the timecounter to avoid a race between timecounter initialisation and hardclock. * Tidy up bootinfo somewhat including adding sanity checks for when the kernel is loaded without a recognisable bootinfo.
* KSE Milestone 2julian2001-09-123-5/+5
| | | | | | | | | | | | | | Note ALL MODULES MUST BE RECOMPILED make the kernel aware that there are smaller units of scheduling than the process. (but only allow one thread per process at this time). This is functionally equivalent to teh previousl -current except that there is a thread associated with each process. Sorry john! (your next MFC will be a doosie!) Reviewed by: peter@freebsd.org, dillon@freebsd.org X-MFC after: ha ha ha ha
* On second thoughts, make kldxref failures non-fatal.peter2001-09-111-1/+1
|
OpenPOWER on IntegriCloud