hush/util-linux
Rob Landley 4470b74e29 The kernel can't handle umount /dev/hdc, we have to do it through mtab,
except that we still have to work when there is no mtab.

Oh, and while we're at it, take advantage of the fact that modern processors
avoid branches via conditional assignment where possible.  ("x = a ? b : c;"
turns into "x = c; if (a) x = b;" because that way there's no branch to
potentially mispredict and thus never a bubble in the pipeline.  The if(a)
turns into an assembly test followed by a conditional assignment (rather
than a conditional jump).)  So since the compiler is going to do that _anyway_,
we might as well take advantage of it to produce a slightly smaller binary.

So there.
2006-08-17 19:07:20 +00:00
..
Config.in Add shared subtree support, suggested by Vladimir Dronnikov. Also break out a 2006-08-08 01:39:49 +00:00
dmesg.c
fbset.c
fdformat.c
fdisk.c
freeramdisk.c
fsck_minix.c
getopt.c
hexdump.c
hwclock.c
ipcrm.c Standardize on the vi editing directives being on the first line. 2006-07-02 19:47:05 +00:00
ipcs.c
losetup.c
Makefile
Makefile.in
mdev.c Patch from Chris Steel to fix mdev deleting device nodes. 2006-08-10 01:09:37 +00:00
mkfs_minix.c
mkswap.c Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate 2006-08-03 15:41:12 +00:00
more.c
mount.c Vladimir Dronnikov convinced me to twiddle the semantics of the new shared 2006-08-09 19:51:13 +00:00
nfsmount.c
nfsmount.h
pivot_root.c
rdate.c
readprofile.c
setarch.c
swaponoff.c
switch_root.c
umount.c The kernel can't handle umount /dev/hdc, we have to do it through mtab, 2006-08-17 19:07:20 +00:00