Added new 'mount.sh' script to align with ZFSBootMenu documentation

This commit is contained in:
2026-01-02 10:12:54 -05:00
parent 6e1670ac6a
commit e03ff714a7

20
mount.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
set -euo pipefail
mount \
--types proc \
proc \
/mnt/proc
mount \
--types sysfs \
sys \
/mnt/sys
mount \
--bind \
/dev \
/mnt/dev
mount \
--types devpts \
pts \
/mnt/dev/pts