summaryrefslogtreecommitdiffstats
path: root/builder/modules.d/busybox/install-busybox-stage4.sh
blob: f0e25945e42208be4299cad0386f3e2c49bdccc5 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash

if hash busybox; then
	mkdir -p "$NEWROOT/opt/openslx/bin"
	busybox --install -s "$NEWROOT/opt/openslx/bin"
	cp "$(type -p busybox)" "$NEWROOT/opt/openslx/bin"
fi
true