blob: 6deeee85c779081d7bf8053f7cffd4270b7571c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
# called by dracut
check() {
return 255
}
# called by dracut
depends() {
echo bash
return 0
}
# called by dracut
install() {
inst_simple "$moddir/uefi-lib.sh" "/lib/uefi-lib.sh"
}
|