1
1

Initial dump from Zyxel

This commit is contained in:
2026-04-17 17:00:52 +02:00
commit 81fec250f4
23116 changed files with 5231237 additions and 0 deletions
@@ -0,0 +1,31 @@
From 971a09345f108189ed899b236784a5440e43c8b6 Mon Sep 17 00:00:00 2001
From: Daniel Mierswa <impulze@impulze.org>
Date: Sun, 31 Jul 2011 23:51:49 +0000
Subject: [PATCH 1/2] build: don't use --gc-sections
somehow won't work with the wrt toolchain
---
Makefile.am | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index a0c007a..3d8ce92 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,12 +18,9 @@ AM_CPPFLAGS = \
-DLIBEXECDIR=\""$(libexecdir)"\"
AM_CFLAGS = \
- -fvisibility=hidden \
- -ffunction-sections \
- -fdata-sections
+ -fvisibility=hidden
AM_LDFLAGS = \
- -Wl,--gc-sections \
-Wl,--as-needed
DISTCHECK_CONFIGURE_FLAGS = \
--
1.7.6
@@ -0,0 +1,25 @@
From ae90737100d901723af9890e69798bd1dac9a86d Mon Sep 17 00:00:00 2001
From: Daniel Mierswa <impulze@impulze.org>
Date: Sun, 31 Jul 2011 23:53:21 +0000
Subject: [PATCH 2/2] udevd: add -lrt for message queue symbols
---
Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 3d8ce92..7d8a4b6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -164,7 +164,7 @@ udev_udevd_SOURCES = \
udev/udevd.c \
udev/sd-daemon.h \
udev/sd-daemon.c
-udev_udevd_LDADD = libudev/libudev-private.la
+udev_udevd_LDADD = libudev/libudev-private.la -lrt
udev_udevadm_SOURCES = \
$(udev_common_sources) \
--
1.7.6
@@ -0,0 +1,13 @@
--- a/extras/input_id/input_id.c
+++ b/extras/input_id/input_id.c
@@ -30,6 +30,10 @@
#include "libudev.h"
#include "libudev-private.h"
+#ifndef BTN_TRIGGER_HAPPY
+#define BTN_TRIGGER_HAPPY 0x2c0
+#endif
+
/* we must use this kernel-compatible implementation */
#define BITS_PER_LONG (sizeof(unsigned long) * 8)
#define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)