summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added sysinstallpaul1994-10-151-1/+1
|
* Work in progress.paul1994-10-153-0/+722
|
* Updated to changes in struct vmmeter. There is a slight bogosity here:dg1994-10-151-5/+5
| | | | "pageins/outs" now refers to vnode paging.
* Updated to changes in struct vmmeter.dg1994-10-151-11/+11
|
* Updated to changes in struct vmmeter. Nuked !NEWVM code. Fixed roundingdg1994-10-151-72/+19
| | | | bug when interval is 1 second.
* 1) Some of the counters in the vmmeter struct don't fit well into the Mach VMdg1994-10-157-31/+37
| | | | | | | | | | scheme of things, so I've changed them to be more appropriate. page in/ous are now associated with the pager that did them. Nuked v_fault as the only fault of interest that wouldn't be already counted in v_trap is a VM fault, and this is counted seperately. 2) Implemented most of the remaining counters and corrected the counting of some that were done wrong. They are all almost correct now...just a few minor ones left to fix.
* Count vm faults as v_vm_fault, not v_fault.dg1994-10-151-2/+2
|
* Properly count object lookups and hits.dg1994-10-152-5/+5
|
* Sanitized a little bit. All SCSI is now "controllers" and LINT is morephk1994-10-154-39/+39
| | | | sorted now.
* disklabel needs the "full-disk" partitionphk1994-10-151-1/+1
|
* Format floppy before use. Make 1.44 Mb floppies for now.phk1994-10-151-3/+6
|
* Stop "make install" from falling over if DESTDIR is defined.phk1994-10-151-2/+2
|
* Add back variable declaration removed by wrong previous cleanupsache1994-10-151-1/+4
|
* Add back variable declaration removed by wrong prevous cleanups.ache1994-10-151-1/+4
|
* $DESTDIR missing...phk1994-10-152-6/+6
|
* Fix the problem with panics when mounting on nonexistant directories. Probablyphk1994-10-152-4/+4
| | | | my fault in the first place...
* Move `ft' into machine-dependant section.gpalmer1994-10-151-3/+3
|
* Submitted by: Wolfgang Stanglmeier <wolf@dentaro.GUN.de>se1994-10-151-1/+3
| | | | Make -s option set parameters for all targets by default.
* Submitted by: "Randall W. Dean" <rwd@osf.org>se1994-10-142-8/+8
| | | | | Fixed typo in initialisation of DMODE: PCI burst length now really 16 transfers as advertised ...
* Move `ncrcontrol' into machine-dependant section.gpalmer1994-10-141-3/+3
|
* I added PROCFS back to the GENERIC kernels. ps(1) needs /proc, so almostphk1994-10-142-2/+4
| | | | any machine will load it anyway.
* Fix install of ibcs2 script.sos1994-10-142-6/+8
|
* Add ${.MAKEFLAGS} to sub-makes, pointed by Rodache1994-10-141-4/+4
|
* revision 1.6ache1994-10-141-10/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | date: 1994/03/06 08:55:02; author: ache; state: Exp; lines: +4 -1 Stop count getty spacing problem, if we issue kill -1 1 ---------------------------- revision 1.5 date: 1994/03/04 17:51:39; author: ache; state: Exp; lines: +9 -2 I got a lot of "getty repeating too quickly on port %s, sleeping" from init.bsdi, it means that getty start and exit in five seconds. This is common situation for poor quality Russian phone lines: modem got CONNECT message and after retries got NO CARRIER. So I introduce spacing count, it means that this warning and sleep occurse only after GETTY_NSPACE times of sequental attempts. ---------------------------- revision 1.4 date: 1994/02/28 21:53:52; author: ache; state: Exp; lines: +71 -10 I found (and fix) ugly bugs in init.bsdi (this bugs not present in old init) 1) Init don't setup TERM environment variable for default terminal type from /etc/ttys before calling getty/window. 2) When "kill -1 1" issued, init don't restart getty when /etc/ttys parameters was changed (it only kill "off" end empty entries). 3) Small memory leak if "window" /etc/ttys parameter specified and "kill -1 1" issued. Obtained from: FreeBSD 1.x
* Fix range checking bug, pointed by peter@haywire.dialix.comache1994-10-142-6/+6
|
* #include'ing mysterious stuff from ${DESTDIR}/sys/<somewhere> is no longerjoerg1994-10-142-4/+3
| | | | | necessary. Requested by: phk
* Got rid of redundant declaration warnings.dg1994-10-142-7/+2
|
* The code I wrote to write mbufs out using PIO had a bug in the handlingdg1994-10-142-104/+110
| | | | | | | | of mb_offset given the right sequence of 1 and 0 byte mbufs. This bug was discovered by John Hood who also provided this fix - which is a rewrite of the routine (and is easier to understand than the code I wrote). Submitted by: John Hood <cgull@smoke.marlboro.vt.us>
* Last commit not quite right - this works.jkh1994-10-141-2/+4
|
* Get the EXCLUDES correct so you can actually exclude GUS support.jkh1994-10-141-2/+2
|
* Add missing )'s to previous midnight changes. :-)jkh1994-10-141-3/+3
|
* Added coff & ibcs2 modules.sos1994-10-142-4/+4
| | | | | | Reviewed by: Submitted by: Obtained from:
* iBCS2 emulator core files.sos1994-10-1416-14/+6962
| | | | | | | | | | | | | | | | | | This is the main files for the iBCS2 emulator. It can be use compiled into the kernel by using: options IBCS2 options COMPAT_IBCS2 or as a lkm module using: options COMPAT_IBCS2 and then loading it via the ibcs2 script in /usr/bin REMEMBER: this code is still experimental ! NO WARRENTY ! Submitted by: sef@kithrup.com, mostyn@mrl.com, sos@kmd-ac.dk
* LKM module for the coff loader (used for iBCS2 emulation)sos1994-10-144-0/+136
|
* LKM module for the iBCS2 emulatorsos1994-10-147-20/+72
|
* Add new IS_INTERACTIVE flag. This lets you specify that the portjkh1994-10-141-3/+37
| | | | | | | | | | | is an interactive port, and requires user input somewhere along the way (either fetching, configuring, building or installing). If the user then sets BATCH in their environment, this port will be skipped. If the user sets INTERACTIVE, then ONLY those ports marked interactive are run (allowing one to do all ports in two passes). If the user sets both BATCH and INTERACTIVE, then a metal claw extends from the CRT and brutally yanks their nose off.
* Add ft.jkh1994-10-141-1/+1
| | | | Submitted by: babb
* Sigh. NOW it's ok! :-)jkh1994-10-141-2/+2
|
* Print a better verbose message when creating packages.jkh1994-10-141-3/+7
|
* This should do it - I forgot about pkg_info.jkh1994-10-142-7/+10
|
* Whoops - variable was in wrong scope. Correct.jkh1994-10-141-3/+2
|
* Fix bug in home directory calculation that I introduced with the free spacejkh1994-10-141-2/+2
| | | | | checking code. Fix the free space checking code, while I'm at it! ;) Thanks to Garrett for spotting the home dir problem.
* Fix bug in home directory calculation that I introduced with the free spacejkh1994-10-141-5/+9
| | | | | checking code. Fix the free space checking code, while I'm at it! ;) Thanks to Garrett for spotting the home dir problem.
* Fixed bug where page modifications would be lost when swap space wasdg1994-10-141-2/+11
| | | | | | almost depleted. Reviewed by: John Dyson
* Changed I/O error messages to be somewhat less cryptic. Removed a piecedg1994-10-141-6/+3
| | | | of unused code.
* Fix some endianness and packet header bugs found in BSDi's port of this code.wollman1994-10-131-14/+27
| | | | (From mbone mailing-list.)
* Damn, check in the wrong version, fixed.sos1994-10-131-3/+3
| | | | | | Reviewed by: Submitted by: Obtained from:
* Main iBCS2 include file. First part of iBCS2 emulator.sos1994-10-131-0/+266
|
* Made it possible for ioctl to return a value.sos1994-10-131-1/+29
| | | | | Ifdef by COMPAT_IBCS2 (used by the socksys system). Submitted by: Mostyn Lewis (mostyn@mrl.com)
* Fixed an object reference count problem that was caused by a call todg1994-10-131-4/+3
| | | | | | | vm_object_lookup() being outside of some parens. The bug was introduced via some recently added code. Reviewed by: John Dyson
OpenPOWER on IntegriCloud