diff options
author | Cem Keylan <cem@ckyln.com> | 2024-03-04 17:03:19 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2024-03-04 17:03:19 +0100 |
commit | d5843aa1fa1e83d0f4b7d9c3d08515c1ea7fb55a (patch) | |
tree | f2deb04c78067081c8bb8ebd5bedbfe54e10adfa | |
parent | 0b97ac777296cb77580afc46313cc35eb672256d (diff) | |
download | init-d5843aa1fa1e83d0f4b7d9c3d08515c1ea7fb55a.tar.gz |
rc.boot: Fix /dev/fd link
-rwxr-xr-x | rc.boot | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ out "Mounting pseudo filesystems..."; { mnt mode=1777,nosuid,nodev tmpfs shm /dev/shm { - ln -sf /proc/self/fs /dev/fd + ln -sf /proc/self/fd /dev/fd ln -sf fd/0 /dev/stdin ln -sf fd/1 /dev/stdout ln -sf fd/2 /dev/stderr |