--- a/Makefile Sun Mar 09 07:01:58 2008 +0100
+++ b/Makefile Sun Mar 09 07:13:50 2008 +0100
@@ -48,8 +48,8 @@ MANPAGES = sh-wrapper.8 \
event-viewer.8 \
bench.1 \
grml-kerneltest.8 \
- upgrade-bloatscanner.1
- #grml-kernelconfig
+ upgrade-bloatscanner.1 \
+ grml-kernelconfig.8
all: bin doc
bin: $(PROGS)
@@ -81,6 +81,7 @@ install: all
$(install_) -d -m 755 $(usrsbin)
$(install_) -m 755 event-viewer $(usrsbin)
$(install_) -m 755 grml-kerneltest $(usrsbin)
+ $(install_) -m 755 grml-kernelconfig $(usrsbin)
$(install_) -d -m 755 $(usrdoc)
$(install_) -m 644 sh-wrapper.8.html $(usrdoc)
@@ -88,11 +89,13 @@ install: all
$(install_) -m 644 bench.1.html $(usrdoc)
$(install_) -m 644 grml-kerneltest.8.html $(usrdoc)
$(install_) -m 644 upgrade-bloatscanner.1.html $(usrdoc)
+ $(install_) -m 644 grml-kernelconfig.8.html $(usrdoc)
$(install_) -d -m 755 $(man8)
$(install_) -m 644 sh-wrapper.8.gz $(man8)
$(install_) -m 644 event-viewer.8.gz $(man8)
$(install_) -m 644 grml-kerneltest.8.gz $(man8)
+ $(install_) -m 644 grml-kernelconfig.8.gz $(man8)
$(install_) -d -m 755 $(man1)
$(install_) -m 644 bench.1.gz $(man1)
--- a/debian/changelog Sun Mar 09 07:01:58 2008 +0100
+++ b/debian/changelog Sun Mar 09 07:13:50 2008 +0100
@@ -1,6 +1,7 @@ grml-debugtools (0.15) UNRELEASED; urgen
grml-debugtools (0.15) UNRELEASED; urgency=low
* grml-kernelconfig: added -h/--help
+ * grml-kernelconfig: added manpage
-- Michael Gebetsroither <gebi@grml.org> Sun, 09 Mar 2008 07:00:05 +0100
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/grml-kernelconfig.8.txt Sun Mar 09 07:13:50 2008 +0100
@@ -0,0 +1,58 @@
+GRML-KERNELCONFIG(8)
+====================
+Michael Gebetsroither <gebi@grml.org>
+
+
+NAME
+----
+grml-kernelconfig - Tool which helps in kernel config handling
+
+
+SYNOPSIS
+--------
+*grml-kernelconfig* [OPTIONS] 'action' <source1> <source2>
+
+
+DESCRIPTION
+-----------
+*grml-kernelconfig* is a program that
+helps you in kernel configuration handling, such as showing you the common
+configuration options between 2 kernel configs.
+
+
+ACTIONS
+-------
+*base <source1> <source2>*::
+ Prints every configuration option which is in source1 AND in source2.
+
+*diff <source1> <source1>*::
+ Prints every configuration option which is in source1 AND NOT in source2.
+
+*udiff <source1> <source1>*::
+ Prints everyting thats missing in either source1 or source2.
+
+
+OPTIONS
+-------
+*-h, help*::
+Show summary of options.
+
+
+EXAMPLES
+--------
+
+*grml-kernelconfig diff config-2.6.25-grml64 config-2.6.25-grml*::
+ Shows every config option which is available in grml64 kernel and is
+ missing in the normal kernel.
+
+
+SEE ALSO
+--------
+grml-kerneltest(8)
+
+
+AUTHOR
+------
+grml-kernelconfig was written by Michael Gebetsroither <michael.geb@gmx.at>.
+
+This manual page was written by Michael Gebetsroither <gebi@grml.org>.