summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Fix a typo: s/save_free/safe_free/.jhb2003-01-091-1/+1
|
* save_free the buf.obrien2003-01-091-0/+1
|
* Separate the uses of a buffer and make it dynamically sized.obrien2003-01-091-15/+16
| | | | | Approved by: scottl(re), jhb(re) Reviewed by: kuriyama
* Actually, the canonical way would be syntactically correct.des2003-01-091-1/+1
|
* Canonical way of determining whether or not to use crypto.des2003-01-091-1/+1
|
* Fix up some grammar.trhodes2003-01-091-2/+2
| | | | Noticed by: sheldonh
* Add code to parse the contents of an ACPI MADT table and to dump itsjhb2003-01-081-0/+176
| | | | | | | contents in the form of a comment in the acpidump output. The output is not in the prettiest output, but it does work correctly. Approved by: marcel
* Add structure definitions for the various items in a ACPI Multiplejhb2003-01-081-0/+105
| | | | | | APIC Descriptor Table (MADT) which has the signature 'ACPI'. Approved by: marcel
* For now, set only the resource limits and process priority associatedrwatson2003-01-081-1/+2
| | | | | | | | | | | | | | | | | with a class, rather than all aspects of the class when switching classes for an inetd service. Because we hard-code /daemon in the current inetd implementation, using SETALL has unfortunate side-effects involving the MAC code, and potentially other credential related settings in the future. This change maintains the DoS-resistent aspects of the class behavior, which is all that is promised in the inetd man page. A larger set of diffs providing more pluggability and configurability was deferred for this more simple approach in the short term. Reviewed by: ache Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Teach sysinstall about rpcbind, rpc.lockd, and rpc.statd. As an addedscottl2003-01-076-12/+76
| | | | | bonus, rpcbind will be enabled automatically if rpc.lockd, rpc.statd, amd, NFS Server, or NIS is enabled.
* Compare pointers to NULL rather than make it look like they are ints.obrien2003-01-061-2/+2
|
* save_realloc() should use reallocf() to close memory leaks.obrien2003-01-062-4/+4
| | | | item_add() should use safe_realloc() as it does no error checking itself.
* Update kernbb(8) to deal with GCC's new way of doing things.phk2003-01-063-86/+51
|
* Prevent buffer overflow in format_cmd() by properly tracking maximumjkh2003-01-064-16/+24
| | | | | | buffer size. Reported by: Lionnel CHAPTAL <Lionnel.Chaptal@IPricot.com> MFC after: 1 week
* Enable pppctl(8) on ia64.marcel2003-01-061-1/+1
|
* Build pppctl on sparc64, now that we have libc_r.tmm2003-01-051-1/+1
|
* - Remove speed_map API because speed_map is obsoleted by 1394a.simokawa2003-01-042-30/+3
| | | | - Add definition of OHCI_HCC_BIBIV in fwohcireg.h.
* - Handle zero sized directory right way.simokawa2003-01-042-12/+20
| | | | - Staticize.
* Make struct swblock kernel only, to make vm/swap_pager.h userland includable.phk2003-01-031-1/+1
| | | | | Move struct swdevt from sys/conf.h to the more appropriate vm/swap_pager.h. Adjust #include use in libkvm and pstat(8) to match.
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-0130-49/+55
| | | | especially in troff files.
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/schweikh2002-12-3012-51/+47
| | | | Add FreeBSD Id tag where missing.
* Back out rev 1.19; getbsize(3)'s original interface has been restored.mike2002-12-301-1/+1
|
* Back out rev 1.78; getbsize(3)'s original interface has been restored.mike2002-12-301-8/+6
| | | | Approved by: markm
* Back out rev 1.33; getbsize(3)'s original interface has been restored.mike2002-12-301-1/+1
| | | | Approved by: markm
* Make fully WARNS=5 clean.obrien2002-12-302-6/+6
| | | | Tested on: sparc64, x86
* Use basename(3).obrien2002-12-301-3/+2
|
* Import FireWire userland utility.simokawa2002-12-305-0/+759
|
* Use <sys/endian.h> rather than a private verison.obrien2002-12-302-60/+2
| | | | Tested on: sparc64, Athlon[32]
* Move elf2aout back to /usr/bin -- it is a general development tool, notobrien2002-12-303-172/+0
| | | | a sysadmin tool.
* This really isn't WARNS clean.obrien2002-12-301-2/+1
|
* Print old mixer levels when setting new ones.jmallett2002-12-301-2/+8
|
* Fix printf format errors on 64-bit platforms and make WARNS=5 compliant.wollman2002-12-292-23/+28
| | | | | | | Checked on Alpha and IA32. Reviewed by: maintainer timeout MFC after: 1 week
* Add support for MPI-350 the mini-pci Cisco Aironet card. This needs moreambrisko2002-12-292-21/+128
| | | | | | | | | | | | | | | | | | | | | | work. The interface was gleaned from the Linux driver. Currently only one RX & one TX buffer are used. Firmware support is not tested so for the MPI-350 so it is disabled. Signal cache and monitor mode are not supported yet. Signal cache is not supported since in encapsulation mode ethernet frames are returned by the chip. LAN monitor mode support will be added shortly. Thanks to Warner for the MPI-350 card he sent me. Add support for RSSI map from PR kern/32880 which was incomplete. Enhanced with the ability to select the cache mode of raw, dbm or per-cent. Clean up Signal/Noise/Quality structures and units with help from Marco Molteni. Change flash to use a malloc'ed buffer when needed. PR: kern/32880 Submitted by: Douglas S. J. De Couto decouto@pdos.lcs.mit.edu, Marco Molteni MFC: 3 weeks
* Use the new sector0 munging ioctls to make boot0cfg work under GEOM.phk2002-12-291-8/+31
|
* Since our default boot block now supports UFS1 and UFS2 even onrwatson2002-12-282-14/+4
| | | | | | | | i386, remove the seatbelt preventing users from setting the UFS2 flag on the root file system on i386. This seatbelt did not exist on other platforms. MFC candidate.
* english(4) police.schweikh2002-12-2736-54/+54
|
* POLA dictates that in the file designated with the -f optionru2002-12-272-2/+12
| | | | | | | | argument, leading whitespace and empty lines be ignored, and the `#' character marks the rest of the line as a comment. PR: bin/45958 MFC after: 3 days
* s/pseudo-device/device/ru2002-12-261-1/+1
|
* mdoc(7) police: Deal with self-xrefs.ru2002-12-245-6/+6
|
* Fix usbd.conf parsing: fgetln(3) returns a string without terminatingmaxim2002-12-241-1/+1
| | | | | | | NUL character so do not expect it. PR: bin/46489 MFC after: 1 week
* Various language tweaks.trhodes2002-12-241-17/+17
| | | | | PR: 45604 Submitted by: Chris Pepper <pepper@rockefeller.edu>
* Add a new ftp mirror in Ireland which offers a service over IPv6.dwmalone2002-12-232-0/+8
| | | | | MFC after: 1 week Reviewed by: ume
* Fix typo: vunerable -> vulnerable.pb2002-12-221-1/+1
|
* Make newsyslog(8) print the correct date when the logs are turned over.trhodes2002-12-211-2/+2
| | | | | | PR: 46395 Submitted by: maxim MFC: eventually
* Correct path to /usr/sbin/sysinstall for HEAD since that's where it lives now.jkh2002-12-202-6/+6
|
* o Use sysctl machdep.acpi_root to get the physical address of themarcel2002-12-194-17/+42
| | | | | | | | | | | RSDP. Scan the first 1MB on i386 if the sysctl fails, o Extend struct ACPIrsdp with the ACPI 2.0 fields which involves changing a prior reserved field into the ACPI revision, o Only calculate the RSDP checksum on the first 20 bytes to remain compatible with ACPI 1.0 tables; we don't check the extended checksum covering the whole table, o Use the length field in the RSDP to map the RSDP into the address space so that we don't have to know about future extensions here.
* On drives that returns 00 as 100% done, lower the criteriasos2002-12-181-13/+13
| | | | | | for wraparound, 99 was too much for fast drives since they do not give 99 as the last value, but instead something in the 90's range.
* Change the name for the local unix-socket based protocolmbr2002-12-162-6/+13
| | | | | | | | | from "unix" back to "local". Add some compat stuff so both ways work for some time. Reviewed by: phk Approved by: imp (UPDATING) Requested by: iedowse, lukem@netbsd.org
* Add a new `W' flag, that when used in conjunction with the `Z' flag or thesobomax2002-12-152-8/+38
| | | | | | | | | | | | | | `J' flag means that newsyslog should wait for previously started compression jobs to complete before starting a new one for this entry. When it is used along with the `G' flag, in the case when several logfiles match the pattern and should be compressed, the newsyslog will compress logs one by one, ensuring that only one compression job is running at a time. This prevents newsyslog(8) from overloading system by starting several compression jobs on big files simultaneously. Sponsored by: Porta Software Ltd MFC after: 2 weeks
* Update ROOT_MIN_SIZE for i386 to 118MB (and other ROOT_*_SIZE).kuriyama2002-12-154-10/+10
|
OpenPOWER on IntegriCloud