8 lines
134 B
Text
8 lines
134 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
ROOT="build/rootfs"
|
||
|
|
|
||
|
|
mount --bind /proc "$ROOT/proc"
|
||
|
|
mount --bind /dev "$ROOT/dev"
|
||
|
|
mount --bind /sys "$ROOT/sys"
|