From dec492aeb7b727db2e4f3824f467964f7f55c1fb Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Sat, 11 Feb 2017 04:59:46 +0900 Subject: [PATCH] Fix non-devtmpfs dev population (probably) --- takeover.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/takeover.sh b/takeover.sh index 2c8ea32..7c04fb2 100755 --- a/takeover.sh +++ b/takeover.sh @@ -27,7 +27,7 @@ fi ./busybox mount -t sysfs sys sys if ! ./busybox mount -t devtmpfs dev dev; then ./busybox mount -t tmpfs dev dev - ./busybox cp -a /dev/ dev/ + ./busybox cp -a /dev/* dev/ ./busybox rm -rf dev/pts ./busybox mkdir dev/pts fi