]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
Removed 90kernel-modules-loaded.
authorVictor Lowther <victor.lowther@gmail.com>
Sat, 30 May 2009 03:19:43 +0000 (22:19 -0500)
committerVictor Lowther <victor.lowther@gmail.com>
Sat, 30 May 2009 04:07:56 +0000 (23:07 -0500)
Sure, it will load all the modules that are currently installed into the
initramfs.  Why was this a good thing, again?

modules.d/90kernel-modules-loaded/check [deleted file]
modules.d/90kernel-modules-loaded/install [deleted file]

diff --git a/modules.d/90kernel-modules-loaded/check b/modules.d/90kernel-modules-loaded/check
deleted file mode 100755 (executable)
index 2d4bd6f..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-# Install all loaded modules in the initramfs if we are building a 
-# hostonly initramfs
-[[ $1 = -h ]]
-
diff --git a/modules.d/90kernel-modules-loaded/install b/modules.d/90kernel-modules-loaded/install
deleted file mode 100755 (executable)
index ffafcd9..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-# install all currently loaded modules in initrd
-
-/sbin/lsmod | while read mod rest; do
-       instmods "$mod"
-done
-