# called by dracut
check() {
- [[ $hostonly ]] || [[ $mount_needs ]] && return 1
-
return 0
}
# called by dracut
depends() {
- echo fcoe bash
+ echo fcoe uefi-lib
return 0
}
# called by dracut
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
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"
--- /dev/null
+#!/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"
+}
+