9 lines
272 B
Bash
9 lines
272 B
Bash
#!/bin/busybox sh
|
|
/bin/busybox mount -t devtmpfs devtmpfs /dev
|
|
/bin/busybox mount -t proc none /proc
|
|
/bin/busybox mount -t sysfs none /sys
|
|
#/bin/busybox ln -s "/lib/modules/" "/lib/modules/$(uname -r)"
|
|
#depmod -a
|
|
#/bin/busybox modprobe nbd max_part=2
|
|
exec /bin/busybox sh
|