summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Include the remote hostname in RPC-related warning messages. Exitiedowse2001-07-221-25/+24
| | | | | | | | | | | | | | | | | | immediately if a host specified by the -h flag cannot be parsed instead of attempting to unmount all NFS filesystems, which was bad. Add a missing return statement at the end of checkname(); this could result in a non-zero exit status in some cases even if the unmount succeeded. Group two separate NFS-related operations into one block to make it more obvious that a variable (hostp) is not dereferenced when uninitialised. Initialise it to NULL anyway to avoid a warning. Pass in the read_mtab()'s bogus argument as NULL instead of messing with a local variable to achieve the same effect. A later commit will clean up this mounttab interface.
* add prototype for dosetrlimitassar2001-07-222-2/+2
|
* revert previous accidental commitassar2001-07-222-2/+10
|
* get rid of some printf and pointer type warningsassar2001-07-229-25/+19
|
* Change a few read & write calls to use 'STDOUT_FILENO' instead of '1'.gad2001-07-222-7/+7
| | | | | | Submitted by: David Hill <david@phobia.ms> Reviewed by: freebsd-audit (a little) MFC after: 1 week
* The MA401 is a Prism IInsayer2001-07-211-1/+1
| | | | Approved by: imp
* ACPI CA doesn't recognis S4BIOS as a seperate sleep type anymore, somsmith2001-07-212-17/+0
| | | | drop support for it here until we work out a better way of handling it.
* add <sys/sytm.h> (for cpufunc.h -> rdtsc)assar2001-07-211-0/+1
|
* - Allow link-local multicast traffic for client.ume2001-07-211-3/+29
| | | | | | | - Allow ICMPv6 destination unreach, packet too big and NS/NA. - RIPng also uses link-local to link-local. MFC after: 1 week
* add an unused attribute to yyunput to avoid warnings (errors) whenassar2001-07-211-1/+5
| | | | it's not being used
* This was repo copied to src/release/alpha/fixit_crunch.conf.obrien2001-07-211-24/+0
| | | | The i386 and PC98 already had their own platform-specific version.
* I think this is OK for PC98, someone please check.obrien2001-07-211-3/+2
| | | | | | | | | As was done to i386/boot_crunch.conf: + Build with `lint' defined to cut out some of the `rcsid's (binaries' code 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).
* Fix the install kernel on a 1.44MB floppy again.obrien2001-07-211-0/+13
| | | | | | | | | | | | | | I had to be aggressively Draconian to succeed. I diked out: + Multia, NoName, PC/EB 64, Aspen Alpine support. + SCSI tape support + AMI MegaRAID controller support + All parallel bus support (includes PLIP) + vx (3c590, 3c595), pcn (AMD Am79C97x PCI 10/100), sf (Adaptec AIC-6915), sis (SiS 900/SiS 7016), ste (Sundance ST201 (D-Link DFE-550TX)), wb (Winbond W89C840F) support. If the removal of any of this support causes heartburn, please let me know.
* Unconditionalize these now that they live in ARCH-specific directories.obrien2001-07-214-297/+0
|
* + 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
OpenPOWER on IntegriCloud