From add972864e8f98ab4932ea0894def27ab6c5643b Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Thu, 16 Jul 2026 20:00:01 +0200 Subject: [PATCH] Add /dev/ptmx symlink This is the standard location for ptmx across unixes though POSIX doesn't strictly mandate it to exist. It only mandates posix_openpt() to work. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index cd652607b5..3b984d1e20 100644 --- a/Makefile +++ b/Makefile @@ -119,6 +119,7 @@ install-base: base $(SYSROOT)/bin/redoxfs # Device file symlinks @mkdir -pv "$(DESTDIR)/dev" ln -sf /scheme/null $(DESTDIR)/dev/null + ln -sf /scheme/pty/ptmx $(DESTDIR)/dev/ptmx ln -sf /scheme/rand $(DESTDIR)/dev/random ln -sf /scheme/rand $(DESTDIR)/dev/urandom ln -sf /scheme/zero $(DESTDIR)/dev/zero