kmod: patch default output to /proc/self/fd/1

Fixes void-runit#38.
This commit is contained in:
Leah Neukirchen 2020-03-12 19:10:08 +01:00 committed by Juan RP
parent 09d3c8adeb
commit 8c13a6eb1f
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,14 @@
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;

View file

@ -1,7 +1,7 @@
# Template file for 'kmod'
pkgname=kmod
version=27
revision=1
revision=2
build_style=gnu-configure
configure_args="--with-zlib --with-xz"
hostmakedepends="pkg-config"