summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Try really hard to fix parallel installs. Add a bunch of .ORDERru2002-07-035-0/+8
| | | | | | | | | | | | | | | | | | | | | directives to ensure that all realinstall sub-tasks are executed after beforeinstall, similarly ensure that all afterinstall sub- tasks are executed after realinstall. Demonstration: all: task1 task2 .ORDER: task1 task2 task2: task2_subtask .ORDER: task1 task2_subtask task1 task2 task2_subtask: @sleep `jot -r 1 0 1.0` @echo ${.TARGET} Without the second .ORDER directive, task2_subtask can be run in parallel with task1. Spotted by: Andrea Campi <andrea@webcom.it>
* mdoc(7) police: added missing markup bits, lowercased argument names.ru2002-07-031-5/+7
|
* Remove trailing whitespaces.maxim2002-07-031-2/+2
| | | | Approved by: luigi
* o Strict interface names comparison. The old code assumed "fxp1" == "fxp11".maxim2002-07-031-3/+3
| | | | | | | | o Use an appropriate constant for interface name buffer. Reviewed by: luigi Approved by: luigi MFC after: 1 month
* Move vfs_rootmountalloc() in vfs_mount.c and remove lite2_vfs_mountroot()mux2002-07-032-71/+44
| | | | which was #if 0'd and is not likely to be used now.
* Try clean up some of the mess that resulted from layers and layersjulian2002-07-032-59/+32
| | | | | | of p4 merges from -current as things started getting different. Corroborated by: Similar patches just mailed by BDE.
* Remove an unused argument in vfs_mountroot().mux2002-07-033-3/+3
|
* Correct a call to fcntl(F_SETFD) to use `FD_CLOEXEC' instead of `1'.chris2002-07-031-1/+1
|
* Add a SECURITY CONSIDERATIONS example: make note that access to openchris2002-07-031-0/+33
| | | | | | | | file descriptors does not change upon dropping privilege, and include a likely case of `setuid(non_superuser); exec(...);'. Sponsored by: DARPA, NAI Labs Obtained from: TrustedBSD Project
* fixed typo.suz2002-07-031-2/+2
| | | | | obtained from: KAME MFC after: 3 days
* Add missing kernal tunables to loader.conf.mini2002-07-031-0/+16
| | | | | PR: i386/39085 Submitted by: David Yeske <dyeske@yahoo.com>
* Fix off-by-one error.mini2002-07-031-1/+1
| | | | | | PR: misc/40104 Submitted by: Neal Fachan <neal@isilon.com> MFC after: 3 days
* No need to explicitly set NOMAN here.ru2002-07-031-1/+0
| | | | Reviewed by: jmallett
* White space commit.julian2002-07-031-10/+10
| | | | | I'm working on this file but I wanted to make the whitespece commit separatly.
* Approved by: imp@freebsd.orgjulian2002-07-031-0/+7
|
* Hold the sched lock across call to forward_signal() in tdsignal() togallatin2002-07-031-1/+4
| | | | | | keep SMP systems from panic'ing when ^C'ing an app suggested by julian
* Add mtx_ prefixes to the fields used for mutex profiling, and fix a bugdes2002-07-033-25/+27
| | | | | | | where the profiling code would report the release point instead of the acquisition point. Requested by: bde
* Add the "java" category.des2002-07-032-0/+4
|
* Actually use the fini callback.jeff2002-07-031-0/+1
| | | | | Pointy hat to: me :-( Noticed By: Julian
* - Don't enable OpenSSH's OPIE support, since we let PAM handle OPIE.des2002-07-031-6/+6
| | | | | - We don't have setutent(3) etc., and I have no idea why configure ever thought we did.
* Make sure to reset transflag back to zero upon succesfully using sendfile()dan2002-07-031-0/+1
| | | | | | | | to transfer a file. PR: 39362 Submitted by: TANAKA Hiroyuki <kattyo@abk.nu> MFC after: 1 week
* Two FreeBSD-specific nits in comments:des2002-07-031-5/+1
| | | | | | | | - ChallengeResponseAuthentication controls PAM, not S/Key - We don't honor PAMAuthenticationViaKbdInt, because the code path it controls doesn't make sense for us, so don't mention it. Sponsored by: DARPA, NAI Labs
* Fix grammar in 1 sentencetrhodes2002-07-021-3/+3
| | | | | | Reword 'Usually faster in most cases' to 'and is faster in most cases' PR: 40024 (partly)
* Diff-reduce with 4-stable: 4.x has a compat4x package.jhb2002-07-022-2/+2
|
* Fix typo (SIGEV_EVENT -> SIGEV_KEVENT).mp2002-07-021-1/+1
|
* GXP ATA drives also supports TQtrhodes2002-07-021-1/+1
|
* Call the 4.x snap server "releng4.freebsd.org" instead ofjhb2002-07-022-4/+4
| | | | "stable.freebsd.org" to be the same as 4-stable.
* Alpha does indeed have a COMPAT4X distribution on current. 4-stablejhb2002-07-021-0/+2
| | | | already has this correct.
* Add lge(4) to the list of drivers. It was present in 4-stable but not injhb2002-07-022-0/+2
| | | | -current.
* Fix type-o in last commit in preparation for MFC.dillon2002-07-021-1/+1
|
* I didn't pay enough attention when copy/pasting disclaimers.mux2002-07-021-2/+2
| | | | The disclaimer in vfs_conf.c was slightly different. Fix this.
* Minor spelling and grammar fixes in the atacontrol(8) manual page.trhodes2002-07-021-11/+11
| | | | PR: 39393
* Move every code related to mount(2) in a new file, vfs_mount.c.mux2002-07-027-2629/+1214
| | | | | | | | | | The file vfs_conf.c which was dealing with root mounting has been repo-copied into vfs_mount.c to preserve history. This makes nmount related development easier, and help reducing the size of vfs_syscalls.c, which is still an enormous file. Reviewed by: rwatson Repo-copy by: peter
* check in the version if this that compiles, not the one that doesn'tjulian2002-07-021-1/+1
|
* Make some more debugging code go away when debugging is not turned on.julian2002-07-021-1/+4
|
* 's/rather then/rather than/'johan2002-07-021-5/+5
| | | | | | | | | | PR: 38096 Submitted by: Chris Pepper <pepper@rockefeller.edu> While I'm here correct some typos pointed out by ispell. Approved by: sheldonh (mentor) MFC after: 1 week
* Version bump for mm_answer_pam_respond() fix.des2002-07-021-1/+1
|
* Fix a braino in mm_answer_pam_respond() which would cause sshd to abort ifdes2002-07-021-1/+1
| | | | PAM authentication failed due to an incorrect response.
* Reimplemented bsd.nls.mk using bsd.files.mk and bsd.links.mk.ru2002-07-025-120/+59
| | | | | | | | | | | | Provided the (previously missing) dependency on source files for intermediate .msg files. Provided the default for NLSSRCDIR (defaults to .CURDIR). Slightly changed the API: NLS should now list plain locale names, without the .msg suffix. When included from bsd.prog.mk, NLSNAME defaults to PROG.
* Handle installation of hard and symbolic links via a seperate .mk file.ru2002-07-024-49/+34
|
* Cope with 2292bis-01 getaddrinfo (no NI_WITHSCOPEID, always attachume2002-07-022-14/+13
| | | | | | scope identifier). MFC after: 3 weeks
* Cope with 2292bis-01 getaddrinfo (no NI_WITHSCOPEID, always attachume2002-07-021-0/+1
| | | | | | | scope identifier). Approved by: des MFC after: 3 weeks
* Make NI_WITHSCOPEID a default (always on), to synchronizeume2002-07-021-30/+20
| | | | | | | with recent 2553bis. Obtained from: KAME MFC after: 3 weeks
* LP64 cleanup: don't cast pointer to int.naddy2002-07-022-6/+3
|
* Check retifma for NULL before using it.mini2002-07-021-1/+2
| | | | | | PR: kern/9391 Submitted by: Assar Westerlund <assar@sics.se> MFC after: 3 days
* Add -g option, which restricts printing of the gecos fields to just the user'smini2002-07-025-5/+23
| | | | | | | | | real name. PR: bin/39462 Submitted by: Mike Makonnen <makonnen@pacbell.net> Obtained from: NetBSD MFC after: 1 week
* When going back to SLEEP state, make sure ourjulian2002-07-021-0/+1
| | | | State is correctly marked so.
* Fix failure to correctly transition back to sleep mode.julian2002-07-021-0/+4
|
* Make interrupt driven EC transaction optional.takawata2002-07-021-0/+2
|
* Remove the backup-versions ("x*") of various lpc commands that weregad2002-07-023-377/+0
| | | | | | | recently rewritten. No one in -current has reported any problems with the newer versions. MFC after: 3 weeks
OpenPOWER on IntegriCloud