This file contains hidden or 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
| #!/bin/bash | |
| # stremio-nonroot-secure.sh | |
| # Secure nonroot execution for Stremio in production environments | |
| # Implements security best practices for containerized GUI applications | |
| set -e | |
| # Detect system configuration | |
| VIDEO_GID=$(stat -c "%g" /dev/dri/card0) | |
| RENDER_GID=$(stat -c "%g" /dev/dri/renderD128) |
This file contains hidden or 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
| --- a/src/wl/sys/wl_cfg80211_hybrid.c | |
| +++ b/src/wl/sys/wl_cfg80211_hybrid.c | |
| @@ -67,7 +67,7 @@ | |
| static s32 wl_cfg80211_scan(struct wiphy *wiphy, struct net_device *ndev, | |
| struct cfg80211_scan_request *request); | |
| #endif | |
| -static s32 wl_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed); | |
| +static int wl_cfg80211_set_wiphy_params(struct wiphy *wiphy, int unused, u32 changed); | |
| static s32 wl_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev, | |
| struct cfg80211_ibss_params *params); |
This file contains hidden or 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
| --- rtl8192eu-1.0/include/osdep_service_linux.h 2025-06-08 17:25:56.726822818 +0200 | |
| +++ b/include/osdep_service_linux.h 2025-08-25 02:46:08.747420075 +0200 | |
| @@ -360,7 +360,7 @@ | |
| #endif | |
| { | |
| #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 14, 0)) | |
| - _timer *ptimer = from_timer(ptimer, in_timer, timer); | |
| + _timer *ptimer = timer_container_of(ptimer, in_timer, timer); | |
| #else | |
| _timer *ptimer = (_timer *)cntx; |
This file contains hidden or 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
| --- a/src/wl/sys/wl_linux.c | |
| +++ b/src/wl/sys/wl_linux.c | |
| @@ -2378,7 +2378,7 @@ | |
| ) { | |
| wl_timer_t *t = | |
| #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0) | |
| - from_timer(t, tl, timer); | |
| + timer_container_of(t, tl, timer); | |
| #else | |
| (wl_timer_t *)data; |
This file contains hidden or 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
| --- nvidia-legacy-340xx-340.108/nv-drm.c 2025-03-28 00:40:02.145469312 +0100 | |
| +++ b/nv-drm.c 2025-03-28 00:32:41.586697382 +0100 | |
| @@ -198,7 +198,10 @@ | |
| .name = "nvidia-drm", | |
| .desc = "NVIDIA DRM driver", | |
| +#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 14, 0) | |
| + // Rel. commit. "drm: remove driver date from struct drm_driver and all drivers" (Jani Nikula, 4 Dec 2024) | |
| .date = "20150116", | |
| +#endif |
This file contains hidden or 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
| From b9f21a6ff209edc220b2fc4ca610eb54595f218d Mon Sep 17 00:00:00 2001 | |
| From: Franz Eitzinger <[email protected]> | |
| Date: Mon, 2 Dec 2024 22:51:54 +0100 | |
| Subject: [PATCH] Adapt to Kernel 6.13.0 | |
| Pass net_device to .set_monitor_channel | |
| --- | |
| os_dep/linux/ioctl_cfg80211.c | 5 ++++- | |
| 1 file changed, 4 insertions(+), 1 deletion(-) |
This file contains hidden or 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
| --- broadcom-sta-6.30.223.271/src/wl/sys/wl_linux.c | |
| +++ b/src/wl/sys/wl_linux.c | |
| 59c59 | |
| < #include <asm/unaligned.h> | |
| --- | |
| > #include <linux/unaligned.h> |
This file contains hidden or 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
| --- nvidia-legacy-340xx-340.108/conftest.sh 2024-08-12 22:17:58.885145704 +0200 | |
| +++ b/conftest.sh 2024-08-12 22:20:26.971071281 +0200 | |
| @@ -197,7 +197,8 @@ | |
| build_cflags() { | |
| BASE_CFLAGS="-O2 -D__KERNEL__ \ | |
| -DKBUILD_BASENAME=\"#conftest$$\" -DKBUILD_MODNAME=\"#conftest$$\" \ | |
| --nostdinc -isystem $ISYSTEM" | |
| +-nostdinc -isystem $ISYSTEM \ | |
| +-Wno-implicit-function-declaration -Wno-strict-prototypes -Wno-incompatible-pointer-types" |
This file contains hidden or 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
| From: Juan Manuel Méndez Rey <[email protected]> | |
| Date: Mon, 04 June 2024 23:58:30 +0000 | |
| Subject: [PATCH] Tentative fix for rtl8192eu-1.0 DKMS source for Linux 6.9 | |
| --- a/os_dep/linux/ioctl_cfg80211.c 2024-06-04 22:53:56.300912246 +0200 | |
| +++ b/os_dep/linux/ioctl_cfg80211.c 2024-06-04 23:40:49.117002360 +0200 | |
| @@ -459,10 +459,10 @@ | |
| ,0 | |
| #endif | |
| ,0 |
This file contains hidden or 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
| From: Juan Manuel Méndez Rey <[email protected]> | |
| Date: Mon, 18 Sep 2023 22:18:30 +0000 | |
| Subject: [PATCH] Tentative fix for NVIDIA 340.108 DKMS source for Linux 6.5 | |
| --- nvidia-legacy-340xx-340.108/nv-linux.h 2019-12-11 23:04:24.000000000 +0100 | |
| +++ b/nv-linux.h 2023-09-18 21:41:04.512972716 +0200 | |
| @@ -2093,7 +2093,24 @@ static inline NvU64 nv_node_end_pfn(int | |
| * | |
| */ | |
NewerOlder