forked from kiss-community/kiss
kiss-chroot: Automatically mount efivars
This commit is contained in:
parent
1712618765
commit
a11d48d595
@ -12,6 +12,7 @@ die() {
|
|||||||
|
|
||||||
clean() {
|
clean() {
|
||||||
log Unmounting /dev, /proc and /sys from chroot; {
|
log Unmounting /dev, /proc and /sys from chroot; {
|
||||||
|
umount "$1/sys/firmware/efi/efivars" 2>/dev/null ||:
|
||||||
umount "$1/dev" ||:
|
umount "$1/dev" ||:
|
||||||
umount "$1/proc" ||:
|
umount "$1/proc" ||:
|
||||||
umount "$1/sys" ||:
|
umount "$1/sys" ||:
|
||||||
@ -34,6 +35,8 @@ log Mounting /dev, /proc and /sys from host; {
|
|||||||
mountpoint -q "$1/proc" || mount -t proc proc "$1/proc"
|
mountpoint -q "$1/proc" || mount -t proc proc "$1/proc"
|
||||||
mountpoint -q "$1/sys" || mount -t sysfs sys "$1/sys"
|
mountpoint -q "$1/sys" || mount -t sysfs sys "$1/sys"
|
||||||
|
|
||||||
|
mountpoint -q "$1/sys/firmware/efi/efivars" ||
|
||||||
|
mount -t efivarfs efivarfs "$1/sys/firmware/efi/efivars" 2>/dev/null ||:
|
||||||
}
|
}
|
||||||
|
|
||||||
log Copying /etc/resolv.conf from host; {
|
log Copying /etc/resolv.conf from host; {
|
||||||
|
Loading…
Reference in New Issue
Block a user