From e03ff714a7cf213421fb1ea16dce62399189220b Mon Sep 17 00:00:00 2001 From: "Jean (east-high-Nerd)" Date: Fri, 2 Jan 2026 10:12:54 -0500 Subject: [PATCH] Added new 'mount.sh' script to align with ZFSBootMenu documentation --- mount.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 mount.sh diff --git a/mount.sh b/mount.sh new file mode 100755 index 0000000..d9ac8ca --- /dev/null +++ b/mount.sh @@ -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