aboutsummaryrefslogtreecommitdiff
path: root/busybox/std-stream
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-09-05 00:23:31 +0200
committerEugen Wissner <belka@caraus.de>2026-09-05 00:23:31 +0200
commit1ea2bc9b308b8c05ab09ef463f638f993e747f39 (patch)
treeb4ddc6f3a65a46f395784f3a31680bca52108305 /busybox/std-stream
parent20c4ab362487989b88c29981232b6e78fe793f7f (diff)
downloads6-1ea2bc9b308b8c05ab09ef463f638f993e747f39.tar.gz
Remove busybox servicesHEADmaster
Diffstat (limited to 'busybox/std-stream')
-rw-r--r--busybox/std-stream/dependencies1
-rw-r--r--busybox/std-stream/type1
-rw-r--r--busybox/std-stream/up12
3 files changed, 0 insertions, 14 deletions
diff --git a/busybox/std-stream/dependencies b/busybox/std-stream/dependencies
deleted file mode 100644
index 8b71071..0000000
--- a/busybox/std-stream/dependencies
+++ /dev/null
@@ -1 +0,0 @@
-procfs
diff --git a/busybox/std-stream/type b/busybox/std-stream/type
deleted file mode 100644
index bdd22a1..0000000
--- a/busybox/std-stream/type
+++ /dev/null
@@ -1 +0,0 @@
-oneshot
diff --git a/busybox/std-stream/up b/busybox/std-stream/up
deleted file mode 100644
index 4bf594a..0000000
--- a/busybox/std-stream/up
+++ /dev/null
@@ -1,12 +0,0 @@
-################################################
-# Create symlinks for standard streams in /dev #
-################################################
-
-if { ln -sf /proc/self/fd /dev/fd }
-forx STREAM { "0 stdin" "1 stdout" "2 stderr" }
-importas -Sus STREAM
-backtick ARGUMENTS {
- printf "/proc/self/fd/%i /dev/%s" $STREAM
-}
-importas -Ssu ARGUMENTS
-ln -sf $ARGUMENTS