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.
27 lines
1017 B
27 lines
1017 B
6 years ago
|
From 84dfea4d2a9660c7cecfafb6955d075306da2bcb Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@redhat.com>
|
||
|
Date: Wed, 19 Feb 2014 11:49:34 +0100
|
||
|
Subject: [PATCH] iscsi: for iBFT read the initiator-name from the correct file
|
||
|
|
||
|
/sys/firmware/ibft/initiator-name should be
|
||
|
/sys/firmware/ibft/initiator/initiator-name
|
||
|
|
||
|
https://github.com/haraldh/dracut/issues/12
|
||
|
---
|
||
|
modules.d/95iscsi/iscsiroot.sh | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/modules.d/95iscsi/iscsiroot.sh b/modules.d/95iscsi/iscsiroot.sh
|
||
|
index 8b743323..54f49903 100755
|
||
|
--- a/modules.d/95iscsi/iscsiroot.sh
|
||
|
+++ b/modules.d/95iscsi/iscsiroot.sh
|
||
|
@@ -125,7 +125,7 @@ handle_netroot()
|
||
|
|
||
|
if [ -z $iscsi_initiator ]; then
|
||
|
if [ -f /sys/firmware/ibft/initiator/initiator-name ]; then
|
||
|
- iscsi_initiator=$(while read line; do echo $line;done < /sys/firmware/ibft/initiator-name)
|
||
|
+ iscsi_initiator=$(while read line; do echo $line;done < /sys/firmware/ibft/initiator/initiator-name)
|
||
|
fi
|
||
|
fi
|
||
|
|