From 9760335102c3f14789864125aae1dc897285b4e2 Mon Sep 17 00:00:00 2001 From: Thomas Bächler Date: Sun, 15 Oct 2006 18:34:22 +0000 Subject: added install/ata and new deprecation check git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@173 880c04e9-e011-0410-abf7-b926e227c9cd --- mkinitcpio | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'mkinitcpio') diff --git a/mkinitcpio b/mkinitcpio index c22cc2d..330faf2 100644 --- a/mkinitcpio +++ b/mkinitcpio @@ -137,6 +137,20 @@ for hook in $HOOKS; do unset BINARIES unset FILES install () { msg "${hook}: no install function..."; } + # Deprecation check + # A hook is considered deprecated if it is a symlink + # within $INSTDIR. + if [ -L "${INSTDIR}/${hook}" ]; then + newhook="$(readlink -ne "${INSTDIR}/${hook}")" + if [ -n "${newhook}" -a "${INSTDIR}/$(basename ${newhook})" -ef "${newhook}" ]; then + newhook="$(basename ${newhook})" + echo " -------------------------------------------------------------------" + echo " WARNING: Hook \"${hook}\" is deprecated." + echo " Replace it with \"${newhook}\" in your configuration file." + echo " -------------------------------------------------------------------" + hook="${newhook}" + fi + fi if grep "install" "${INSTDIR}/${hook}" >/dev/null 2>&1; then source "${INSTDIR}/${hook}" echo ":: Parsing hook [${hook}]" -- cgit v1.2.3-24-g4f1b