From b03393b26325da6b9bc890971547b6025e75bea8 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 10 Oct 2024 16:57:24 +0200 Subject: [PATCH 1/2] kirkwood-generic: update reason for BROKEN The Linksys E4200 v2 uses mwl8k wifi, which does not support 11s. --- targets/kirkwood-generic | 2 +- targets/targets.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/kirkwood-generic b/targets/kirkwood-generic index 0c61da015f..0078fc89e5 100644 --- a/targets/kirkwood-generic +++ b/targets/kirkwood-generic @@ -1,5 +1,5 @@ -- Linksys device('linksys-e4200-v2-viper', 'linksys_e4200-v2', { - broken = true, -- 802.11s untested + broken = true, -- no 802.11s support }) diff --git a/targets/targets.mk b/targets/targets.mk index 20224a0637..45a9f395f6 100644 --- a/targets/targets.mk +++ b/targets/targets.mk @@ -29,6 +29,6 @@ $(eval $(call GluonTarget,x86,64)) ifeq ($(BROKEN),1) $(eval $(call GluonTarget,bcm27xx,bcm2710)) # BROKEN: Untested $(eval $(call GluonTarget,bcm27xx,bcm2711)) # BROKEN: No 11s support, no reset button, sys LED issues -$(eval $(call GluonTarget,kirkwood,generic)) # BROKEN: 11s support untested +$(eval $(call GluonTarget,kirkwood,generic)) # BROKEN: No devices with 11s support $(eval $(call GluonTarget,mvebu,cortexa9)) # BROKEN: No 11s support endif From 5ed07dc7e689e1459c697a5891d2f872af1aaa8b Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 10 Oct 2024 19:06:46 +0200 Subject: [PATCH 2/2] kirkwood-generic: add Linksys EA4500 The hardware is identical to the E4200 v2, so no 11s support. Added to have more devices for testing the ARMv5 ISA. Signed-off-by: Matthias Schiffer --- package/gluon-core/luasrc/lib/gluon/upgrade/010-primary-mac | 1 + targets/kirkwood-generic | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/package/gluon-core/luasrc/lib/gluon/upgrade/010-primary-mac b/package/gluon-core/luasrc/lib/gluon/upgrade/010-primary-mac index cb481d9459..aaa613a233 100755 --- a/package/gluon-core/luasrc/lib/gluon/upgrade/010-primary-mac +++ b/package/gluon-core/luasrc/lib/gluon/upgrade/010-primary-mac @@ -122,6 +122,7 @@ local primary_addrs = { }}, {'kirkwood', 'generic', { 'linksys,e4200-v2', + 'linksys,ea4500', }}, {'mpc85xx', 'p1020', { 'aerohive,hiveap-330', diff --git a/targets/kirkwood-generic b/targets/kirkwood-generic index 0078fc89e5..dfa57d9387 100644 --- a/targets/kirkwood-generic +++ b/targets/kirkwood-generic @@ -3,3 +3,7 @@ device('linksys-e4200-v2-viper', 'linksys_e4200-v2', { broken = true, -- no 802.11s support }) + +device('linksys-ea4500-viper', 'linksys_ea4500', { + broken = true, -- no 802.11s support +})