summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorSimon Rettberg2013-02-26 18:49:21 +0100
committerSimon Rettberg2013-02-26 18:49:21 +0100
commitbccbda5a0d09d5218db2c7af339794a7eb6ee598 (patch)
tree31521f2bf4a4e302166dcb538aa2dc0a92b8c388 /server
parentAdded dependency system for modules (REQUIRED_MODULES var in *.conf of module... (diff)
downloadtm-scripts-bccbda5a0d09d5218db2c7af339794a7eb6ee598.tar.gz
tm-scripts-bccbda5a0d09d5218db2c7af339794a7eb6ee598.tar.xz
tm-scripts-bccbda5a0d09d5218db2c7af339794a7eb6ee598.zip
Implemented more flexible command line parsing
Diffstat (limited to 'server')
-rwxr-xr-xserver/build_core4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/build_core b/server/build_core
index 411036df..03ff6eca 100755
--- a/server/build_core
+++ b/server/build_core
@@ -27,9 +27,9 @@ STAGE32_DIR=${ROOT_DIR}/remote/stage3.2
# initial checks
initial_checks() {
local TOOL_STR="$TOOL_STR initial_checks:"
- [ -d "${STAGE32_DIR}" ] || perror "No stage3.2 directory found. Please run './mltk tools build' first."
+ [ -d "${STAGE32_DIR}" ] || perror "No stage3.2 directory found. Please run './mltk --tools -b' first."
- [ -e "${STAGE32_DIR}/openslx/bin/busybox" ] || perror "Busybox not found, run './mltk tools build busybox' first."
+ [ -e "${STAGE32_DIR}/openslx/bin/busybox" ] || perror "Busybox not found, run './mltk --tools -b busybox' first."
# shouldn't squashfs-tools be automatically installed as we need them nevertheless!?
# what if it is already on the machine? faster to check with which than the apt-get check?