summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Add new NTP servers for Taiwan.ceri2006-03-012-0/+30
| | | | | | | PR: bin/92160 Submitted by: Jose Liang <jose at jose dot idv pinkt tw> Approved by: jhb MFC After: 2 days
* Wrap keymap menu helper functions in #ifdef WITH_SYSCONS to unbreak thejhb2006-03-012-0/+4
| | | | | | build on archs that don't include syscons support in sysinstall. Reported by: sparc64 tinderbox
* Fix numerous warnings. Aside from menu items in system.c and menu.cjhb2006-02-2824-72/+59
| | | | | | | | this now compiles on i386 with WARNS?= 3. Most of the fixes included adding missing 'static' keywords to internal functions, using fully-defined terminators in statically defined arrays of structs, and various signed vs unsigned mismatches. Also G/C'd unused configSecurity() function.
* Use some helper macros for the device table so it can fit in 80 columns andjhb2006-02-282-154/+178
| | | | | to allow us to use default values in some entries to quiet warnings. This table is actually readable again now.
* Drop unused major, minor, and delta values from device table.jhb2006-02-282-46/+40
|
* G/C some cruft.jhb2006-02-284-74/+4
|
* - Autogenerate a menu containing a list of countries and keymaps supportedjhb2006-02-2814-8/+392
| | | | | | | | | | | | | | | by syscons. - If we are running as init, popup the country menu before the main menu. If a non-default country is chosen, then a second menu is brought up to let the user choose a keymap. By default the default keymap for the country that was selected is highlighted. If the user chooses the default country, then the default keymap is just assumed and the user is not presented with the keymap menu. Currently the default country is set to "United States" except for PC98 which assumes "Japan". PR: bin/93853 Submitted by: Seth Kingsley sethk at magnesium dot net MFC after: 3 days
* A bandaid to unbreak world.ru2006-02-271-0/+1
|
* Reconnect bsnmpd to the build. It was temporarily disable because of aharti2006-02-271-0/+1
| | | | mis-import. Thanks for fixing this to markm@.
* Fix pmccontrol(8) on Intel Xeon's running in 64 bit mode.jkoshy2006-02-271-1/+1
| | | | PR: kern/93773
* Reference sha256(1) instead of sha256(8), which doesn't exist.wkoszek2006-02-261-1/+1
| | | | | Approved by: cognet (mentor) MFC after: 3 days
* The quot command expected all inodes contents to be valid, howeverdwmalone2006-02-251-3/+31
| | | | | | | | | | | | | | | | | on UFS2 inodes are initialised as they are needed, rather than at newfs time. When quot encountered these inodes it could produce crazy results. Now, on UFS2 filesystems, quot's get_inode function will bzero unallicated inodes before passing them back to a caller. This is how UFS2 initialises new inodes, so this should work OK. Also, while I'm here, make quot exit with an error if it finds inodes of an unknown type. This should help catch future problems of this type. Reviewed by: iedowse MFC after: 1 week
* - Back out 1.155. I mismerged my ancient local patch. Luckily it wasjkim2006-02-232-36/+46
| | | | | | | | completely noop. - Geometry sanitization for non-interactive mode is moved to correct place. Reported by: Anton Yuzhaninov <citrin at citrin dot ru> Pointyhat: me
* - Use official version strings for LMP and HCI version reporting and addmarkus2006-02-234-7/+42
| | | | | | | | version strings up to Bluetooth 2.0 - Update manufacturer list Approved by: emax MFC after: 3 days
* Fix typojulian2006-02-231-1/+1
|
* use the specified key index for non-group keys; this fixes staticsam2006-02-211-4/+5
| | | | | | | | | wep key configure at key indices > 0 and 802.1x/EAPOL operation with ap's that want the station to install a key at indices > 0. Hard work by: Joe Love Reviewed by: avatar MFC after: 1 week
* Fix scancode translation tablemarkus2006-02-201-2/+3
| | | | | Approved by: emax MFC after: 3 days
* Back out revs 1.18 and 1.19; they were based on incorrect assumptions.des2006-02-191-4/+0
| | | | Requested by: nate
* Build audit command line tools only if NO_AUDIT isn't defined.rwatson2006-02-181-4/+11
| | | | | Submitted by: brueffer Obtained from: TrustedBSD Project
* Look for cpu/ichss instead of cpu/p4tcc, which is i386/amd64-only.des2006-02-181-1/+1
|
* Load cpufreq at startup if it isn't there already.des2006-02-181-0/+4
|
* Replace the guts of usbmodule() with calls to the new kld(3) functions.des2006-02-181-34/+1
|
* Change default build of wpa_supplicant to include EAPOL support;sam2006-02-142-5/+5
| | | | | | | | ENABLE_WPA_SUPPLICANT_EAPOL is no more, now use NO_WPA_SUPPLICANT_EAPOL to build with only WPA-PSK support. Reviewed by: ru, bsdimp (basic approach) MFC after: 1 week
* Disconnect bsnmp from the build until the breakage is sorted out.harti2006-02-141-1/+0
|
* s/lp/plip/ for PLIP interfaces.ceri2006-02-133-3/+3
| | | | | Approved by: jhb MFC after: 1 week
* Link the new file from the vendor fix to the build and installharti2006-02-131-3/+8
| | | | the new MIB files. Add a target to smilint the MIB files.
* Fix pkg_version with the -o argument to print the origin.krion2006-02-121-4/+5
| | | | | Submitted by: Sebastian Stach <sebsta AT t-online DOT de> MFC after: 3 days
* Document the two argument form of the "machine" directive.jkoshy2006-02-121-1/+12
| | | | | Reviewed by: imp MFC After: 3 days
* - Grammar fixesmarkus2006-02-111-21/+21
| | | | | | | - Reword one sentence Approved by: brueffer MFC after: 3 days
* - Fix attribute id of HIDBatteryPowermarkus2006-02-101-5/+5
| | | | | | - Fix two typos in comments Approved by: emax
* Actually fix the DHCP handling, by using more robust detection of DHCPdelphij2006-02-091-2/+8
| | | | | | | setting. While there, add some more debug messages explaining what is happening, and some comments to improve readability. Submitted by: ceri
* Refuse to install invalid ARP entries.glebius2006-02-091-2/+3
| | | | Submitted by: Vitaliy Ovsyannikov <V.Ovsyannikov kr.ru>
* Remove attempts to use mknod.ceri2006-02-073-89/+7
| | | | Approved by: jhb
* Attempt to fix DHCP address acquisition which was broken by rev. 1.133.delphij2006-02-061-3/+6
| | | | MFC After: 3 days
* Another update for reality: "dangerously dedicated" mode is nowceri2006-02-062-50/+46
| | | | | | | achieved by hitting 'F', which is no longer undocumented. PR: bin/92533 Submitted by: Rudolf Cejka <cejkar at fit.vutbr dot cz>
* Correct a user-visible typo.ceri2006-02-052-2/+2
|
* Gratuitous "typo in comment" fix.ceri2006-02-052-2/+2
|
* Bring these files somewhat into the present.ceri2006-02-0514-149/+126
| | | | | | | Perform some rewording while here. Remove register.hlp, since the code that deals with it was removed nearly 7 years ago.
* Perform minor rewording and grammatical improvement. Add a missing Xr.ceri2006-02-041-31/+40
|
* Add a -A argument to mergemaster to allow explicitly specifying anrwatson2006-02-042-8/+17
| | | | | | | | | architecture to pass through to the underlying makefiles. This is quite useful when building on an i386 box to populate an amd64 NFS root. Head nod: dougb MFC after: 1 week
* Allow newer config versions to config older versions with the sameimp2006-02-032-21/+30
| | | | | | | | major number. Reviewed by: ru@, jhb@, arch@ (a few months ago) # this is subject to refinement based on experience.
* Remove reference to auditon(8), this tool has been superseded byrwatson2006-02-021-1/+0
| | | | | | auditd(8), and was committed in error. Obtained from: TrustedBSD Project
* Enable building of OpenBSM command line tools:rwatson2006-02-025-0/+62
| | | | | | | | | | | - audit(8) - audit subsystem management tool - auditd(8) - audit trail and subsystem management daemon - auditreduce(1) - audit trail reduction tool - praudit(1) - audit trail printing tool Could probably use a NO_AUDIT make.conf flag. Obtained from: TrustedBSD Project
* Expand contractions.joel2006-02-012-3/+3
|
* Fix typo.krion2006-01-291-1/+1
|
* Use ".Pa" for path names.jkoshy2006-01-291-12/+12
| | | | MFC after: 3 days
* - Hide 'incorrect geometry warning' in non-interactive mode. A user shouldjkim2006-01-272-22/+36
| | | | | | know what they are doing in non-interactive mode. Less scarier warning goes to debugging info instead. - Print sanitized geometry to debugging info.
* Add `mediaOpen' function. This function mounts selected media device.jkim2006-01-277-0/+36
| | | | | | | | | | | | | | | For example, you can dynamically generate and load configuration file depending on the hardware configuration with the following template: mediaSetCDROM mediaOpen command='/dist/rescue/sh /dist/scripts/install.sh' system mediaClose configFile=/tmp/generated.cfg loadConfig Now we have full access to files on the media before installation begins.
* Merge from accidental commit to RELENG_5:cperciva2006-01-271-1/+1
| | | | | Correctly identify the host and port values on a failed getaddrinfo lookup.
* After changing hostres from libdisk to libgeom, it now compileserwin2006-01-261-5/+1
| | | | | | | and runs on amd64, so revert the stopgap from rev. 1.10 Approved by: harti Hardware borrowed from: simon
OpenPOWER on IntegriCloud