mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 23:53:51 +02:00
kmod: patch default output to /proc/self/fd/1
Fixes void-runit#38.
This commit is contained in:
parent
09d3c8adeb
commit
8c13a6eb1f
2 changed files with 15 additions and 1 deletions
14
srcpkgs/kmod/patches/stdout.patch
Normal file
14
srcpkgs/kmod/patches/stdout.patch
Normal 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;
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'kmod'
|
# Template file for 'kmod'
|
||||||
pkgname=kmod
|
pkgname=kmod
|
||||||
version=27
|
version=27
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--with-zlib --with-xz"
|
configure_args="--with-zlib --with-xz"
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
|
|
Loading…
Add table
Reference in a new issue