]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
misc-utils: remove misleading README files
authorSami Kerola <kerolasa@iki.fi>
Sat, 11 Jun 2011 22:00:55 +0000 (00:00 +0200)
committerSami Kerola <kerolasa@iki.fi>
Sat, 25 Jun 2011 11:45:27 +0000 (13:45 +0200)
Clean up of files which primarily caused confusion.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
misc-utils/Makefile.am
misc-utils/README.flushb [deleted file]
misc-utils/README.namei2 [deleted file]
misc-utils/README.reset [deleted file]

index decf765fdf456eeff5c32a609bccd5dd0f7c9815..8fd95b89488a479d51e00efd768a2ee0885b1e17 100644 (file)
@@ -1,6 +1,6 @@
 include $(top_srcdir)/config/include-Makefile.am
 
-EXTRA_DIST = README.flushb uuidd.rc
+EXTRA_DIST = uuidd.rc
 
 bin_PROGRAMS =
 sbin_PROGRAMS =
@@ -8,7 +8,7 @@ usrsbin_exec_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
diff --git a/misc-utils/README.flushb b/misc-utils/README.flushb
deleted file mode 100644 (file)
index 34ef9cf..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-/*
- * 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".
- */
diff --git a/misc-utils/README.namei2 b/misc-utils/README.namei2
deleted file mode 100644 (file)
index fea56a3..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-
-** 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.
-
diff --git a/misc-utils/README.reset b/misc-utils/README.reset
deleted file mode 100644 (file)
index 8060d26..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-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.]