void-packages/srcpkgs/kmod/patches/stdout.patch
Leah Neukirchen 8c13a6eb1f kmod: patch default output to /proc/self/fd/1
Fixes void-runit#38.
2020-03-14 08:33:16 +01:00

14 lines
457 B
Diff

Use /proc/self/fd/1 instead of /dev/stdout, so we can use
`kmod static-nodes` before udev is running.
--- tools/static-nodes.c.orig
+++ tools/static-nodes.c
@@ -156,7 +156,7 @@
{
struct utsname kernel;
char modules[PATH_MAX], buf[4096];
- const char *output = "/dev/stdout";
+ const char *output = "/proc/self/fd/1";
FILE *in = NULL, *out = NULL;
const struct static_nodes_format *format = &static_nodes_format_human;
int r, ret = EXIT_SUCCESS;