From: Daniel Molkentin Date: Mon, 4 Dec 2017 14:55:12 +0000 (+0100) Subject: Remove 00systemd-bootchart X-Git-Tag: 047~73^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F310%2Fhead;p=thirdparty%2Fdracut.git Remove 00systemd-bootchart This was removed from systemd almost two years ago in c550f7a9b89d017215af084288bc44f736f774fe, so dracut should drop support as well. Reference: bsc#1067279 --- diff --git a/modules.d/00systemd-bootchart/module-setup.sh b/modules.d/00systemd-bootchart/module-setup.sh deleted file mode 100755 index dcf546e6d..000000000 --- a/modules.d/00systemd-bootchart/module-setup.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -# called by dracut -check() { - [[ "$mount_needs" ]] && return 1 - require_binaries $systemdutildir/systemd-bootchart || return 1 - return 255 -} - -# called by dracut -depends() { - return 0 -} - -# called by dracut -install() { - inst_symlink /init /sbin/init - inst_multiple $systemdutildir/systemd-bootchart -}