diff options
-rw-r--r-- | sutils/MAKEDEV.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh index 7c35fd7d..de31c1be 100644 --- a/sutils/MAKEDEV.sh +++ b/sutils/MAKEDEV.sh @@ -251,7 +251,11 @@ mkdev() { # Linux, we tell tmpfs to set the size to half the physical RAM # in the machine. shm) - st $I root 644 d /hurd/tmpfs --mode=1777 50% + # Not yet, see https://darnassus.sceen.net/~hurd-web/open_issues/tmpfs/ + #st $I root 644 d /hurd/tmpfs --mode=1777 50% + if [ ! -e "/dev/$I" ]; then + ln -s /tmp /dev/$I + fi ;; pseudo-root) |