dracut.sh: add /boot/efi to device paths
Add /boot/efi to device paths, so the filesystem driver is included and it can be repaired in the initramfs.master
parent
87483405a0
commit
a956a464ef
|
|
@ -921,7 +921,9 @@ if [[ $hostonly ]]; then
|
||||||
"/usr/sbin" \
|
"/usr/sbin" \
|
||||||
"/usr/lib" \
|
"/usr/lib" \
|
||||||
"/usr/lib64" \
|
"/usr/lib64" \
|
||||||
"/boot";
|
"/boot" \
|
||||||
|
"/boot/efi" \
|
||||||
|
;
|
||||||
do
|
do
|
||||||
mp=$(readlink -f "$mp")
|
mp=$(readlink -f "$mp")
|
||||||
mountpoint "$mp" >/dev/null 2>&1 || continue
|
mountpoint "$mp" >/dev/null 2>&1 || continue
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue