summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorSebastian Schmelzer2012-06-25 17:45:55 +0200
committerSebastian Schmelzer2012-06-25 17:45:55 +0200
commit5dfcf5a3a2de4718dccb5eef817e42ce98c78186 (patch)
tree51263ef411b58c7ca9b8cf05860608ec9e3a144c /bin
downloadosib-5dfcf5a3a2de4718dccb5eef817e42ce98c78186.tar.gz
osib-5dfcf5a3a2de4718dccb5eef817e42ce98c78186.tar.xz
osib-5dfcf5a3a2de4718dccb5eef817e42ce98c78186.zip
initial commit
Diffstat (limited to 'bin')
-rw-r--r--bin/osib16
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/osib b/bin/osib
new file mode 100644
index 0000000..28d8e50
--- /dev/null
+++ b/bin/osib
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+ROOT_DIR=$(readlink -f $(dirname $(readlink -f $0))/..)
+SELF=$(readlink -f $0)
+
+print_module_usage() {
+ echo "Toolkit for creating systemd based initramfs images (osid)"
+ echo "Usage: $(basename $SELF) MODULE [OPTIONS]"
+ echo "Modules:"
+ echo -e " env \t fetch, update, recreate kernel/initramfs"
+ echo -e " iso \t create preboot isos"
+ echo -e " usb \t create preboot usb sticks"
+ echo -e " installer \t create self-extracting installers"
+ echo "For more help run: $(basename $SELF) MODULE --help"
+}
+