Clean up of files which primarily caused confusion.
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
include $(top_srcdir)/config/include-Makefile.am
-EXTRA_DIST = README.flushb uuidd.rc
+EXTRA_DIST = uuidd.rc
bin_PROGRAMS =
sbin_PROGRAMS =
usrbin_exec_PROGRAMS = cal ddate logger look mcookie namei whereis
-EXTRA_DIST += README.cal README.ddate README.namei README.namei2
+EXTRA_DIST += README.cal README.ddate README.namei
logger_SOURCES = logger.c $(top_srcdir)/lib/strutils.c
mcookie_SOURCES = mcookie.c $(top_srcdir)/lib/md5.c
+++ /dev/null
-/*
- * Some people submit a utility flushb.c.
- * However, it is useless, BLKFLSBUF is already part of blockdev,
- * so that "flushb device" is the same as "blockdev --flushbufs device".
- */
+++ /dev/null
-
-** NAMEI has local modifications, do not delete source when cleaning up **
-
-"You're in a twisty maze of symbolic links, all different"
-
-namei - a utility to chase down a pathname and print details at each
-level, especialy when following symbolic links. Very useful for figuring
-out whats really going on in our large environment. Named after the routine
-in the kernel that does essentialy the same thing whenever anyone tries to
-find a file.
-
-Local modifications by Steve Tell include: changing the -m option to print
-the file mode in a readable fashion, like "ls -l" does, instead of in octal.
-
+++ /dev/null
-RedHat and SuSE take the program reset from ncurses,
- where reset is a name for the program tset.
- It is approximately equivalent to
- stty sane; tputs rs1; tputs rs2; tputs rf
- with `tputs rf' replaced by `tputs if' when there is an
- init_file but no reset_file. In the comments it wonders
- whether also sending rs3, rmacs, rmul, rmm might be a good idea.
-
-Slackware uses the small script given here.
- The part `echo -e \\033c' is the canonical reset of the kernel
- console status, and is equivalent to `tputs rs1' for a linux
- terminal.
-
-So, both versions are approximately the same.
-
-
-[A disadvantage of `echo -e \\033c' might be that it is potentially
-wrong on a non-vt100, non-xterm, non-linux terminal.
-An advantage is that there are terminfo entries for xterm around
-that only use rs1=^O as reset, and then \Ec is much better.]