diff options
-rwxr-xr-x | mkinitcpio | 21 | ||||
-rw-r--r-- | mkinitcpio.d/example.preset | 2 |
2 files changed, 5 insertions, 18 deletions
@@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # mkinitcpio - modular tool for building an init ramfs cpio image # # IMPORTANT: We need to keep a common base syntax here @@ -113,32 +113,17 @@ while getopts ':c:k:s:b:g:a:p:m:vH:LMhS:' arg; do done shift $((${OPTIND} - 1)) -. "${FUNCTIONS}" - # use preset $PRESET if [ -n "${PRESET}" ]; then if [ -f "${PRESETDIR}/${PRESET}.preset" ]; then - echo " -------------------------------------------------------------------" - echo " WARNING: Defining PRESETS as a bash array is no longer supported." - echo " PRESETS should be defined as a string in all mkinitcpio" - echo " preset files for compatibility with dash." - echo " -------------------------------------------------------------------" - # 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}\"" [ "${QUIET}" = "n" ] && PRESET_MKOPTS="${PRESET_MKOPTS} -v" - # Build all images - echo "==> Using ${PRESETDIR}/${PRESET}.preset" - if grep -q "PRESETS=(" ${PRESETDIR}/${PRESET}.preset; then - die "Invalid definition of PRESETS." - fi - . ${PRESETDIR}/${PRESET}.preset - - for p in ${PRESETS}; do + for p in ${PRESETS[@]}; do echo "==> Building image \"${p}\"" PRESET_CMD="${PRESET_MKOPTS}" @@ -230,6 +215,8 @@ fi BASEDIR=$(echo ${BASEDIR} | tr -s /) MODULEDIR=$(echo ${MODULEDIR} | tr -s /) +. "${FUNCTIONS}" + if [ "${SHOW_AUTOMODS}" = "y" ]; then echo "Modules autodetected:" . "${INSTDIR}/autodetect" diff --git a/mkinitcpio.d/example.preset b/mkinitcpio.d/example.preset index 9b9b32e..3fb32f1 100644 --- a/mkinitcpio.d/example.preset +++ b/mkinitcpio.d/example.preset @@ -1,7 +1,7 @@ # Example mkinitcpio preset file # preset names -PRESETS="default fallback" +PRESETS=('default' 'fallback') # ALL_kver is used if presetname_kver is not set # note for distribution kernels: this should be in a separate file |