-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
- Loading branch information
Showing
28 changed files
with
195 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
menu "netjson-monitoring Configuration" | ||
|
||
config NETJSON_MONITORING_IWINFO | ||
bool "Enable rpcd-mod-iwinfo" | ||
default y | ||
help | ||
Whether to include the rpcd-mod-iwinfo dependency (enabled by default). | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
lang/node/patches/999-fix_building_with_system_icu_76.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 54299ac3a3d4e4520b8604dce43c2584092ccde2 Mon Sep 17 00:00:00 2001 | ||
From: Michael Cho <michael@michaelcho.dev> | ||
Date: Sun, 27 Oct 2024 10:08:07 -0400 | ||
Subject: [PATCH] build: fix building with system icu 76 | ||
|
||
ICU 76 decided to reduce overlinking[^1] thus `icu-i18n` will no longer | ||
add `icu-uc` when linking to shared libraries. This results in undefined | ||
symbols/references when trying to build with system ICU 76. | ||
|
||
[^1]: unicode-org/icu@199bc82 | ||
--- | ||
configure.py | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
--- a/configure.py | ||
+++ b/configure.py | ||
@@ -1829,7 +1829,7 @@ def configure_intl(o): | ||
elif with_intl == 'system-icu': | ||
# ICU from pkg-config. | ||
o['variables']['v8_enable_i18n_support'] = 1 | ||
- pkgicu = pkg_config('icu-i18n') | ||
+ pkgicu = pkg_config(['icu-i18n', 'icu-uc']) | ||
if not pkgicu[0]: | ||
error('''Could not load pkg-config data for "icu-i18n". | ||
See above errors or the README.md.''') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- a/networking/telnetd.c | ||
+++ b/networking/telnetd.c | ||
@@ -133,6 +133,7 @@ | ||
#include <string.h> | ||
#include <unistd.h> | ||
#include <linux/reboot.h> | ||
+#include <sys/reboot.h> | ||
|
||
#define LOGIN_PREFIX "Atlas probe, see http://atlas.ripe.net/\r\n\r\n" | ||
#define LOGIN_PROMPT " login: " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.