diff --git a/.github/labeler.yml b/.github/labeler.yml index f475e53e0e..8136d5c943 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -374,10 +374,6 @@ cifs: - changed-files: - any-glob-to-any-file: 'modules.d/95cifs/*' -dasd_mod: - - changed-files: - - any-glob-to-any-file: 'modules.d/95dasd_mod/*' - dcssblk: - changed-files: - any-glob-to-any-file: 'modules.d/95dcssblk/*' diff --git a/modules.d/95dasd_mod/module-setup.sh b/modules.d/95dasd_mod/module-setup.sh deleted file mode 100755 index 155eaacc71..0000000000 --- a/modules.d/95dasd_mod/module-setup.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -# called by dracut -check() { - local _arch=${DRACUT_ARCH:-$(uname -m)} - [ "$_arch" = "s390" -o "$_arch" = "s390x" ] || return 1 - - return 0 -} - -# called by dracut -depends() { - return 0 -} - -# called by dracut -installkernel() { - instmods dasd_mod dasd_eckd_mod dasd_fba_mod dasd_diag_mod -} - -# called by dracut -install() { - inst_hook cmdline 31 "$moddir/parse-dasd-mod.sh" - inst_multiple -o dasd_cio_free -} diff --git a/modules.d/95dasd_mod/parse-dasd-mod.sh b/modules.d/95dasd_mod/parse-dasd-mod.sh deleted file mode 100755 index b635ecf9c2..0000000000 --- a/modules.d/95dasd_mod/parse-dasd-mod.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -if [ -x /sbin/dasd_cio_free ]; then - dasd_cio_free -fi