mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
8391781389
Add linux 5.10 as testing kernel, copy generic/subtarget configs and target patches from 5.4. Signed-off-by: Tony Ambardar <itugrok@yahoo.com> x86: update target patches for kernel 5.10 Refresh all patches while also dropping: 800-hwmon-w83627ehf-dont-claim-nct677x.patch which is now upstreamed as: 3207408ab4cb ("hwmon: (w83627ehf) remove nct6775 and nct6776 support") Signed-off-by: Tony Ambardar <itugrok@yahoo.com> x86: refresh 5.10 target config Refresh config using "make kernel_oldconfig". Signed-off-by: Tony Ambardar <itugrok@yahoo.com> x86: refresh and test all subtarget configs Refresh configs using "make kernel_oldconfig CONFIG_TARGET=subtarget". Build and run-tested using QEMU: x86/64, x86/legacy, x86/generic. Build-tested only: x86/geode. Signed-off-by: Tony Ambardar <itugrok@yahoo.com> [squashed commits] Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
51 lines
1.4 KiB
Diff
51 lines
1.4 KiB
Diff
From 3d00da1de3ea36ba44f4a7ba76c8c8b16f98204b Mon Sep 17 00:00:00 2001
|
|
From: "Enrico Weigelt, metux IT consult" <info@metux.net>
|
|
Date: Thu, 12 Dec 2019 14:27:56 +0100
|
|
Subject: [PATCH] platform/x86: pcengines-apuv2: detect apuv4 board
|
|
|
|
GPIO stuff on APUv4 seems to be the same as on APUv2, so we just
|
|
need to match on DMI data.
|
|
|
|
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
|
|
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
|
|
---
|
|
drivers/platform/x86/pcengines-apuv2.c | 27 ++++++++++++++++++++++++++
|
|
1 file changed, 27 insertions(+)
|
|
|
|
--- a/drivers/platform/x86/pcengines-apuv2.c
|
|
+++ b/drivers/platform/x86/pcengines-apuv2.c
|
|
@@ -213,6 +213,33 @@ static const struct dmi_system_id apu_gp
|
|
},
|
|
.driver_data = (void *)&board_apu2,
|
|
},
|
|
+ /* APU4 w/ legacy bios < 4.0.8 */
|
|
+ {
|
|
+ .ident = "apu4",
|
|
+ .matches = {
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
|
|
+ DMI_MATCH(DMI_BOARD_NAME, "APU4")
|
|
+ },
|
|
+ .driver_data = (void *)&board_apu2,
|
|
+ },
|
|
+ /* APU4 w/ legacy bios >= 4.0.8 */
|
|
+ {
|
|
+ .ident = "apu4",
|
|
+ .matches = {
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
|
|
+ DMI_MATCH(DMI_BOARD_NAME, "apu4")
|
|
+ },
|
|
+ .driver_data = (void *)&board_apu2,
|
|
+ },
|
|
+ /* APU4 w/ mainline bios */
|
|
+ {
|
|
+ .ident = "apu4",
|
|
+ .matches = {
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
|
|
+ DMI_MATCH(DMI_BOARD_NAME, "PC Engines apu4")
|
|
+ },
|
|
+ .driver_data = (void *)&board_apu2,
|
|
+ },
|
|
{}
|
|
};
|
|
|