ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk/sbin
r3717
File (rev) Last Change
 ../
umount/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
tunefs/ 3565 (13 years ago) by laffer1: Several portions of the kernel and userland code related to UFS file systems (and UFS2) cannot properly handle inode counts above 2^31 due to use of int types. Based on a patch from FreeBSD, I've modified our UFS2 implementation to handle unsigned values for inode counts which should allow for file systems greater than 16TB. newfs and growfs was also modified.
sysctl/ 3199 (14 years ago) by laffer1: Import OpenBSD's sysctl sensors framework. This is based on work by Constantine A. Murenin for the 2007 Google summer of code for FreeBSD. Includes: sample config file for sensord rc scripts documentation fixes and updates sys/kern/kern_sensors.c sys/sensors.h This is compatible with OpenBSD 4.1 and 4.2 in terms of the userland bits.
swapon/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
sunlabel/ 2491 (15 years ago) by laffer1: Only need sunlabel on the sparc.
startslip/ 3079 (14 years ago) by laffer1: sync with freebsd
spppcontrol/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
slattach/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
shutdown/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
setkey/ 2033 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2032, which included commits to RCS files with non-trunk default branches.
sconfig/ 3079 (14 years ago) by laffer1: sync with freebsd
savecore/ 2115 (15 years ago) by laffer1: $MidnightBSD$ switch to new world order
rtsol/ 3079 (14 years ago) by laffer1: sync with freebsd
routed/ 3079 (14 years ago) by laffer1: sync with freebsd
route/ 3079 (14 years ago) by laffer1: sync with freebsd
restore/ 3078 (14 years ago) by laffer1: sync with freebsd, dump changes
recoverdisk/ 2012 (15 years ago) by laffer1: Remove mca which was only used for ia64. Add recoverdisk, a handy utility for hard drives and optical media. Sync idmapd with freebsd 7. Switch to the new world order.
reboot/ 3077 (14 years ago) by laffer1: Catch up
rcorder/ 508 (17 years ago) by laffer1: Remove ealloc and sprite headers. ealloc is now provided by libutil and the few definitions needed in sprite.h have been moved. Switch to c99 stdbool.
quotacheck/ 3076 (14 years ago) by laffer1: sync with freebsd 7
ping6/ 2031 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2030, which included commits to RCS files with non-trunk default branches.
ping/ 2031 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2030, which included commits to RCS files with non-trunk default branches.
pflogd/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
pfctl/ 2135 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2134, which included commits to RCS files with non-trunk default branches.
nos-tun/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
nfsiod/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
newfs_msdos/ 3075 (14 years ago) by laffer1: sync with freebsd
newfs/ 3567 (13 years ago) by laffer1: Author: mckusick Date: Tue Nov 23 01:32:44 2010 New Revision: 215729 URL: http://svn.freebsd.org/changeset/base/215729 Log: MFC of 213119 Reported problem: Large (60GB) filesystems created using "newfs -U -O 1 -b 65536 -f 8192" show incorrect results from "df" for free and used space when mounted immediately after creation. fsck on the new filesystem (before ever mounting it once) gives a "SUMMARY INFORMATION BAD" error in phase 5. This error hasn't occurred in any runs of fsck immediately after "newfs -U -b 65536 -f 8192" (leaving out the "-O 1" option). Solution: The default UFS1 superblock is located at offset 8K in the filesystem partition; the default UFS2 superblock is located at offset 64K in the filesystem partition. For UFS1 filesystems with a blocksize of 64K, the first alternate superblock resides at 64K which is the the location used for the default UFS2 superblock. By default, the system first checks for a valid superblock at the default location for a UFS2 filoesystem. For a UFS1 filesystem with a blocksize of 64K, there is a valid UFS1 superblock at this location. Thus, even though it is expected to be a backup superblock, the system will use it as its default superblock. So, we have to ensure that all the statistcs on usage are correct in this first alternate superblock as it is the superblock that will actually be used. While tracking down this problem, another limitation of UFS1 became evident. For UFS1, the number of inodes per cylinder group is stored in an int16_t. Thus the maximum number of inodes per cylinder group is limited to 2^15 - 1. This limit can easily be exceeded for block sizes of 32K and above. Thus when building UFS1 filesystems, newfs must limit the number of inodes per cylinder group to 2^15 - 1. Reported by: Guy Helmer<ghelmer@palisadesys.com> Followup by: Bruce Cran <brucec@freebsd.org> PR: 107692 Obtained from: FreeBSD
natd/ 2753 (15 years ago) by laffer1: add a shortcut for setting up natd that i used today on a system
mount_unionfs/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_udf/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_std/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_reiserfs/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_nullfs/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_ntfs/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
mount_nfs/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_msdosfs/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_ext2fs/ 3075 (14 years ago) by laffer1: sync with freebsd
mount_cd9660/ 3075 (14 years ago) by laffer1: sync with freebsd
mount/ 3485 (13 years ago) by laffer1: Add opton to specify which program to mount with.
mksnap_ffs/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
mknod/ 3075 (14 years ago) by laffer1: sync with freebsd
mdmfs/ 3075 (14 years ago) by laffer1: sync with freebsd
mdconfig/ 2123 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2122, which included commits to RCS files with non-trunk default branches.
md5/ 2022 (15 years ago) by laffer1: $MidnightBSD$
ldconfig/ 2026 (15 years ago) by laffer1: $MidnightBSD$ Remove a header file we don't use anymore
kldunload/ 3073 (14 years ago) by laffer1: Sync with freebsd
kldstat/ 3073 (14 years ago) by laffer1: Sync with freebsd
kldload/ 3073 (14 years ago) by laffer1: Sync with freebsd
kldconfig/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
iscontrol/ 2013 (15 years ago) by laffer1: Add iScsi part 1 of 2. Remove ip6fw since ipfw is going ipv6.
ipfw/ 2129 (15 years ago) by laffer1: merge changes
ipf/ 2131 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2130, which included commits to RCS files with non-trunk default branches.
init/ 908 (17 years ago) by laffer1: Clean up the chroot patch. Remove SLOGGER definition since its no longer used. Go to WARNS 3 since there are const errors with the second parameter of kenv. I could fix this with a const char [] definition for each entry, but the current approach is easier to read. This effectively equates to FreeBSD init.c 1.63 with some local changes. Like the previous chroot patch commit, this is based on work by Oliver Fromme.
ifconfig/ 2121 (15 years ago) by laffer1: Update dhclient, merge changes to userland (ifconfig)
idmapd/ 2012 (15 years ago) by laffer1: Remove mca which was only used for ia64. Add recoverdisk, a handy utility for hard drives and optical media. Sync idmapd with freebsd 7. Switch to the new world order.
gvinum/ 3072 (14 years ago) by laffer1: sync with freebsd
growfs/ 3571 (13 years ago) by laffer1: Get growfs to act like newfs by zeroing two blocks of inodies for each new cylinder group. Obtained from: FreeBSD
gpt/ 2549 (15 years ago) by laffer1: update gpt(8)
ggate/ 3071 (14 years ago) by laffer1: sync with freebsd
geom/ 2128 (15 years ago) by laffer1: merge changes
gbde/ 3071 (14 years ago) by laffer1: sync with freebsd
fsirand/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
fsdb/ 3071 (14 years ago) by laffer1: sync with freebsd
fsck_msdosfs/ 3 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches.
fsck_ffs/ 3224 (14 years ago) by laffer1: fix comment. Fix initializer.
fsck/ 481 (17 years ago) by laffer1: Clean up RCS/CVS ids
ffsinfo/ 3487 (13 years ago) by laffer1: we should really call strdup here..
fdisk/ 3570 (13 years ago) by laffer1: Handle geli-encrypted root disk devices. Add support for identifying a journaled root filesystem. Fix support for identifying the given /dev/vinum/root example. Obtained from: FreeBSD
dumpon/ 3069 (14 years ago) by laffer1: sync with freebsd
dumpfs/ 3069 (14 years ago) by laffer1: sync with freebsd
dump/ 3069 (14 years ago) by laffer1: sync with freebsd
dmesg/ 2121 (15 years ago) by laffer1: Update dhclient, merge changes to userland (ifconfig)
dhclient/ 2121 (15 years ago) by laffer1: Update dhclient, merge changes to userland (ifconfig)
devfs/ 2120 (15 years ago) by laffer1: Sync, $MidnightBSD$
devd/ 2120 (15 years ago) by laffer1: Sync, $MidnightBSD$
conscontrol/ 2120 (15 years ago) by laffer1: Sync, $MidnightBSD$
comcontrol/ 2120 (15 years ago) by laffer1: Sync, $MidnightBSD$
clri/ 2120 (15 years ago) by laffer1: Sync, $MidnightBSD$
ccdconfig/ 2116 (15 years ago) by laffer1: $MidnightBSD$
camcontrol/ 2114 (15 years ago) by laffer1: update camcontrol
bsdlabel/ 3572 (13 years ago) by laffer1: - Check that strtoul(3) succeeds to convert the entire string in a few places. - In getasciilabel(), set the disk type only when a valid type is given. Obtained from: FreeBSD
badsect/ 485 (17 years ago) by laffer1: $MidnightBSD$ WARNS?=6
atm/ 2020 (15 years ago) by laffer1: We don't do arm
atacontrol/ 2118 (15 years ago) by laffer1: It's magic.
adjkerntz/ 2120 (15 years ago) by laffer1: Sync, $MidnightBSD$
Makefile.inc 2012 (15 years ago) by laffer1: Remove mca which was only used for ia64. Add recoverdisk, a handy utility for hard drives and optical media. Sync idmapd with freebsd 7. Switch to the new world order.
Makefile 2491 (15 years ago) by laffer1: Only need sunlabel on the sparc.
86 directories and 2 files shown