repo.or.cz
/
dracut.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
network: don't use "ifup -m"
[dracut.git]
/
modules.d
/
99uefi-lib
/
module-setup.sh
blob
3dcff22856d6ce3204f7a45d6f66d431d73b6c77
1
#!/bin/bash
2
3
# called by dracut
4
check
() {
5
return
255
6
}
7
8
# called by dracut
9
depends
() {
10
echo
bash
11
return
0
12
}
13
14
# called by dracut
15
install
() {
16
inst_simple
"
$moddir
/uefi-lib.sh"
"/lib/uefi-lib.sh"
17
}
18