summaryrefslogtreecommitdiffstats
path: root/mltk
diff options
context:
space:
mode:
authorJonathan Bauer2012-12-20 15:51:55 +0100
committerJonathan Bauer2012-12-20 15:51:55 +0100
commit96a285cc492ddd88dd062e4d88c61e1f268367b0 (patch)
treebdd57a73bc2243e4ed6b98d29ccdd621243e4074 /mltk
parentmltk basic script :) (diff)
downloadtm-scripts-96a285cc492ddd88dd062e4d88c61e1f268367b0.tar.gz
tm-scripts-96a285cc492ddd88dd062e4d88c61e1f268367b0.tar.xz
tm-scripts-96a285cc492ddd88dd062e4d88c61e1f268367b0.zip
minor fix
Diffstat (limited to 'mltk')
-rwxr-xr-xmltk12
1 files changed, 6 insertions, 6 deletions
diff --git a/mltk b/mltk
index 3af41ce5..b7ade22d 100755
--- a/mltk
+++ b/mltk
@@ -24,13 +24,13 @@ print_usage() {
echo "Usage: $(basename ${SELF}) MODULE [OPTION]"
echo -e " MODULE:"
echo -e " \t core \t minimal initramfs (stage 3.1) to mount the system-container (stage 3.2)."
- echo -e " \t sys \t minimal systemd-based rootfs including basic tools."
+ echo -e " \t tools \t minimal systemd-based rootfs including basic tools."
echo -e " OPTION:"
echo -e " \t build \t builds [MODULE]"
echo -e " \t clean \t clean build files for [MODULE]"
echo -e ""
echo -e " Module specific option:"
- echo -e " \t sys \t build [TOOL]"
+ echo -e " \t tools \t build [TOOL]"
echo -e " \t \t TOOL can be: \t base, busybox, dbus, udev, systemd, plymouth"
}
@@ -57,18 +57,18 @@ if [ "x$1" = "xcore" ]; then
print_usage
exit 1
fi
-elif [ "x$1" = "xsys" ]; then
+elif [ "x$1" = "xtools" ]; then
[ -e ${SETUP_TOOLS} ] && . ${SETUP_TOOLS}
shift
if [ "x$1" = "xbuild" ]; then
# shift away first 2 parameters
shift
- echo "[sys] Building $@"
+ echo "[tools] Building $@"
generate_stage32 $@
elif [ "x$1" = "xclean" ]; then
shift
- echo "[sys] Cleaning $@"
- clean_sys $@
+ echo "[tools] Cleaning $@"
+ clean_tools $@
else
print_usage
exit 1