summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Reviewed by: bde (again)grog1998-09-111-2/+2
| | | | Correct terminology (partitions are in slices, not the other way around)
* Reviewed by: bde,jkhgrog1998-09-112-7/+22
| | | | | | | | Add -v flag to newfs: -v Specify that the partition does not contain any slices, and that newfs should treat the whole partition as the file system. This option is useful for synthetic disks such as ccd and vinum.
* Silence -Wall -W -Wkitchen-sink. Use ssize_t in preference to int,imp1998-09-111-9/+7
| | | | | make a char * const that should have been. Use new style function declaration for main. Mostly a Bruce Filter[tm] test commit.
* Define PBUFSIZ in terms of MAXPATHLEN rather than hard coding it toimp1998-09-111-4/+5
| | | | | | 512. Obtained, I think, from: OpenBSD
* $@ -> ${.TARGET}imp1998-09-112-35/+35
|
* $* -> ${.PREFIX}imp1998-09-111-1/+1
|
* Remove definition of malloc and realloc. Instead include stdlib.h.imp1998-09-111-5/+4
|
* $@ -> ${.TARGET}imp1998-09-111-2/+2
|
* Change obsolete $@ to ${.TARGET}.imp1998-09-111-1/+1
|
* Don't trust TMPDIR if we're setuid root. This is used only for theimp1998-09-111-2/+3
| | | | | | | | | | backing file for an anonymous (memory based) btree, and I don't think that any setuid programs actually use it, but it is better to be safe than sorry. This has been in my tree for a long time, maybe a year or more... Inspired by: Similar changes in OpenBSD, if memory serves (like nearly a year ago)
* Narrow down conditions to break wait() to process traps.cracauer1998-09-102-5/+6
| | | | Improve comments.
* Revive hierarchy again.ache1998-09-102-5/+6
| | | | Please commit only patches, not whole files!
* make the fla stuff actually work.phk1998-09-102-12/+12
|
* Fixed breakage of %CPU and %MEM in the previous commit. sysctlbyname()bde1998-09-101-5/+11
| | | | | | was called with wrong args so it always failed. PR: 7881
* Fix bogus length restriction on readlink. Use sizeof(buf) - 1 ratherimp1998-09-101-1/+1
| | | | | | | than the size of the directory name. Fix style bug which increased the number of lines > 80 characters by one. Pointed out by: bde
* Fixed ownership of share/man/man1aout.bde1998-09-101-2/+2
| | | | Didn't fix misformatting of all the perl entries.
* Fix an inefficiency I introduced in my last commit.cracauer1998-09-102-10/+6
| | | | Include "expand.h" vom memalloc.c to pull function declartion into scope
* The fix in the previous commit was not sufficient; the upper 24 bitsyokota1998-09-101-14/+9
| | | | | | of an int argument still contained garbage. Pointed out by: bde PR: bin/7799
* Pass the correct argument to npxsave(), otherwise vm86pcb will beyokota1998-09-101-2/+4
| | | | overwritten.
* Oops missed a line in the previous commitsos1998-09-103-3/+6
|
* Dorkus sum. I managed to commit an earlier version of this. This fixes themarkm1998-09-105-9/+9
| | | | | | | | | | broken perl build. * NOTE * * NOTE * * NOTE * PERL5 RELIES IN A MAKE WORLD FOR THE BOOTSTRAP!! * NOTE * * NOTE * * NOTE *
* Ensure that m_nextpkt is set to NULL after reassembling fragments.dfr1998-09-101-1/+3
|
* Update info on the bt848 driver.sos1998-09-103-21/+57
| | | | Submitted by: Roger Hardiman <roger@cs.strath.ac.uk>
* Changed METEORSINPUT for Hauppauge cards with bt878.sos1998-09-104-50/+112
| | | | | | Also fixed video_open defines and 878 support. Submitted by: Fred Templin <templin@erg.sri.com>
* Correct SECAM B-Delay and add XUSSR channel set.sos1998-09-105-9/+76
| | | | Submitted by: Vsevolod Lobko <seva@alex-ua.com>
* Note ELF, Perl5 and Atapi tape support.jkh1998-09-101-0/+14
|
* (1) Add MLINKS support.asami1998-09-101-13/+96
| | | | | | | | | | | | | | | | | | | | | | | | | Submitted by: hoek (2) ELF support. 2a. Variable PORTOBJFORMAT specifies the object format of the system. It is passed down to configure/make via CONFIGURE_ENV/MAKE_ENV, and is given to generate-plist via PLIST_SUB. 2b. In PLIST, substitute lines that end with "/libFOO.so.X" with "/libFOO.so.X.0". (This means PLISTs should only list ELF libraries.) Reviewed by: jb, jdp, hoek, jseger, steve (3) Perl5-in-system support. Basically turns USE_PERL5 into a no-op if there exists a "/usr/bin/perl5". Also fix prior breakage by dima (${PREFIX} => ${LOCALBASE} in perl5 path). Reviewed by: markm (sort of) (4) Install requirement file as "+REQUIRE" so it will be executed correctly by pkg_delete. Reported by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp> (5) Do not disable checksum and makesum when NO_EXTRACT is set. Pointed out by: hoek and kiri, among other people
* Don't keep the underlying directory locked while performing the filetegge1998-09-103-9/+34
| | | | | system specific VFS_MOUNT operation. PR: 1067
* Don't allow longjmp into a no longer valid stack frame.tegge1998-09-101-0/+1
|
* I don't want to be the only one to use ``cut''. Use ``sed'' instead.obrien1998-09-102-4/+3
|
* Add ``usr/bin/cut'' to "build-tools" target.obrien1998-09-101-1/+2
| | | | Used in usr.sbin/amd/include/newvers.sh.
* Reflect realitybrian1998-09-091-11/+5
|
* Mention some of the major changes to ppp for 3.0brian1998-09-091-1/+6
| | | | Fix a typo.
* Disable kernel_secure_level unless explicitly set in rc.conf. Previously,jraynard1998-09-091-2/+2
| | | | | it was enabled unless explicitly unset, creating a pitfall for people like me who upgraded /etc/rc without upgrading /etc/rc.conf.
* Mention which system interface functions are signal-safe.brian1998-09-091-1/+103
| | | | Suggested on -current by: Terry Lambert <tlambert@primenet.com>
* Fixed the usual missing permissions checks in mount(). As for cd9660,bde1998-09-092-2/+70
| | | | | | the damage was limited by the default of 0 for vfs.usermount. Obtained from: Lite2 via the -current ffs_vfsops.c
* Remove the NOPERL block to building Perl5.markm1998-09-092-8/+2
| | | | | Perl 5 will rebuild/bootstrap itself next time a make world is done with this in effect.
* Add the wst device (ATAPI tape)sos1998-09-092-6/+34
| | | | Allow 8 wcd devices instead of 4.
* Major numbers allocated for generic SMB/I2C i/onsouch1998-09-092-2/+6
|
* Major number allocated for generic SMB i/o -> 106nsouch1998-09-091-5/+3
|
* Major number allocated for generic I2C i/o -> 105nsouch1998-09-091-5/+4
|
* Document a number of VM sysctl variables with help from old emailsghelmer1998-09-091-1/+38
| | | | written by John Dyson.
* Add the dirs for Perl5.markm1998-09-091-5/+111
|
* Add libperl for Perl5.markm1998-09-091-1/+2
|
* options changed with the new AMD.obrien1998-09-091-1/+1
| | | | Rather than ``nfsv2'', we now have ``vers=3,proto=tcp''
* Add the Perl5 bootstrap tools.markm1998-09-091-3/+4
|
* getopt returns -1 not EOFimp1998-09-091-2/+2
|
* Add dependency for subr_bus.c on bus_if.h and device_if.h so that a makeimp1998-09-091-1/+2
| | | | | | depend is not required to just build the kernel. Reviewed by: Doug Rabson
* Print warning about block size not being optimal once per open rather thanimp1998-09-092-6/+16
| | | | once per offending write.
* Fix fencepost error in readlink; inspired by OpenBSDimp1998-09-091-1/+1
|
OpenPOWER on IntegriCloud