initial checkin
authorMichael Prokop <mika@grml.org>
Thu, 8 Feb 2007 19:55:54 +0000 (20:55 +0100)
committerMichael Prokop <mika@grml.org>
Thu, 8 Feb 2007 19:55:54 +0000 (20:55 +0100)
Makefile [new file with mode: 0644]
grml-live.txt [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..f764eef
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,26 @@
+all: doc
+
+# doc: doc_man doc_html
+doc: doc_html
+
+doc_html: html-stamp
+
+html-stamp: grml-live.txt
+       asciidoc -b xhtml11 grml-live.txt
+       touch html-stamp
+
+doc_man: man-stamp
+
+man-stamp: grml-live.txt
+       asciidoc -d manpage -b docbook grml-live.txt
+       sed -i 's/<emphasis role="strong">/<emphasis role="bold">/' grml-live.xml
+       xsltproc /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl grml-live.xml
+       # ugly hack to avoid duplicate empty lines in manpage
+       # notice: docbook-xsl 1.71.0.dfsg.1-1 is broken! make sure you use 1.68.1.dfsg.1-0.2!
+       cp grml-live.8 grml-live.8.tmp
+       uniq grml-live.8.tmp > grml-live.8
+       rm grml-live.8.tmp
+       touch man-stamp
+
+clean:
+       rm -rf grml-live.html grml-live.xml grml-live.8 html-stamp man-stamp
diff --git a/grml-live.txt b/grml-live.txt
new file mode 100644 (file)
index 0000000..b13165f
--- /dev/null
@@ -0,0 +1,36 @@
+grml-live(8)
+============
+
+Name
+----
+grml-live - create grml-live ISO
+
+Synopsis
+--------
+grml-live
+
+Design decisions + Plans
+------------------------
+
+* support at least i386, amd64 and ppc as architectures
+* allow manual interaction within build-process (through hooks)
+* support template(s/ files) for all the files outside the squashfs image
+* support additional hooks
+* support user specified scripts
+* support creation of DVDs
+* support update-alternatives configuration via a file
+
+Why not use make-live/live-package?
+------------------------------------
+
+At the time of writing this lines (8th february 2007) mainly because of the following limitations:
+
+* does not support powerpc
+* does not support booting via usb/firewire (using initramfs => casper)
+* manual configuration of packages not really supported
+* overwrites several files in the chroot without checking for its existance before
+* supports only one so called $LIVE_MIRROR
+
+Author
+------
+Michael Prokop <mika@grml.org>