diff options
-rw-r--r-- | install/pata | 2 | ||||
-rw-r--r-- | install/sata | 2 | ||||
-rw-r--r-- | mkinitcpio | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/install/pata b/install/pata index 88a0634..c3da76f 100644 --- a/install/pata +++ b/install/pata @@ -7,7 +7,7 @@ install () MODULES=$(echo ${MODULES}) #trim whitespace if [ "x${MODULES}" != "x" ]; then - MODULES="${MODULES} libata sd_mod sr_mod" + MODULES="${MODULES} sd_mod sr_mod" fi BINARIES="" diff --git a/install/sata b/install/sata index f8c6bd8..61f7dda 100644 --- a/install/sata +++ b/install/sata @@ -9,7 +9,7 @@ install () MODULES=$(echo ${MODULES}) #trim whitespace if [ "x${MODULES}" != "x" ]; then - MODULES="${MODULES} libata sd_mod sr_mod" + MODULES="${MODULES} sd_mod sr_mod" fi BINARIES="" @@ -92,7 +92,7 @@ if [ -n "${PRESET}" ]; then # Use -b, -m and -v options specified earlier PRESET_MKOPTS="${0}" [ -n "${BASEDIR}" ] && PRESET_MKOPTS="${PRESET_MKOPTS} -b ${BASEDIR}" - [ -n "${MESSAGE}" ] && PRESET_MKOPTS="${PRESET_MKOPTS} -m ${MESSAGE}" + [ -n "${MESSAGE}" ] && PRESET_MKOPTS="${PRESET_MKOPTS} -m \"${MESSAGE}\"" [ "${QUIET}" = "n" ] && PRESET_MKOPTS="${PRESET_MKOPTS} -v" # Build all images source ${PRESETDIR}/${PRESET}.preset @@ -123,7 +123,7 @@ if [ -n "${PRESET}" ]; then continue fi echo "==> Running command: ${PRESET_CMD}" - if ${PRESET_CMD}; then + if eval ${PRESET_CMD}; then echo "==> SUCCESS" else echo "==> FAIL" |