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.
29 lines
940 B
29 lines
940 B
6 years ago
|
From af34b260474c551a45a6fa4ae8719622f1e35910 Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@redhat.com>
|
||
|
Date: Fri, 13 Sep 2013 17:34:18 +0200
|
||
|
Subject: [PATCH] dracut.sh: also search uevent's for MODALIAS
|
||
|
|
||
|
---
|
||
|
dracut.sh | 8 ++++++++
|
||
|
1 file changed, 8 insertions(+)
|
||
|
|
||
|
diff --git a/dracut.sh b/dracut.sh
|
||
|
index fd278466..ce39151c 100755
|
||
|
--- a/dracut.sh
|
||
|
+++ b/dracut.sh
|
||
|
@@ -923,6 +923,14 @@ if [[ $hostonly ]]; then
|
||
|
while read m; do
|
||
|
modalias="$(<"$m")" && [[ $modalias ]] && host_modalias["$modalias"]=1
|
||
|
done < "$initdir/.modalias"
|
||
|
+ find /sys/devices/ -name uevent -print > "$initdir/.modalias"
|
||
|
+ while read m; do
|
||
|
+ while read line; do
|
||
|
+ [[ "$line" != MODALIAS\=* ]] && continue
|
||
|
+ modalias="${line##MODALIAS=}" && [[ $modalias ]] && host_modalias["$modalias"]=1
|
||
|
+ done < "$m"
|
||
|
+ done < "$initdir/.modalias"
|
||
|
+
|
||
|
rm -f -- "$initdir/.modalias"
|
||
|
|
||
|
# check /proc/modules
|