summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* Correct default location of history file.grog2002-06-231-1/+1
| | | | Observed by: Chris Bolt <chris-lists@bolt.cx>
* Get rid of paranoia that zeros the boot block area as this hasmckusick2002-06-221-7/+0
| | | | | | | bad effect on existing bootstraps. Submitted by: Jake Burkholder <jake@locore.ca> Sponsored by: DARPA & NAI Labs.
* This commit was generated by cvs2svn to compensate for changes in r98567,obrien2002-06-212-3/+5
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Sync with NetBSD.obrien2002-06-212-3/+5
| | | | | | | | | | | | * don't whine about non-regular files. It is perfectly normal to keep a CVS or RCS directory in /etc/rc.d. * manpage tweak
* | Reduce the -I's as we don't need them all.obrien2002-06-211-1/+1
| |
* | Don't say that an umounted filesystem is required for -n. An unmountedbde2002-06-211-1/+0
| | | | | | | | | | filesystem is no more or less required for -n than for any other option. The previous commit clarified the actual requirement.
* | This commit adds basic support for the UFS2 filesystem. The UFS2mckusick2002-06-2138-1966/+2160
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filesystem expands the inode to 256 bytes to make space for 64-bit block pointers. It also adds a file-creation time field, an ability to use jumbo blocks per inode to allow extent like pointer density, and space for extended attributes (up to twice the filesystem block size worth of attributes, e.g., on a 16K filesystem, there is space for 32K of attributes). UFS2 fully supports and runs existing UFS1 filesystems. New filesystems built using newfs can be built in either UFS1 or UFS2 format using the -O option. In this commit UFS1 is the default format, so if you want to build UFS2 format filesystems, you must specify -O 2. This default will be changed to UFS2 when UFS2 proves itself to be stable. In this commit the boot code for reading UFS2 filesystems is not compiled (see /sys/boot/common/ufsread.c) as there is insufficient space in the boot block. Once the size of the boot block is increased, this code can be defined. Things to note: the definition of SBSIZE has changed to SBLOCKSIZE. The header file <ufs/ufs/dinode.h> must be included before <ufs/ffs/fs.h> so as to get the definitions of ufs2_daddr_t and ufs_lbn_t. Still TODO: Verify that the first level bootstraps work for all the architectures. Convert the utility ffsinfo to understand UFS2 and test growfs. Add support for the extended attribute storage. Update soft updates to ensure integrity of extended attribute storage. Switch the current extended attribute interfaces to use the extended attribute storage. Add the extent like functionality (framework is there, but is currently never used). Sponsored by: DARPA & NAI Labs. Reviewed by: Poul-Henning Kamp <phk@freebsd.org>
* | nmount'ify unionfs further by using separate options insteadmux2002-06-151-17/+17
| | | | | | | | | | | | | | of passing a flags mount options. This removes the include of sys/fs/unionfs/union.h in mount_unionfs as it should be. Reviewed by: phk
* | Convert UDF to nmount.mux2002-06-151-12/+15
| | | | | | | | Reviewed by: scottl
* | Add eui64 option which fills interface index (lowermost 64bit ofume2002-06-152-0/+42
| | | | | | | | | | | | | | | | an IPv6 address) automatically. This should obsolete prefix(8). Obtained from: NetBSD MFC after: 2 weeks
* | Hook rcorder and rc.d into the build.gordon2002-06-131-0/+1
| | | | | | | | Submitted by: Mike Makonnen
* | FreeBSDize the NetBSD Makefile so that this compiles.obrien2002-06-131-1/+9
| |
* | ANSIfy a few prototypes, thus fixing a few warnings.keramida2002-06-091-5/+5
| | | | | | | | Reviewed by: grog
* | Don't have -prefixlen 128 on host routes.ume2002-06-081-8/+5
| | | | | | | | Obtained from: KAME
* | Use a larger data type to prevent counters wrapping so quickly.mdodd2002-06-071-2/+2
| | | | | | | | Silence a warning.
* | Sync this up with changes made in v1.8 of sys/netatm/atm_if.hmdodd2002-06-071-0/+4
| |
* | Remove the old nextboot from Whistler. AFAIK this hasn't been useable ingordon2002-06-063-326/+0
| | | | | | | | quite a while and only works on i386.
* | s/daddr_t/ufs_daddr_t/gphk2002-06-063-19/+19
| | | | | | | | | | | | This should fix the issues which cropped up after daddr_t grew up. Sponsored by: DARPA & NAI Labs.
* | Unhook the old nextboot(8) from the build. If no one yells too loudly, thisgordon2002-06-061-2/+1
| | | | | | | | | | | | will be accompanied by a cvs rm of the actual nextboot sources. Approved by: jake (mentor)
* | Add 'utility' in a place that it was missing.keramida2002-06-051-1/+1
| | | | | | | | | | | | PR: docs/38814 Submitted by: Chris Pepper <pepper@rockefeller.edu> MFC after: 10 days
* | Oops, unbreak parsing of the `type' field in getasciilabel(). I hadiedowse2002-06-052-2/+6
| | | | | | | | | | | | | | changed a `goto' to a `continue' in revision 1.52, but it continued the wrong loop. Noticed by: bde
* | Fix spelling nit in error message.gordon2002-06-051-1/+1
| |
* | Fix breakage caused by allocating the I/O buffer. There was amarcel2002-06-021-2/+5
| | | | | | | | | | | | | | sizeof(buf) lurking around that I missed. PR: 38811 Submitted by: Adrian Colley <aecolley@spamcop.net>
* | Avoid construction which results in label at end of block.wollman2002-05-301-2/+6
| |
* | Fix syntax errors (labels with no statement).wollman2002-05-301-4/+4
| |
* | mdoc(7) police: nits.ru2002-05-301-4/+4
| |
* | mdoc(7) police: tidy up the markup and some wording.ru2002-05-301-105/+126
| |
* | correct comment (replace i386 with __i386__)alfred2002-05-302-4/+4
| |
* | Fix typos (s/IP6FILREWALL_VERBOSE/IPV6FIREWALL_VERBOSE/, s/netinet/netinet6/).kuriyama2002-05-301-4/+4
| | | | | | | | MFC after: 1 week
* | Fix some serious brain damage in the default block/frag/cpg parametersiedowse2002-05-302-18/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | that are used if none at all are specified for a partition. Don't keep replaying the last field if we run out of fields when processing a line. Use a 8:1 frag:block ratio for both defaults. More work here is required. I think disklabel should not attempt to choose default filesystem parameters, and instead let newfs pick any defaults if required. PR: i386/38703 Reported by: Martin Kraemer <Martin.Kraemer@Fujitsu-Siemens.com>
* | Split out the code for parsing the partition specification linesiedowse2002-05-302-258/+268
| | | | | | | | into a separate function to avoid some over-long lines.
* | mdoc(7) police: markup nits.ru2002-05-291-1/+1
| |
* | mdoc(7) police: nits.ru2002-05-291-8/+21
| |
* | mdoc(7) police: nits.ru2002-05-295-10/+16
| |
* | mdoc(7) police: nits.ru2002-05-291-1/+2
| |
* | mdoc(7) police: tidy up the markup.ru2002-05-291-12/+35
| |
* | Correct the file that reboot -k creates so that it works with the newgordon2002-05-281-0/+1
| | | | | | | | | | | | nextboot functionality. Reviewed by: jake (mentor)
* | Work around a memory fault on ia64 caused by having the 1MB buffer onmarcel2002-05-271-1/+16
| | | | | | | | | | the stack in DoFile(). This needs some investigation. In the mean time we do a one time malloc() for the buffer to have it on the heap instead.
* | Respect -q with "add" and "delete". Document who respects -q.ru2002-05-252-31/+36
| | | | | | | | PR: bin/38531
* | Convert mount_ext2fs(8) to nmount(2).mux2002-05-241-15/+18
| | | | | | | | Reviewed by: iedowse
* | Don't err(3) (and exit prematurely) when a sysctl's object size hasalfred2002-05-241-9/+16
| | | | | | | | changed, instead just warn(3)
* | Add a nextboot script to make it easier to control the loader nextbootgordon2002-05-242-0/+59
| | | | | | | | | | | | support. Also, hook it up to the build. Approved by: jake (mentor)
* | Convert mount_unionfs(8) to nmount.mux2002-05-241-10/+24
| |
* | Make mount_nullfs(8) use nmount(2) rather than mount(2) nowmux2002-05-231-5/+15
| | | | | | | | that nullfs has been converted to nmount.
* | Allow prefix/prefixlen syntax for IPv6 to have consistencyume2002-05-211-15/+22
| | | | | | | | with IPv4.
* | Have RTF_HOST for /128 destionation.ume2002-05-211-4/+9
| |
* | Spread the word of PowerPC.benno2002-05-212-2/+2
| |
* | Try to guess prefixlen for guessable cases.ume2002-05-201-0/+33
| | | | | | | | | | | | | | | | - /0 if matches ::/128 - /64 if matches 2000::/3 and lowermost 64 bit is all 0 - /128 if matches 2000::/3 and lowermost 64 bit is non-zero 0 Obtained from: KAME/NetBSD
* | Turn nfsiod into a vfs loader and sysctl wrapper that controls the numberpeter2002-05-192-89/+47
| | | | | | | | of nfsiod kernel threads being run.
* | Remove IFS from 5.0-CURRENT. This facilitates introducing UFS2 asrwatson2002-05-1921-6442/+0
| | | | | | | | | | | | | | | | IFS had its fingers deep in the belly of the UFS/FFS split. IFS will be reimplemented by the maintainer at a later date once the UFS implementation is in place. Requested by: adrian (maintainer)
OpenPOWER on IntegriCloud