8 lines
74 B
Bash
8 lines
74 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -exu
|
||
|
|
||
|
rootdir="$1"
|
||
|
|
||
|
chroot "$rootdir" busybox --install -s
|