summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
1997-06-16if -o is used to explicitly specify time or space optimization preference,Theo de Raadt
do not override based on minfree calculation; problem from jgarzik@pobox.com, my fix; PR#226
1997-06-16flags cannot be optional; what a bad argument layout design...; ↵Theo de Raadt
jgarzik@pobox.com, PR#228
1997-06-14split the treatment of the random eventsMichael Shalayeff
event_q by flipk@ spl fix by deraadt@ gother statistics about whole processing use 'sysctl kern.random' to view what had happened also fix wrong vm.psstrings description
1997-06-14typo; k-horik@yk.rim.or.jpTheo de Raadt
1997-06-14Add link to Linux name, so Linux users can at least find the manpage and figureJason Downs
out what's different.
1997-06-14fsck_ext2fs works now.Jason Downs
1997-06-14s/malloc.h/stdlib.h in pass5.c, and actually malloc() enough memory inJason Downs
setup() for the superblock!
1997-06-14Add tags, fix man page. Purely cosmetic.Jason Downs
1997-06-14Sync with NetBSD. Purely cosmetic.Jason Downs
1997-06-13theo's recent patchMichael Shalayeff
1997-06-11dynamic fd_setTheo de Raadt
1997-06-10deal with random pids from fork(2)kstailey
1997-06-05getpid() is going to be OK in a few minutesTheo de Raadt
1997-06-04make usage show minimal keywordsTheo de Raadt
1997-06-04oops_stringsMichael Shalayeff
1997-06-04YAVAMichael Shalayeff
move machdep in the place mention ipx headers
1997-06-03Make mkfs.c malloc its large buffers, which saves about 200K of bss sizegrr
when newfs is used in instbin and is otherwise harmless. Also add a little pro-forma malloc fail parnoia, though it's not really needed when the local malloc routine is used.
1997-06-03number of unallocated sectors message was based on modified fssize, make it ↵grr
deal with reality
1997-06-02fix Xr fstabTheo de Raadt
1997-06-02dump(5) does not exist, markd@Grizzly.COMTheo de Raadt
1997-06-02network byte order for icmp_seq; obfuscate ident (pid) moreTheo de Raadt
1997-06-01i think this solves a number of byte order problems in the icmp code.Theo de Raadt
If these are right, I also want to note that if a host pings me I can tell what it's byte order is (because if the seq numbers)
1997-06-01kill fp, fix unterminated buf, add lots of icmp code; denny1@home.com, PR#205Theo de Raadt
1997-05-31lukem: Determine filesystem level (ref: fsck_ffs(8) -c ...) and display it.Theo de Raadt
Code was derivied from observing how fsck_ffs `upgrades' to a given level, and has been tested on recent NetBSD filesystems (reports as "3"), SunOS ("1"), and ULTRIX ("0"). I haven't found a filesystem of level "2" to test, but the code should detect it. Fixes [bin/1353]
1997-05-31fix typos; msaitoh@spa.is.uec.ac.jpTheo de Raadt
1997-05-30No longer enforce read-only mounts.Jason Downs
1997-05-30for i in `find . -name \*.[123456789] -exec grep '^.Dd ' {} /dev/null \; | \Theo de Raadt
grep '"' | cut -d':' -f1`; do sed -e '/^.Dd /s/"//g' -e '/^.Dd /s/\(^.Dd [A-Za-z]*\) \(.*\)$/\1, \2/' <$i >x cat x > $i done
1997-05-30Initial import of Manuel's fsck_ext2fs, unmodified.Jason Downs
1997-05-29mkfs() should not play with fssize; grr, PR#189Theo de Raadt
1997-05-29print stats on SIGINFOkstailey
1997-05-28doc broadcast addr better; frueauf@ira.uka.deTheo de Raadt
1997-05-28be more paranoid about gid revokingTheo de Raadt
1997-05-28complain if ufs is spotted in /etc/fstabTheo de Raadt
1997-05-21better disklabel -e messagingTheo de Raadt
1997-05-19s/NetBSD//Jason Downs
1997-05-15mention that addition code was written in GermanyTheo de Raadt
1997-05-05hopefully the last tahoe relict in the tree goes now ...Thomas Graichen
1997-05-04Fix writing of pid file. From Matthieu Herrb <Mathieu.Herrb@mipnet.fr>Todd C. Miller
Closes OpenBSD PR#178
1997-04-30clone boot sector that existed there? bad idea. No idea why thoughTheo de Raadt
1997-04-27COPY -> INSTALL_COPY and STRIP -> INSTALL_STRIPTodd C. Miller
This fixes namespace problems where STRIP is sometimes used as the name of the strip(1) to use and other times used as the flag to send install(1) when stripping (or not). COPY doesn't have this problem (yet) but was poorly named.
1997-04-27Correct assumed editing mistakes.Jason Downs
1997-04-24Enforce read only mounts. No exceptions.Jason Downs
1997-04-24Don't build LFS, it doesn't work.Jason Downs
1997-04-20support for -o port=N; provosTheo de Raadt
1997-04-20sparc/sun3 labels want cyl-alignment; grrTheo de Raadt
1997-04-19Changed ``defined(KERBEROS)'' to ``(${KERBEROS} == "yes")''Todd C. Miller
Same change doen for SKEY, YP, and KERBEROS5. This allows people to override those setting in /etc/mk.conf.
1997-04-19force readonly, hehTheo de Raadt
1997-04-19replace -r (disable Rockridge extensions) with -R ..flipk
"-r" for all "mount*" is reserved for read-only flag.
1997-04-19thorpej:kstailey
icmpcode() returns an int, and, more importantly, -1 on failure. So, make this work on systems with unsigned chars by placing the return value of icmpcode() in a temporary variable, checking for failure, and then only setting fil.fr_icode (a char) upon success.
1997-04-17fix start address for first extended filesystemNiels Provos