35 lines
1005 B
Diff
35 lines
1005 B
Diff
From 3b9b20d237b3ec939b1bf9dd065c875fee54fe63 Mon Sep 17 00:00:00 2001
|
|
From: Kairui Song <kasong@redhat.com>
|
|
Date: Fri, 12 Oct 2018 13:07:13 +0800
|
|
Subject: [PATCH] 40network: Don't include 40network by default
|
|
|
|
commit 7347391 ('network-legacy: split off from network module')
|
|
splitted network function to network-legacy and removed check() function
|
|
of 40network. This caused 40network to be included even if network is
|
|
not needed.
|
|
|
|
Signed-off-by: Kairui Song <kasong@redhat.com>
|
|
|
|
Cherry-picked from: 83cbc06ab91288e2d931b4f36935bfdb79a99b0e
|
|
Resolves: #1639088
|
|
---
|
|
modules.d/40network/module-setup.sh | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/modules.d/40network/module-setup.sh b/modules.d/40network/module-setup.sh
|
|
index 57c0a45e..e8541636 100755
|
|
--- a/modules.d/40network/module-setup.sh
|
|
+++ b/modules.d/40network/module-setup.sh
|
|
@@ -1,5 +1,10 @@
|
|
#!/bin/bash
|
|
|
|
+# called by dracut
|
|
+check() {
|
|
+ return 255
|
|
+}
|
|
+
|
|
# called by dracut
|
|
depends() {
|
|
echo -n "kernel-network-modules "
|
|
|