15cc3b2d51
Provide simple script to run under busybox, this is all we need in the VM.
15 lines
134 B
Bash
15 lines
134 B
Bash
#!/bin/bash
|
|
|
|
check() {
|
|
return 255
|
|
}
|
|
|
|
depends() {
|
|
echo busybox dm
|
|
return 0
|
|
}
|
|
|
|
install() {
|
|
inst $moddir/init.sh /init
|
|
}
|