7 lines
134 B
Bash
Executable file
7 lines
134 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ROOT="build/rootfs"
|
|
|
|
mount --bind /proc "$ROOT/proc"
|
|
mount --bind /dev "$ROOT/dev"
|
|
mount --bind /sys "$ROOT/sys"
|