Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add target kirkwood for Linksys E4200 v2 #389

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions patches/targets-kirkwood.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
--- a/package/gluon-core/luasrc/lib/gluon/upgrade/010-primary-mac
+++ b/package/gluon-core/luasrc/lib/gluon/upgrade/010-primary-mac
@@ -119,6 +119,9 @@ local primary_addrs = {
'openmesh,a42',
'openmesh,a62',
}},
+ {'kirkwood', 'generic', {
+ 'linksys,e4200-v2',
+ }},
{'mpc85xx', 'p1020', {
'aerohive,hiveap-330',
'ocedo,panda',
--- /dev/null
+++ b/targets/kirkwood-generic
@@ -0,0 +1,5 @@
+-- Linksys
+
+device('linksys-e4200-v2', 'linksys_e4200-v2', {
+ broken = true,
+})
--- a/targets/targets.mk
+++ b/targets/targets.mk
@@ -29,5 +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))
darkdragon-001 marked this conversation as resolved.
Show resolved Hide resolved
$(eval $(call GluonTarget,mvebu,cortexa9)) # BROKEN: No 11s support
endif
1 change: 1 addition & 0 deletions targets
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ bcm27xx-bcm2711
ipq40xx-generic
ipq40xx-mikrotik
ipq806x-generic
kirkwood-generic
lantiq-xrx200
lantiq-xway
mediatek-filogic
Expand Down