summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Typo in usage string. Looks like the man page now.charnier1997-06-061-2/+2
|
* Err(3) was locally defined (for portability reasons). Use #ifdef 0/#endifcharnier1997-06-061-1/+5
| | | | to hide this so libc is kept instead.
* Correct usage string. Man page don't reflect reality for now.charnier1997-06-061-7/+8
|
* Cosmetic change in usage string.charnier1997-06-064-18/+19
|
* Do not use __progname.charnier1997-06-061-16/+12
|
* Make install in include before making world.brian1997-06-061-1/+2
| | | | | | | | | | Without this, if you try to build a 2.2 release on -current, it falls on its face here because /usr/include contains your "make install"d headers where the /usr/include/* symlinks point to the RELENG_2_2 headers. Reviewed by: jkh
* Typo fix in the EXAMPLES section.max1997-06-051-2/+2
|
* Go to SHARED=copies by default.jkh1997-06-051-5/+6
| | | | Agreed-upon by: lots-o-folks.
* Resurrect / implement some of the more esoteric scripting features,jkh1997-06-0526-57/+864
| | | | such as partitioning a disk or overriding an interactive prompt.
* Remove some duplicated and incomplete entriesache1997-06-052-27/+1
|
* Back out symlinks/directories removing until solution will be foundache1997-06-041-0/+38
| | | | | since they are really directories in the release (for unknown reason for me)
* Remove directories belongs to /usr/src to stop mtree to modify /usr/srcache1997-06-041-39/+1
| | | | | | | | | permissions. Having them here is wrong from several other poins too: they are never be a directories (simlinks only), so why give a chance to mtree to make them as directories? Since they never be a directories, permissions of them will never be modified by old mtree too.
* make it compile with -Walljulian1997-06-041-12/+11
| | | | Submitted by: Archi Cobbs, archie@whistle.com
* Remove /var/run/* now instead of *.pidache1997-06-041-3/+3
|
* Restore /var/run/*.pid cleaning, gated already moved off the wayache1997-06-041-0/+1
| | | | and innd store its .pid inside its own directories
* Mention that fdisks slice numbers are between 1 and 4brian1997-06-041-0/+4
| | | | now rather than between 0 and 3.
* Document a non-standard gdbremote protocol extension (kludge, really)pst1997-06-046-4/+60
| | | | | | | | that I snuck in to our GDB last year. This allows you to debug headless machines by sharing the console port between the debugger and the system console. It's not 100% reliabile, but it works well. It's optional and disabled by default. Submitted by: Juniper Networks
* Bring back CONSPEED as a last-ditch default if you can't change the speedpst1997-06-0411-19/+37
| | | | | | any other way. Requested by: dfr
* Bring back nanosleep from the cold.jb1997-06-043-3/+3
| | | | | | | | | | The addition of the nanosleep syscall was correctly added to libc/sys/Makefile so that it is renamed as _thread_sys_nanosleep(). This syscall is one of those that libc_r has to re-implement because the only behaviour is to block the process. So libc_r just ignores the fact that a nanosleep syscall exists and goes its own way - as it has done all along .... and now it does again. And now a simple program can sleep again. Phew.
* Fix mutex initialization.jb1997-06-041-6/+4
| | | | | | | | | | | | | Malloc cannot use pthread_mutex_init() to initialize a mutex because the mutex initialization process does a malloc! libc_r internals skip the malloc and assign an initializer to a static structure and point the opaque type (pthread_mutex_t in this case) to that structure. This is done on the assumption that the mutex will never be destroyed. This style of initialization is only valid inside libc_r because the structure that is assigned is opaque to the user. This fix allows a simple program to get to main() again. 8-)
* Make local "root:wheel" so it will be consistent with BSD.local.distasami1997-06-041-2/+2
| | | | Reviewed by: bde
* Synchronize with sys/i386/conf/options.i386 revision 1.46.kato1997-06-042-4/+4
|
* Synchronize with sys/i386/isa/sio.c and sioreg.h revisions 1.170 andkato1997-06-043-18/+235
| | | | 1.9, respectively.
* Use errx instead of fprintf/exit.charnier1997-06-041-15/+6
|
* Expected to be found in /sbin not /etc.charnier1997-06-041-2/+2
|
* Revert part of previous patch: Don't use __progname.charnier1997-06-041-4/+2
|
* Revert part of previous patch: Don't use __progname.charnier1997-06-041-4/+2
|
* CONSPEED is defunct.pst1997-06-045-10/+7
|
* If the boot blocks were using the serial port, read the system consolepst1997-06-046-33/+357
| | | | | | | | | | | | speed using the boot blocks, instead of a hardcoded value stuck in the kernel. This way, you can have systems using the same kernel but different console speeds. Add a sysctl entry for changing the system console speed. Lock the user tty speed to match the system console speed. Nuke CONSPEED. Reviewed by: bde
* Remove /usr/local meddling.asami1997-06-041-16/+1
| | | | Approved by: jkh
* (1) Use the new BSD.x11.dist mtree file to create directories underasami1997-06-041-55/+51
| | | | | | | | | | | | | | | | /usr/X11R6 if USE_IMAKE or USE_X11 is set. It is mostly designed after the XFree86 distribution, but also includes some of our own goodies (libexec, share/doc, etc/rc.d). (2) Full support for per-port dependency target. An optional ":<target>" can be added to any of the *_DEPENDS variables. Do not attempt to print out anything about dependencies if NO_DEPENDS is set (there was already too much code duplication, and this extra colon has really pushed it over the limit). Requested by: jfitz (3) Make "reinstal" pmake-safe. Reminded in an e-mail from: jkh
* New mtree file for /usr/X11R6.asami1997-06-042-0/+536
| | | | Approved (a long time ago) by: David Dawes
* Number partitions 1-4, not 0-3.brian1997-06-034-60/+60
| | | | | | Any existing config files (using the -f option) will need to be changed although using the old files will usually result in an error (partition 0 is invalid).
* Various fixes from NetBSD:dfr1997-06-0315-43/+63
| | | | | | | | | Use u_int for rpc procedure numbers. Some fixes to NQNFS. A rare NULL pointer dereference. Ignore NFSMNT_NOCONN for TCP mounts. Obtained from: NetBSD
* Add no_NO localeache1997-06-034-1/+236
| | | | Submitted by: Tor Egge <Tor.Egge@idi.ntnu.no>
* Implement the async mount option for NFSv3. This makes NFS pretend that alldfr1997-06-034-6/+16
| | | | | | | | | writes sent to the server were synchronous and therefore no commits are needed. This is the same as the vfs.nfs.async variable on the server but allows each client to choose whether to work this way. Also make the vfs.nfs.async variable do the 'right' thing for NFSv3, i.e. pretend that the write was synchronous.
* Allow the 'async' mount flag.dfr1997-06-031-1/+2
|
* Reset alarm before invoking ppplogin.davidn1997-06-031-1/+3
| | | | | | | PR: 3733 Reviewed by: Submitted by: kfurge@worldnet.att.net Obtained from:
* Fixed mu-law data. Originator's patch was applied.kato1997-06-031-64/+64
| | | | | PR: 1950 Submitted by: NAGAO Tadaaki <nagao@cs.titech.ac.jp>
* Fixed order of data transfer.kato1997-06-031-1/+5
| | | | | Reviewed by: NAGAO Tadaaki <nagao@cs.titech.ac.jp> Submitted by: Takuya SHIOZAKI <tshiozak@makino.ise.chuo-u.ac.jp>
* Fix a problem with nfs_flush where if many B_NEEDCOMMIT buffers aredfr1997-06-032-16/+100
| | | | | | | | | attached to the vnode, some of them could be re-written synchronously (if they overflowed the fixed size array nfs_flush had for them). The fix involves mallocing an array if there are more than its limited size stack buffer. Reviewed by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
* Fix some performance problems with the NFS mmap fixes.dfr1997-06-033-10/+14
|
* Include <sys/conf.h>kato1997-06-031-0/+1
|
* Add xref to lchown(2) and symlink(2).charnier1997-06-031-3/+10
| | | | Obtained from: {Net|Open}BSD
* Signal # NSIG (32) is invalid.charnier1997-06-031-2/+2
| | | | Obtained from: {Net|Open}BSD
* /etc/netstart -> /etc/rc.networkcharnier1997-06-032-4/+6
| | | | Use __progname in usage string. Change usage string to match the man page.
* /etc/netstart -> /etc/rc.networkcharnier1997-06-032-4/+25
| | | | Add usage() and use __progname. Change usage string to match man page.
* Remove mis-leading version info.brian1997-06-032-4/+2
|
* login.group => login.conf.davidn1997-06-021-2/+2
| | | | | | | PR: 3748 Reviewed by: Submitted by: Obtained from:
* Add Xreference to chio(1).max1997-06-021-1/+2
|
OpenPOWER on IntegriCloud