summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* + Build with `lint' defined to cut out some of the `rcsid's (binaries' codeobrien2001-07-212-6/+4
| | | | | | | only, the libs will still have the `rcsid's in them). + mount_mfs is OBE. + Do not need libipx as I have conditionally diked that functional out of ifconfig(8).
* + Build with `lint' defined to cut out some of the `rcsid's (binaries' codeobrien2001-07-211-7/+6
| | | | | | | | | only, the libs will still have the `rcsid's in them). + mount_mfs is OBE. + The Alpha install does not support SLIP, PCCARD or USB installs; so we do not need the associated userland utils. + Do not need libipx as I have conditionally diked that functional out of ifconfig(8).
* dokern.sh was repo copied from src/release/scripts toobrien2001-07-211-1/+1
| | | | src/release/${MACHINE_ARCH}
* This has been repo copied to src/release/${MACHINE_ARCH}/dokern.shobrien2001-07-211-177/+0
|
* This has been repo copied to src/release/${MACHINE_ARCH}/boot_crunch.confobrien2001-07-211-30/+0
|
* add <sys/cdefs.h> (for __unused and such)assar2001-07-211-0/+1
|
* null_do_probe: mark as unusedassar2001-07-211-0/+2
|
* (vm_page_select_cache): add prototypeassar2001-07-211-0/+1
|
* Another hangup bugfix from Juha:hm2001-07-211-0/+4
| | | | | | | | | | | | Problem 1 is that the config entry hangup flag is zeroed only at CONNECT_ACTIVE_IND in msghdl.c. If any (other) call is disconnected after EV_MDO and before CONNECT_ACTIVE_IND, the cleanup routine will disconnect the in-progress dialout as well, if its hangup flag is nonzero (which it is likely to be) after the previous incarnation of the cfg entry. Patch-1 fixes this by clearing the hangup flag as soon as a cfg entry is reserved for the call. Submitted by: Juha-Matti Liukkonen <jml@cubical.fi>
* Fix hangup bug; Juha writes:hm2001-07-211-5/+3
| | | | | | | | | | | | | Problem 2 is that doing a local hangup (eg. by writing "H" to the dialout device) to a call which is already disconnected results in isdnd moving the cfg entry to an illegal state, from which there is no recovery. This is tricky because there is no way to synchronize local hangup with the remote end (ie. the callee can always hang up at an inconvenient time)! Hence, patch-2 alters fsm.c's EV_DRQ state table such that the local hangup request is processed or ignored in most states, even for disconnected calls. Submitted by: Juha-Matti Liukkonen <jml@cubical.fi>
* Change the foreground mount behaviour so that we keep retryingiedowse2001-07-212-7/+26
| | | | | | | | | | forever by default. This matches what mount_nfs did before revision 1.40, and it is the generally expected behaviour for NFS mounts. Document the current defaults near the start of the man page and mention the options that can be used to change them. Discussed on: -hackers
* Unset MAINTAINER.rnordier2001-07-2111-22/+0
|
* Add a patch from the isdn mailinglist, Juha writes:hm2001-07-211-0/+1
| | | | | | | | | | ppp in 4.x apparently does a close(2) after opening the tun device; i4brunppp starts up with only file descriptors 0 and 1 open (to the rbch device) -> tun gets opened as 2 -> tun gets closed -> later use results in EBADF. A quick fix to i4brunppp.c makes the thing work (I know, this is ugly, but I needed it up quick...): Submitted by: Juha-Matti Liukkonen <jml@cubical.fi>
* Add the i4brunppp utility to the example section. This utility is one wayhm2001-07-215-0/+373
| | | | of taking incoming calls with i4b in conjunction with userland ppp(8).
* update step.hm2001-07-212-4/+4
|
* update ReleaseNotes for isdnd keyword maxconnecttimehm2001-07-211-1/+5
|
* After being port- and addressscanned continously from several sources wherehm2001-07-216-10/+41
| | | | | my line stayed open for more than eight hours i decided to implement a maximum connection time; see keyword maxconnecttime in the manual page.
* Convert from acpi_strerror() to AcpiFormatException()msmith2001-07-2113-43/+39
| | | | Fix dangling include of the dear departed acpi_ecreg.h
* Add missing closing parenthesis.ben2001-07-211-1/+1
|
* Show an example of how to sort a file listing by size. Hopefully thisobrien2001-07-211-0/+9
| | | | | will reduce the number of people calling for this functionality to be added to ls(1).
* Update the OSD module to match the ACPI CA 20010717 import.msmith2001-07-218-144/+178
| | | | Submitted by: "Grover, Andrew" <andrew.grover@intel.com> (OsdHardware.c)
* Implement a "proper" timecounter hung off the ACPI timer device.msmith2001-07-211-20/+207
| | | | | | | | | This code is based on the mp_clock code by phk. It attempts to detect the PIIX4 (see comments for details) and use a workaround for its problems. This code is experimental, and could use some testing and review by a timekeeping enthusiast.
* Merge the EC register definitions into the EC module proper, they're notmsmith2001-07-212-204/+71
| | | | | | used anywhere else. AcpiOsSleepUsec() -> AcpiOsStall()
* Use our saved copy of the FADT rather than fetching it again.msmith2001-07-211-13/+5
|
* Don't call ourselves a "control method" anything, that's not useful.msmith2001-07-211-4/+6
| | | | | Move the "button pressed" diagnostics to the point where we can print out which button was actually pressed.
* The API for loading tables changed (we no longer explicitly search for themsmith2001-07-212-19/+4
| | | | | | | | | | | RSDP, it's now found via a callback). AcpiOsSleepUsec() went away, use AcpiOsSleep() instead (we could use AcpiOsStall() too) AcpiFormatException() was changed to make more sense (it behaves like our old acpi_strerror() did), so throw acpi_strerror() away (still #defined in acpivar.h though, we need to sweep these seperately).
* Merge local changes with the ACPI CA 20010717 import.msmith2001-07-215-114/+80
|
* This commit was generated by cvs2svn to compensate for changes in r80062,msmith2001-07-2177-1287/+1240
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of the Intel ACPI CA 20010717 snapshot.msmith2001-07-2182-1401/+1320
| |
* | This commit was generated by cvs2svn to compensate for changes in r80060,msmith2001-07-211-0/+190
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of the Intel ACPI CA 20010717 snapshot.msmith2001-07-211-0/+190
| |
* | Hide in the Attic. This isn't built any more (it wont) and it can betterobrien2001-07-2123-1878/+0
| | | | | | | | collect dust up there.
* | Dike out the IPX bits if RELEASE_CRUNCH is defined.obrien2001-07-212-2/+23
| |
* | Hint getaddrinfo() correctly if we're looking up a name that we got frombrian2001-07-211-2/+9
| | | | | | | | | | | | an AF_INET6 address. MFC after: 1 week
* | Add a missing ~ so that the LO_INITIALIZED flag actually gets turned offjhb2001-07-201-1/+1
| | | | | | | | in witness_destroy().
* | Put a knob in the kernel config files to tweak the user max stack size.pirzyk2001-07-203-4/+9
| | | | | | | | | | | | PR: kern/28925 Reviewed by: bakul@bitblocks.com and tlambert2@mindspring.com on -arch. MFC after: 1 week
* | gif isn't a count device anymore so don't put a number after it.brooks2001-07-202-2/+2
| | | | | | | | Pointed out by: brian
* | Do more strict checking for an interface.ume2001-07-202-6/+6
| | | | | | | | | | Suggested by: matusita@jp.FreeBSD.org MFC after: 1 week
* | o Add phantom's gethostinfo() function to reduce duplicated code.mike2001-07-201-49/+56
| | | | | | | | | | | | | | | | | | | | o Increase readability by creating a wrapper for asprintf(3). o Cast isdigit(3) argument to unsigned char for future locale changes. Submitted by: phantom Reviewed by: -audit, des Approved by: des
* | Fix some nits I missed in my style cleanup.obrien2001-07-201-2/+2
| |
* | MFCrypto: fixed the remote buffer overflow.ru2001-07-206-310/+204
| |
* | Removed CSRG ids. CSRG never had anything to do with dpt.bde2001-07-207-28/+0
| | | | | | | | | | | | | | Don't set BINMODE to 500. This is not a setuid program. Note: the dpt utilities have never been attached to the world and haven't been compilable for a year or two.
* | Fix typo; the meaning of the 3rd parameter to genkbd_keyaction() isyokota2001-07-201-1/+1
| | | | | | | | | | | | | | 'up' rather than 'down'. PR: 22466 MFC after: 10 days
* | Fix off by one error for ESC[1J.yokota2001-07-201-1/+1
| | | | | | | | | | PR: kern/18381 MFC after: 10 days
* | Forgot to mention that previous commit (1.4 --> 1.5) would be:sobomax2001-07-200-0/+0
| | | | | | | | MFC after: 2 weeks
* | Use reallocf(3) to increase size of malloc'ed buffer instead ofsobomax2001-07-201-7/+4
| | | | | | | | malloc()+memcpy()+free().
* | Define a couple of subroutines to replace duplicated common code. Youyokota2001-07-201-65/+59
| | | | | | | | shoulnd't see any functional difference.
* | Return consistent key action codes at key press and releaseyokota2001-07-208-95/+108
| | | | | | | | | | | | | | | | | | | | events. Otherwise you would see unexpected results if shift or locking keys are defined to give different actions depending on other shift/locking keys' state. Please keep the ukbd module and the kernel in sync, otherwise the USB keyboard won't work after this change. MFC after: 10 days
* | More potential buffer overflow fixes.ru2001-07-208-70/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o Fixed `nfrontp' calculations in output_data(). If `remaining' is initially zero, it was possible for `nfrontp' to be decremented. Noticed by: dillon o Replaced leaking writenet() with output_datalen(): : * writenet : * : * Just a handy little function to write a bit of raw data to the net. : * It will force a transmit of the buffer if necessary : * : * arguments : * ptr - A pointer to a character string to write : * len - How many bytes to write : */ : void : writenet(ptr, len) : register unsigned char *ptr; : register int len; : { : /* flush buffer if no room for new data) */ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ : if ((&netobuf[BUFSIZ] - nfrontp) < len) { : /* if this fails, don't worry, buffer is a little big */ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ : netflush(); : } : : memmove(nfrontp, ptr, len); : nfrontp += len; : : } /* end of writenet */ What an irony! :-) o Optimized output_datalen() a bit.
* | We haven't used this for ages, and we're not going to either.msmith2001-07-201-167/+0
| |
OpenPOWER on IntegriCloud