From dcd1b899cef238c77c9a3169017dfaa5e7b7f4e3 Mon Sep 17 00:00:00 2001 From: Andrew Cady Date: Tue, 11 Jan 2022 02:56:32 -0500 Subject: back to mount --bind /dev --- selfstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfstrap b/selfstrap index ff8408b..3521bb2 100755 --- a/selfstrap +++ b/selfstrap @@ -180,7 +180,7 @@ prepare_chroot() [ -d "$TARGET"/sys ] || mkdir "$TARGET"/sys mountpoint -q "$TARGET"/proc || mount -t proc proc "$TARGET"/proc mountpoint -q "$TARGET"/sys || mount -t sysfs sysfs "$TARGET"/sys - mountpoint -q "$TARGET"/dev || mount -t tmpfs tmpfs "$TARGET"/dev + mountpoint -q "$TARGET"/dev || mount --bind /dev "$TARGET"/dev } cleanup_chroot() -- cgit v1.2.3