From 0a739ba2a4380e722a5d4408f9f57b1190edfc08 Mon Sep 17 00:00:00 2001 From: Ron Williams Date: Fri, 5 Jan 2024 06:27:09 -0800 Subject: [PATCH] add /dev/tty and other libc: links --- config/base.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/config/base.toml b/config/base.toml index 7546b5c..195300b 100644 --- a/config/base.toml +++ b/config/base.toml @@ -85,6 +85,26 @@ path = "/dev/zero" data = "zero:" symlink = true +[[files]] +path = "/dev/tty" +data = "libc:tty" +symlink = true + +[[files]] +path = "/dev/stdin" +data = "libc:stdin" +symlink = true + +[[files]] +path = "/dev/stdout" +data = "libc:stdout" +symlink = true + +[[files]] +path = "/dev/stderr" +data = "libc:stderr" +symlink = true + # Group settings [[files]] path = "/etc/group"