forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into donios
Signed-off-by: Rodrigo Bertoldo de Sousa Martins <[email protected]>
- Loading branch information
Showing
72 changed files
with
6,198 additions
and
305 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
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
32 changes: 32 additions & 0 deletions
32
...nel/mac80211/patches/build/110-backport-include-fix-linux-acpi_amd_wbrf.h-inclusion.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,32 @@ | ||
From: Felix Fietkau <[email protected]> | ||
Date: Tue, 14 Jan 2025 11:42:25 +0100 | ||
Subject: [PATCH] backport-include: fix linux/acpi_amd_wbrf.h inclusion | ||
|
||
Fix building for kernel >= 6.8 by adjusting incorrect guard usage, | ||
otherwise an #include_next header is masked and compilation will fail | ||
for net/mac80211/wbrf.c in the mac80211 kernel module. | ||
|
||
Fixes: 52cdcaab ("backport-include: backport linux/acpi_amd_wbrf.h") | ||
Reported-by: Tony Ambardar <[email protected]> | ||
Signed-off-by: Felix Fietkau <[email protected]> | ||
--- | ||
|
||
--- a/backport-include/linux/acpi_amd_wbrf.h | ||
+++ b/backport-include/linux/acpi_amd_wbrf.h | ||
@@ -4,8 +4,8 @@ | ||
* Copyright (C) 2023 Advanced Micro Devices | ||
*/ | ||
|
||
-#ifndef _ACPI_AMD_WBRF_H | ||
-#define _ACPI_AMD_WBRF_H | ||
+#ifndef __BACKPORT_ACPI_AMD_WBRF_H | ||
+#define __BACKPORT_ACPI_AMD_WBRF_H | ||
|
||
#if LINUX_VERSION_IS_GEQ(6,8,0) | ||
#include_next <linux/acpi_amd_wbrf.h> | ||
@@ -83,4 +83,4 @@ int amd_wbrf_unregister_notifier(struct | ||
} | ||
|
||
#endif /* >=6,8,0 */ | ||
-#endif /* _ACPI_AMD_WBRF_H */ | ||
+#endif /* __BACKPORT_ACPI_AMD_WBRF_H */ |
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 |
---|---|---|
|
@@ -8,9 +8,9 @@ PKG_LICENSE_FILES:= | |
|
||
PKG_SOURCE_URL:=https://github.com/openwrt/mt76 | ||
PKG_SOURCE_PROTO:=git | ||
PKG_SOURCE_DATE:=2025-01-04 | ||
PKG_SOURCE_VERSION:=e354436db4402552bcb0cbe9abab2a46fb1ad31c | ||
PKG_MIRROR_HASH:=7e3894e1f2641e172f87be1ae0cc6adda318d989350ebd53500a7df02f0afd8f | ||
PKG_SOURCE_DATE:=2025-01-14 | ||
PKG_SOURCE_VERSION:=8e4f72b682e9070108536507c5e2720b18c3816d | ||
PKG_MIRROR_HASH:=fa8c5a2ece9e7287605910d9f906b601711c7863613addaadd666f9e3858a9e7 | ||
|
||
PKG_MAINTAINER:=Felix Fietkau <[email protected]> | ||
PKG_USE_NINJA:=0 | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=lldpd | ||
PKG_VERSION:=1.0.17 | ||
PKG_RELEASE:=5 | ||
PKG_VERSION:=1.0.18 | ||
PKG_RELEASE:=2 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||
PKG_SOURCE_URL:=https://github.com/lldpd/lldpd/releases/download/$(PKG_VERSION)/ | ||
PKG_HASH:=89ae691a4917ac9e0ec3b8b2c1e634cc402d43b804f98850c73bd1c7df380882 | ||
PKG_HASH:=38cd319aa02ab61d9a2ad130e22f906795ccca9ac73a0a0d9dac19ca99a8a870 | ||
|
||
PKG_MAINTAINER:=Stijn Tintel <[email protected]> | ||
PKG_LICENSE:=ISC | ||
|
@@ -90,6 +90,8 @@ endif | |
ifneq ($(CONFIG_LLDPD_WITH_LLDPMED),y) | ||
sed -i -e 's/CONFIG_LLDPD_WITH_LLDPMED=y/CONFIG_LLDPD_WITH_LLDPMED=n/g' $(1)/etc/init.d/lldpd | ||
sed -i -e '/agentxsocket/d' $(1)/etc/config/lldpd | ||
sed -i -e '/lldp_class/d' $(1)/etc/config/lldpd | ||
sed -i -e '/lldp_location/d' $(1)/etc/config/lldpd | ||
endif | ||
endef | ||
|
||
|
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
Oops, something went wrong.