summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* - Update l2ping(8) man page and mention that it is possible to use namesemax2004-08-042-42/+70
| | | | | | | | | | | instead of BD_ADDRs - Convert BD_ADDRs in l2ping(8) output into the human readable names via bt_gethostbyaddr(3) - Introduce and document '-n' - numberic output option Suggested by: Anil Madhavapeddy <anil at recoil dot org>
* Pass the partition type to get_mountpoint() and new_part(). This waymarcel2004-08-042-122/+58
| | | | | | | | | | | | we'll actually create an EFI partition with a FAT file system instead of an UFS file system. It also allows us to give a sensible default mount point for EFI partitions so that people don't have to guess. This also means that we can now remove new_efi_part(), which did the same thing as new_part(), except it created a FAT file system. The function wasn't called when the EFI partition was created from scratch though, which was the problem. By passing the partition type to the various functions, we can deal with EFI without having to duplicate code.
* Teach moused about Synaptics touchpads.philip2004-08-032-1/+12
| | | | | | | While I'm here, document the existence of the '-l' option, which allows one to use moused to use psm in some more interesting ways. Approved by: njl (mentor)
* Enable packet mode by default. Disk drives have gotten so large now,obrien2004-08-031-1/+1
| | | | it is often the case the partition one wants to boot is above cylinder 1023.
* Move the inclusion of libdisk.h from sysinstall.h to the source filesmarcel2004-08-0214-2/+12
| | | | | | | that actually need it. This makes it easier for a platform porter to find the files that may need tweaking to support whatever MD specific partitioning is needed. It also helps to prevent that the libdisk API gets exposed and/or used where it's not needed.
* Today, RealTek sent me a driver to test which had been compiled withwpaul2004-08-021-45/+43
| | | | | | | | | | | | | some debug support turned on. It turns out the sections in this driver binary had relative virtual addresses (RVAs) that were different from the raw addresses, and it had a .data section where the virtual size was much larger than the raw size. (Most production binaries produced with the Microsoft DDK have RVA == PA.) There's code in the ndiscvt(8) utility that's supposed to handle the vsize != rsize case, but it turns out it was slightly broken, and it failed to handle the RVA != RA case at all. Hopefully, this commit will fix all that.
* Document machdep.enable_panic_key.scottl2004-08-021-1/+5
| | | | Submitted by: Craig Rodrigues
* Remove unnecessary use of the __ia64__ conditional. This slightly improvesmarcel2004-08-012-10/+6
| | | | maintainability and generally avoids confusion.
* Big mess 'o changes:wpaul2004-08-012-12/+265
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Give ndiscvt(8) the ability to process a .SYS file directly into a .o file so that we don't have to emit big messy char arrays into the ndis_driver_data.h file. This behavior is currently optional, but may become the default some day. - Give ndiscvt(8) the ability to turn arbitrary files into .ko files so that they can be pre-loaded or kldloaded. (Both this and the previous change involve using objcopy(1)). - Give NdisOpenFile() the ability to 'read' files out of kernel memory that have been kldloaded or pre-loaded, and disallow the use of the normal vn_open() file opening method during bootstrap (when no filesystems have been mounted yet). Some people have reported that kldloading if_ndis.ko works fine when the system is running multiuser but causes a panic when the modile is pre-loaded by /boot/loader. This happens with drivers that need to use NdisOpenFile() to access external files (i.e. firmware images). NdisOpenFile() won't work during kernel bootstrapping because no filesystems have been mounted. To get around this, you can now do the following: o Say you have a firmware file called firmware.img o Do: ndiscvt -f firmware.img -- this creates firmware.img.ko o Put the firmware.img.ko in /boot/kernel o add firmware.img_load="YES" in /boot/loader.conf o add if_ndis_load="YES" and ndis_load="YES" as well Now the loader will suck the additional file into memory as a .ko. The phony .ko has two symbols in it: filename_start and filename_end, which are generated by objcopy(1). ndis_open_file() will traverse each module in the module list looking for these symbols and, if it finds them, it'll use them to generate the file mapping address and length values that the caller of NdisOpenFile() wants. As a bonus, this will even work if the file has been statically linked into the kernel itself, since the "kernel" module is searched too. (ndiscvt(8) will generate both filename.o and filename.ko for you). - Modify the mechanism used to provide make-pretend FASTCALL support. Rather than using inline assembly to yank the first two arguments out of %ecx and %edx, we now use the __regparm__(3) attribute (and the __stdcall__ attribute) and use some macro magic to re-order the arguments and provide dummy arguments as needed so that the arguments passed in registers end up in the right place. Change taken from DragonflyBSD version of the NDISulator.
* Reflect changes in sendmail 8.13 source treegshapiro2004-08-011-4/+4
|
* Drop WARNS down to 3 since sparc64 still has justified complaints aboutnjl2004-07-301-1/+1
| | | | | | bad casts. Noticed by: johan
* Clean up some more casts. Note that the an_fudge alignment hack fornjl2004-07-301-23/+17
| | | | | struct an_ltv_stats needs to be fixed. It has been here since this was imported.
* Mark as WARNS 6 now that sign cleanups are done.njl2004-07-301-1/+1
|
* Fix printing of stats by printing an unsigned value as unsigned. ANSIfynjl2004-07-301-197/+152
| | | | | | function prototypes. Remove unnecessary returns. Submitted by: David Hill <davidh -at- wmis.net>
* Add configuration option "set pppoe [standard|3Com]" which allowsglebius2004-07-295-3/+47
| | | | | | | to configure mode for ng_pppoe(4) node under control. Reviewed by: brian Approved by: julian (mentor)
* Disable memory locking that could keep watchdogd from deadlocking itselfgreen2004-07-281-4/+0
| | | | | | if the swap subsystem failed. Requested by: phk
* Use the length modifier 'll' instead of 'q' to print long longs.stefanf2004-07-283-4/+4
|
* Avoid casts as lvalues.kan2004-07-282-5/+8
|
* Downgrade WARNS level to more tolerable value. Attempt to fixkan2004-07-287-14/+16
| | | | casts as lvalue usage whenever possible.
* Move __iniline function definition before its first usage in the file.kan2004-07-281-8/+7
|
* Temporarily disable kernbb utility. It has to learn about new gcov datakan2004-07-281-1/+0
| | | | format first.
* Add workaround for brain damaged cell phonesemax2004-07-272-3/+62
| | | | PR: bin/67906
* mlockall(2) was introduced during the 5.0-CURRENT lifetime.roberto2004-07-251-0/+2
|
* Now that mlockall(2) is unbroken, use it to keep watchdogd(8) permanentlygreen2004-07-231-0/+4
| | | | out of swap.
* Include support for NOCRYPT & NO_OPENSSL world.roberto2004-07-224-5/+20
| | | | | | | | It does survive « make release ». Uses an upcoming patch from the vendor branch (ntp-stable) of ntp-keygen. Submitted by: Marius Strobl <marius@alchemy.franken.de>
* Correct another cut/paste mistake. Sorry folks.roberto2004-07-221-1/+1
| | | | | Pointy hat to: me Submitted by: Marius Strobl <marius@alchemy.franken.de>
* Remove arlib (libares.a) from the build. It is not IPv6 compatible, notroberto2004-07-222-13/+1
| | | | | | really tested and probably not 64 bits-safe. Discussed with: Harlann Stenn <www.ntp.org>
* Correct a cut/paste error.roberto2004-07-221-1/+1
|
* Allow ntpd to be compiled w/o readline when NO_GNU is defined. Part of aroberto2004-07-223-7/+21
| | | | | | | | larger patchset to get a GNU-free world. Patch rewritten to cope with the 4.2.0 changes. Submitted by: des
* Add support for ignoring locking failures. This is only enabled whenimp2004-07-212-4/+19
| | | | | | | | | | you've specified a directory. It is intended to be used in building custom releases over NFS where locking may be unreliable at best and there is no contention that the locking is designed to arbitrate. Other uses of this flag are discouraged. Document same in usage and man page (including the warning about unwise). Sponsored by: Timing Solutions
* Two style related changes:imp2004-07-211-5/+5
| | | | | | | (1) use strlcpy instead of strncpy since the use here of the latter was incorrect. (2) Move 'N' case into proper sorted order (sorted the same way that ls sorts its args).
* Remove reference to fla driver.phk2004-07-202-2/+0
|
* Add missing Makefile from previous commit.roberto2004-07-201-0/+15
|
* Update our ntpd to the long awaited 4.2.0 version.roberto2004-07-2014-290/+248
| | | | | | | | | | | | | | | This bring us several things: - updated drivers - IPv6 support at last - ntp-genkeys is replaced by ntp-keygen - ntptrace is now a script (courtesy of John Hay) - lots of renamed files from .htm to .html (while I prefer .html, I find the change a bit gratuitous) - still no manpages :( Please test and report. Commit very much helped by: GNU arch (http://gnuarch.org/)
* Report the number of bytes not written when complaining about failed writesbrian2004-07-201-2/+2
|
* Priner control devices are now lpt*.ctl.obrien2004-07-181-1/+1
|
* Support a ``set rad_alive N'' command to enable periodic RADIUS accountingbrian2004-07-177-42/+190
| | | | | | | | | | | information being sent to the RADIUS server. Logging of RADIUS accounting information moves to a ``set log [+-]radius'' level, along with the RADIUS alive info, and the version number is bumped to 3.2 to reflect this. Mostly submitted by: alx@sm.ukrtel.net (back in January) MFC after: 3 weeks
* After talking to Colin,mr2004-07-163-64/+70
| | | | | | | | apply the patch of bin/61718 (which should include/elimatate kern/61122 also). It seems to fix a few annoying bugs. PR: bin/61718, kern/61122 Submitted by: bg@sics.se ohartman@mail.physik.uni-mainz.de
* Refer to the sysutils/cdrtools port now that the sysutils/mkisofs portkeramida2004-07-161-1/+4
| | | | | | | | has been merged into the former. PR: docs/69087 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> MFC after: 3 days
* Reenable nullfs for local links. The change from 'struct vfsconf'mbr2004-07-151-3/+3
| | | | | to 'struct xvfsconf' broke auto configuration. Patches have been submitted to the vendor.
* Fix ``set ifaddr''. The code was actually using an uninitialised variable,brian2004-07-151-1/+1
| | | | | | | | | | but conveniently, because ncpaddr.ncpaddr_family != AF_INET, the call to ncpaddr_getip4addr() became a no-op leaving the local address as it was (defaulting to whatever my hostname resolves to). PR: 62050 Submitted by: Peter Jeremy <peter.jeremy@alcatel.com.au> MFC after: 3 days
* Fix 'camcontrol rescan' syntax and use the proper indentation forroam2004-07-151-2/+2
| | | | | | | | the FILES list. PR: 66827 Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us> MFC after: 2 weeks
* Remove a stray backslashbrian2004-07-141-1/+1
|
* Fix a few cases that relied on 'implicit int' (constraint violation in C99).stefanf2004-07-112-1/+2
|
* Markup nit picking.ru2004-07-091-6/+5
| | | | Reviewed by: joerg
* Make bluetooth compile on all platformsemax2004-07-071-3/+4
| | | | Reviewed by: imp, ru
* PC98 got it right here: sectors can be non-512 byte sized.phk2004-07-071-5/+0
|
* mdoc(7) fixes.ru2004-07-074-14/+18
|
* Generate fresh aux_conf.h.mbr2004-07-061-18/+6
|
* Check if `dirmask' is a member of `pcfs_args_t'.mbr2004-07-061-0/+3
| | | | | | | | A diff to the autoconf aux-files has been submitted to the amd people. PR: 57401 Submitted by: Andre Albsmeier <andre.albsmeier@siemens.com>
OpenPOWER on IntegriCloud