You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
From 443d167a95499b827c2d8c9c3b61f4922c59ff7e Mon Sep 17 00:00:00 2001 |
|
From: Lukas Nykryn <lnykryn@redhat.com> |
|
Date: Wed, 5 Oct 2016 12:46:39 +0200 |
|
Subject: [PATCH] network: do not check "firmware boot selected flag" |
|
|
|
Apparently it is not set correctly on some setups |
|
https://bugzilla.redhat.com/show_bug.cgi?id=1380581 |
|
--- |
|
modules.d/40network/net-lib.sh | 2 -- |
|
1 file changed, 2 deletions(-) |
|
|
|
diff --git a/modules.d/40network/net-lib.sh b/modules.d/40network/net-lib.sh |
|
index 3459e898..9083aea7 100755 |
|
--- a/modules.d/40network/net-lib.sh |
|
+++ b/modules.d/40network/net-lib.sh |
|
@@ -241,8 +241,6 @@ ibft_to_cmdline() { |
|
[ -e ${iface}/flags ] && flags=$(read a < ${iface}/flags; echo $a) |
|
# Skip invalid interfaces |
|
(( $flags & 1 )) || continue |
|
- # Skip interfaces not used for booting |
|
- (( $flags & 2 )) || continue |
|
[ -e ${iface}/dhcp ] && dhcp=$(read a < ${iface}/dhcp; echo $a) |
|
[ -e ${iface}/origin ] && origin=$(read a < ${iface}/origin; echo $a) |
|
[ -e ${iface}/ip-addr ] && ip=$(read a < ${iface}/ip-addr; echo $a)
|
|
|