[openwrt/openwrt] mac80211: fix unaligned.h header location for 6.12 kernel

LEDE Commits lede-commits at lists.infradead.org
Sat May 3 11:27:27 PDT 2025


hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/9aea4c9280931d03464b7543cae8d727f4b1e037

commit 9aea4c9280931d03464b7543cae8d727f4b1e037
Author: Shiji Yang <yangshiji66 at outlook.com>
AuthorDate: Mon Apr 28 22:15:51 2025 +0800

    mac80211: fix unaligned.h header location for 6.12 kernel
    
    Fix mt76 build error on 6.12 kernel:
    
    In file included from /workspaces/openwrt/build_dir/target-x86_64_musl/linux-x86_64/mt76-2025.04.11~be28ef77/mt76x0/eeprom.c:13:
    /workspaces/openwrt/staging_dir/target-x86_64_musl/usr/include/mac80211-backport/asm/unaligned.h:3:15: fatal error: asm/unaligned.h: No such file or directory
        3 | #include_next <asm/unaligned.h>
          |               ^~~~~~~~~~~~~~~~~
    
    Signed-off-by: Shiji Yang <yangshiji66 at outlook.com>
    Link: https://github.com/openwrt/openwrt/pull/18637
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 ...-backport-fix-unaligned.h-header-location.patch | 26 ++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/package/kernel/mac80211/patches/build/120-backport-fix-unaligned.h-header-location.patch b/package/kernel/mac80211/patches/build/120-backport-fix-unaligned.h-header-location.patch
new file mode 100644
index 0000000000..1fe6ab25fc
--- /dev/null
+++ b/package/kernel/mac80211/patches/build/120-backport-fix-unaligned.h-header-location.patch
@@ -0,0 +1,26 @@
+From: Shiji Yang <yangshiji66 at outlook.com>
+Date: Mon, 28 Apr 2025 22:03:18 +0800
+Subject: [PATCH] backport: fix unaligned.h header location
+
+unaligned.h was moved from include/asm-generic/ to include/linux/
+in 6.12-rc2 kernel.
+
+Link: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-6.12.y&id=5f60d5f6bbc12e782fac78110b0ee62698f3b576
+Signed-off-by: Shiji Yang <yangshiji66 at outlook.com>
+---
+ backport-include/asm/unaligned.h | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+--- a/backport-include/asm/unaligned.h
++++ b/backport-include/asm/unaligned.h
+@@ -1,6 +1,10 @@
+ #ifndef __BACKPORT_ASM_GENERIC_UNALIGNED_H
+ #define __BACKPORT_ASM_GENERIC_UNALIGNED_H
++#if LINUX_VERSION_IS_GEQ(6,12,0)
++#include_next <linux/unaligned.h>
++#else
+ #include_next <asm/unaligned.h>
++#endif
+ 
+ #if LINUX_VERSION_IS_LESS(5,7,0)
+ static inline u32 __get_unaligned_be24(const u8 *p)




More information about the lede-commits mailing list