From: Sami Kerola Date: Sat, 11 Jun 2011 22:00:55 +0000 (+0200) Subject: misc-utils: remove misleading README files X-Git-Tag: v2.20-rc1~138^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8839c0f60fee018e5f051aab9e30cb83d3d64660;p=thirdparty%2Futil-linux.git misc-utils: remove misleading README files Clean up of files which primarily caused confusion. Signed-off-by: Sami Kerola --- diff --git a/misc-utils/Makefile.am b/misc-utils/Makefile.am index decf765fdf..8fd95b8948 100644 --- a/misc-utils/Makefile.am +++ b/misc-utils/Makefile.am @@ -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 index 34ef9cf63c..0000000000 --- a/misc-utils/README.flushb +++ /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 index fea56a3ce4..0000000000 --- a/misc-utils/README.namei2 +++ /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 index 8060d265d8..0000000000 --- a/misc-utils/README.reset +++ /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.]