summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Stop internal ident service spinning until the timeout if thedwmalone2000-10-021-0/+2
| | | | | | | connection goes away. Spotted by people on -STABLE about 2 weeks ago. Submitted by: Based on a patch by alfred and Maxime Henrion <mux@qualys.com>
* Fix StallOp implementaion. I've noticed that StallOp corresponds toiwasaki2000-10-022-2/+1
| | | | | | | OsdSleepUsec(), SleepOp corresponds to OsdSleep() by reading ACPICA source code. - Add OsdSleepUsec() which uses DELAY() simply. - Change unit of acpi_sleep() argument; microseconds to milliseconds.
* Really fix the struct callout collision. AMD does not need topeter2000-10-021-1/+1
| | | | | | | #include <sys/mbuf.h>. (which #include's <machine/mutex.h> and then <sys/proc.h> and then <sys/callout.h>, leading to the collision). <sys/mbuf.h> is really one of those 'no user servicable parts inside' things.
* fix some minor problem in PIOCSRESOURCE ioctl.sanpei2000-10-011-2/+2
| | | | | | | | | | | | | | - If resource which was allocated for pcic was requested via this ioctl, bus_alloc_resource would be succeeded and that resource was returned as free resource. So check whether requested resource was used for pcic or not before bus_alloc_resource test. - merge SYS_RES_IRQ routine into other SYS_RES_* routine and clean up. problem reported by: Yohei Terada <terada@jiro.c.u-tokyo.ac.jp>
* Remove ACPI_NO_OSDFUNC_INLINE option from kernel configuration. Nowiwasaki2000-10-012-0/+5
| | | | | | | that it's enabled in acpireg.h only if DIAGNOSTIC option is specified. ACPICA OSD functions will be compiled in machine/acpi_machdep.c again tentatively (if DIAGNOSTIC option is specified). # Should we have acpica_osd.c ?
* - Add acpi_disable_events() and set it with EVENTHANDLER_REGISTER in order toiwasaki2000-09-302-4/+20
| | | | | | | | avoid power on again problem after acpi_soft_off() calling. - Implement SleepOp/StallOp in AML interpreter. Also provide ACPICA compatibility. - Minor changes on __inline function declaration in acpica_osd.h (obtained from NetBSD porting).
* Update include paths for new header locations.msmith2000-09-308-8/+15
| | | | Submitted by: iwasaki
* More updates to the ACPI code:msmith2000-09-302-2/+7
| | | | | | | | | | | | | | | - Move all register I/O into acpi_io.c - Move event handling into acpi_event.c - Reorganise headers into acpivar/acpireg/acpiio - Move find-RSDT and find-ACPI-owned-memory into acpi_machdep - Allocate all resources (except those detailed only by AML) as real resources. Add infrastructure that will make adding resource support to AML code easy. - Remove all ACPI #ifdefs in non-ACPI code - Removed unnecessary includes - Minor style and commenting fixes Reviewed by: iwasaki
* Add ia64 support.dfr2000-09-294-0/+6
|
* Adjust for new location and name of kernel.jkh2000-09-292-66/+34
| | | | | PR: 21423 Reported by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
* Fix cosmetic error in rmjob message.wollman2000-09-271-2/+0
| | | | PR: 21006
* Set SO_REUSEADDR so that lpd can start while old lpd connections are stillwollman2000-09-271-2/+15
| | | | | | | winding down (or timing out). Also, be slightly more informative in mcleanup() about why lpd is exiting. PR: 21595
* Fix specification for ftp5.fr.freebsd.orgjkh2000-09-272-2/+2
| | | | Reported by: Jean-Claude Christophe <jch@oleane.net>
* Fix the http proxy fetch code.jkh2000-09-254-14/+40
| | | | | Submitted by: Philipp Mergenthaler <p@i609.hadiko.de> PR: 21449
* Re-add -P option (for POSIX-like command line interface)ache2000-09-252-6/+11
|
* GC some old no longer supported options.phk2000-09-251-1/+0
|
* Fix typomarko2000-09-251-1/+1
|
* Make the ``-r'' option actually do something :)marko2000-09-252-1/+3
| | | | | | Also tidy up it's output. Approved by: jkh
* Fix a small bogon with a boolean yes/no question check.jkh2000-09-252-4/+4
|
* Add Lithuania.jkh2000-09-242-0/+4
| | | | Submitted by: Domas Mituzas <midom@dammit.lt>
* One small tweak on the security profile code; don't be verbose ifjkh2000-09-244-52/+58
| | | | | setting up default values for an express/custom install. It would be confusing to see the informational popup completely out of context.
* Add forgotten -n option to SYNOPSIS sectionalfred2000-09-231-1/+1
| | | | Submitted by: Reinier Bezuidenhout <rbezuide@oskar.nanoteq.co.za>
* add ``xe'' driversanpei2000-09-222-0/+2
| | | | Approved by: jkh
* Update the mptable manpage to remove mention of kernel options (whichmsmith2000-09-221-2/+3
| | | | there aren't going to be shortly).
* Stop printing out the Nfoo options help, since these tunables are about tomsmith2000-09-221-26/+0
| | | | go away.
* One whack at the idea of having "security profiles" which select thejkh2000-09-2211-316/+454
| | | | | | | | appropriate(?) defaults for "low", "medium" and "high" security environments. Medium is basically what we currently have with a little seat-belt tightening where it made sense. Low is the same as medium but without the tightening. High is positively fascist with nothing turned on by default and an automatic call to 911 if it can find a modem.
* Remove the bogus check against "none" for release names (whichjkh2000-09-223-9/+11
| | | | | | | | | | really doesn't make any sense, what was I smoking) and allow the more canonical usage of "any" for either side of the comparison for release name or architecture (meaning you can also set CD_VERSION=any in a cdrom.inf file to cause sysinstall to always match it and likewise with the architecture, if specified). Sensibly suggested by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
* "zope language" --> "zope platform".sobomax2000-09-221-1/+1
| | | | Requested by: asami
* Add french and zope.asami2000-09-221-0/+2
|
* add ``check free resource rage code''sanpei2000-09-213-10/+32
| | | | for PC-Card which has no address in cis.
* Fix LINT breakage by options ACPI_NO_OSDFUNC_INLINE.iwasaki2000-09-211-0/+3
| | | | | | | Also space/tab-fix in NOTE. Grrr, my bad. Pointed-out by: eivind
* Fix PR #21245: handle wep keys correctly and pretty print hex keyswpaul2000-09-212-36/+42
| | | | | as appropriate. Nick: this sort of does what your changes did, except the hex/text printing is done automatically using isprint().
* Add new function in AML interpreter; aml_invoke_method().iwasaki2000-09-204-6/+16
| | | | | | | | Also remove unneeded includes in aml_obj.c and aml_parse.c. This new function takes 'struct aml_name *' as a argument rather than 'char *' where aml_invoke_method_by_name() does. It's worth to have these two interfaces in many cases.
* Fix a typobrian2000-09-201-1/+1
| | | | Spotted by: Manfred Antar <null@pozo.com>
* Add a new driver for the AMD PCnet/FAST, FAST+ and Home PCI adapters.wpaul2000-09-202-0/+2
| | | | | | | | | | | | | | Previously, these cards were supported by the lnc driver (and they still are, but the pcn driver will claim them first), which is fine except the lnc driver runs them in 16-bit LANCE compatibility mode. The pcn driver runs these chips in 32-bit mode and uses the RX alignment feature to achieve zero-copy receive. (Which puts it in the same class as the xl, fxp and tl chipsets.) This driver is also MI, so it will work on the x86 and alpha platforms. (The lnc driver is still needed to support non-PCI cards. At some point, I'll need to newbusify it so that it too will me MI.) The Am79c978 HomePNA adapter is also supported.
* fix previous PIOCSRESOURCE code in assign_card_indexsanpei2000-09-201-7/+10
|
* Improve region I/O sub-routines by re-writing most of low level partiwasaki2000-09-208-445/+732
| | | | | | | | | | | | | | | | | | | of AML interpreter. - Delete and cleanup a lot of almost duplicated code in kernel/userland. - Add new common functions for kernel/userland code. aml_adjust_readvalue(), aml_adjust_updatevalue(), aml_region_handle_alloc(), aml_region_handle_free() and aml_region_io(). - Add primitive functions for both versions of kernel/userland in order to have shared code as much as possible. aml_region_read_simple(), aml_region_write_simple(), aml_region_prompt_read(), aml_region_prompt_write() and aml_region_prompt_update_value(). - Consider update rule and access type in field flags. Also add a lot of definitions for the flags. - Fix bugs on bit manipulation for read/write operations. - Fix bugs on IndexField I/O part. Also add workaround for temporary object corruption during StoreOp interpretation.
* Put temporary output in ${TMPDIR:-/tmp}brian2000-09-192-7/+7
| | | | | | If $<basedir>_output is not set, don't redirect output PR: 21395
* Don't clobber $? before using it.brian2000-09-191-1/+2
| | | | Submitted by: James Barkley <jbarkley@wgate.com>
* Fix unexploitable off by one error as mentioned on Bugtraq.imp2000-09-191-2/+1
|
* Simplify the ftp directory search code a little and eliminate a warning.jkh2000-09-191-6/+4
|
* Fix symlink-to-a-dir handling in pkg_delete.sobomax2000-09-183-6/+24
| | | | | Reviewed by: -ports Tested by: bento
* cope with the following reply on PASV (without paren). need more tests.ume2000-09-171-4/+8
| | | | | | 227 Entering Passive Mode x,x,x,x,x,x,x Obtained from: KAME (1.8->1.9)
* pccard_beep parameter was already supported by rc.conf.sanpei2000-09-171-0/+4
| | | | (removed in Rev.1.3)(A(B
* add PIOCSRESOURCE(IOC_GET_RESOURCE_RANGE)sanpei2000-09-171-5/+36
| | | | | | | Now /usr/sbin/pccardd read free resource(io,irq) range with this ioctl. Original Idea from: PAO3
* Give users a way to alter the sendmail (and related utilities) buildgshapiro2000-09-174-1/+25
| | | | environment so they can enable functionality such as SASL, LDAP, Hesiod.
* Forgot semicolon after rcsidnsayer2000-09-171-1/+1
| | | | Submitted by: gshapiro
* Fix situations where none of the scripts executed produce output,brian2000-09-161-43/+54
| | | | | | | | | | | | | | so that we don't see any more ``null message body, hope that's ok'' messages. We now see something like ``No output from the 3 files processed''. Lump all output for a given periodic argument together so that people with /usr/local/etc/periodic/daily (for example) will get the output of those jobs together with the normal daily run rather than getting a second email. Prompted by: ben
* Enable crypto by default with "canned" distributions (it can stilljkh2000-09-162-4/+6
| | | | be deselected or simply not chosen in a custom install).
* 1. In key printing routine, the loop variable was j, but inside thensayer2000-09-162-19/+38
| | | | | | | | loop was referencing i. 2. Print keys in hex rather than ascii by default. 3. Add a -a flag to reverse #2 on demand.
OpenPOWER on IntegriCloud