From: Harald Hoyer Date: Thu, 12 Dec 2013 08:49:06 +0000 (+0100) Subject: move uefi-lib to a seperate module X-Git-Tag: RHEL-7.1~128 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c26eb3eb3ace56e336817d007da039c058cf330f;p=thirdparty%2Fdracut.git move uefi-lib to a seperate module --- diff --git a/modules.d/95fcoe-uefi/module-setup.sh b/modules.d/95fcoe-uefi/module-setup.sh index 007aa59a8..653d88ebb 100755 --- a/modules.d/95fcoe-uefi/module-setup.sh +++ b/modules.d/95fcoe-uefi/module-setup.sh @@ -4,14 +4,12 @@ # called by dracut check() { - [[ $hostonly ]] || [[ $mount_needs ]] && return 1 - return 0 } # called by dracut depends() { - echo fcoe bash + echo fcoe uefi-lib return 0 } diff --git a/modules.d/95fcoe/module-setup.sh b/modules.d/95fcoe/module-setup.sh index d3c58cc65..fe8e40aa5 100755 --- a/modules.d/95fcoe/module-setup.sh +++ b/modules.d/95fcoe/module-setup.sh @@ -3,11 +3,6 @@ # ex: ts=8 sw=4 sts=4 et filetype=sh check() { - # FIXME - # If hostonly was requested, fail the check until we have some way of - # knowing we are booting from FCoE - [[ $hostonly ]] || [[ $mount_needs ]] && return 1 - for i in dcbtool fipvlan lldpad ip readlink; do type -P $i >/dev/null || return 1 done diff --git a/modules.d/99base/module-setup.sh b/modules.d/99base/module-setup.sh index d33a0fb43..52ce40042 100755 --- a/modules.d/99base/module-setup.sh +++ b/modules.d/99base/module-setup.sh @@ -42,7 +42,6 @@ install() { mkdir -p ${initdir}/tmp inst_simple "$moddir/dracut-lib.sh" "/lib/dracut-lib.sh" - inst_simple "$moddir/uefi-lib.sh" "/lib/uefi-lib.sh" if ! dracut_module_included "systemd"; then inst_multiple switch_root || dfatal "Failed to install switch_root" diff --git a/modules.d/99uefi-lib/module-setup.sh b/modules.d/99uefi-lib/module-setup.sh new file mode 100755 index 000000000..4a856eaa9 --- /dev/null +++ b/modules.d/99uefi-lib/module-setup.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# module-setup for img-lib + +# called by dracut +check() { + return 255 +} + +# called by dracut +depends() { + echo bash + return 0 +} + +# called by dracut +install() { + inst_simple "$moddir/uefi-lib.sh" "/lib/uefi-lib.sh" +} + diff --git a/modules.d/99base/uefi-lib.sh b/modules.d/99uefi-lib/uefi-lib.sh similarity index 100% rename from modules.d/99base/uefi-lib.sh rename to modules.d/99uefi-lib/uefi-lib.sh