projects
/
platform
/
upstream
/
dracut.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b52294d
)
90kernel-modules: fixed handling rd.driver.post=
author
Amadeusz Żołnowski
<aidecoe@aidecoe.name>
Thu, 30 Jun 2011 20:45:24 +0000
(22:45 +0200)
committer
Harald Hoyer
<harald@redhat.com>
Fri, 1 Jul 2011 08:15:26 +0000
(10:15 +0200)
modules.d/90kernel-modules/insmodpost.sh
patch
|
blob
|
history
diff --git
a/modules.d/90kernel-modules/insmodpost.sh
b/modules.d/90kernel-modules/insmodpost.sh
index
1b8ccfa
..
168a907
100755
(executable)
--- a/
modules.d/90kernel-modules/insmodpost.sh
+++ b/
modules.d/90kernel-modules/insmodpost.sh
@@
-2,11
+2,13
@@
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
-for p in $(getargs rd.driver.post rdinsmodpost=); do
+. /lib/dracut-lib.sh
+
+for modlist in $(getargs rd.driver.post rdinsmodpost=); do
(
IFS=,
- for
p in $i
; do
- modprobe $
p
+ for
m in $modlist
; do
+ modprobe $
m
done
)
done