add mount/umount aliases

This commit is contained in:
Emile Clark-Boman 2025-08-14 22:40:28 +10:00
parent 01f9e46aee
commit 56485a1103
2 changed files with 14 additions and 0 deletions

7
bind Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
ROOT="build/rootfs"
mount --bind /proc "$ROOT/proc"
mount --bind /dev "$ROOT/dev"
mount --bind /sys "$ROOT/sys"