Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3ce43329f5 
							
						 
					 
					
						
						
							
							build: remove now-unneeded function from target_config_lib.lua  
						
						... 
						
						
						
						target_config.lua and target_config_check.lua don't pass a table of
callbacks anymore, so target_config_lib.lua can by simplified by moving
all the code that was in the returned function to the toplevel. 
						
					 
					
						2020-05-31 02:20:58 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9e23534ec3 
							
						 
					 
					
						
						
							
							build: rework config generation  
						
						... 
						
						
						
						So far, we were using a sort operation on the generated .config to
implement precedence of =y packages over =m, and =m over unset.
Unfortunately, this sort not only used for packages, but for all config
lines. This made it impossible to override settings from targets/generic
in a target config when the new setting was sorted before the generic
setting.
To fix this, track configurations by their keys, so we can properly
override config keys that were set before. Value-based precedence is
only preserved for package configuration.
The config() and try_config() calls always take key and value as
separate arguments now. Strings are quoted automatically; the values
true, nil and false map to y, m and unset for tristate options. config()
can take an optional third argument to override the error message to
display when the setting fails to apply.
All existing target configs generate the same .config with the old and the
new code. The new code is also a bit faster on targets with many devices. 
						
					 
					
						2020-05-31 02:20:58 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
						
						
							
						
						
							7e8af99cf5 
							
						 
					 
					
						
						
							
							generic: reduce squashfs block size to 256KiB  
						
						... 
						
						
						
						In OpenWrt 19.07, the block size was increased to 1024KiB for "tiny"
devices by default to save flash. Unfortunately, this also significantly
increases the cache memory required by squashfs.
In my test, the increased block size reduced the image size by ~64KiB,
but increased the RAM usage by ~2.6MiB. As most tiny devices have only
32MiB of RAM, this is not a reasonable tradeoff.
The ar71xx-generic target already defines an even lower block size of
64KiB. 
						
					 
					
						2020-05-28 19:40:29 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
						
						
							
						
						
							1cb97ad63e 
							
						 
					 
					
						
						
							
							generic: remove kmod-ipt-offload  
						
						... 
						
						
						
						This is unused by Gluon. 
						
					 
					
						2020-05-28 19:40:29 +02:00 
						 
				 
			
				
					
						
							
							
								Vieno Hakkerinen 
							
						 
					 
					
						
						
						
						
							
						
						
							87aecd5ab5 
							
						 
					 
					
						
						
							
							targets: add x86-legacy subtarget  
						
						... 
						
						
						
						As x86-generic is compiled to pentium4 (and newer) there is a need for
a subtarget for older devices. The x86-legacy subtarget is set to
compile to pentium (and newer) and should support even very old devics.
x86-legacy includes the packages from x86.inc to only maintain one
package list. The three excludes are because the packages do not exist
for x86-legacy. 
						
					 
					
						2020-05-16 23:58:46 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
						
						
							
						
						
							ab6596115a 
							
						 
					 
					
						
						
							
							build: introduce GLUON_AUTOREMOVE flag  
						
						
						
					 
					
						2020-05-13 15:48:06 +02:00 
						 
				 
			
				
					
						
							
							
								lemoer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							57516fe4e7 
							
						 
					 
					
						
						
							
							Add GLUON_MINIFY flag to allow skipping the minification process ( #1916 )  
						
						
						
					 
					
						2020-05-13 00:45:06 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c90b400ce5 
							
						 
					 
					
						
						
							
							Merge pull request  #2008  from ctr49/master  
						
						... 
						
						
						
						add hardware: Linksys EA6350 v3 
						
					 
					
						2020-05-08 19:15:39 +02:00 
						 
				 
			
				
					
						
							
							
								ctr49 
							
						 
					 
					
						
						
						
						
							
						
						
							07d9db9add 
							
						 
					 
					
						
						
							
							add hardware: Linksys EA6500 v3  
						
						
						
					 
					
						2020-05-03 23:05:39 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							53690d83be 
							
						 
					 
					
						
						
							
							build: move package list generation to target_config_lib.lua, fix precedence  
						
						... 
						
						
						
						The precedence of different package lists was broken since #1876 ,
disallowing removal of GLUON_FEATURES packages via GLUON_SITE_PACKAGES.
Including all package selections, both implicit defaults and explicit
handling in Gluon, the order of precedence is now the following:
1.  OpenWrt defaults (including target-specific defaults)
2.  Device-specific packages from OpenWrt
3.  Generic default packages (from target/generic)
4.  Target default packages (target/$(GLUON_TARGET))
5.  Removal of opkg for tiny targets
6.  Packages derived from GLUON_FEATURES + GLUON_FEATURES_$(class)
7.  GLUON_SITE_PACKAGES
8.  GLUON_SITE_PACKAGES_$(class)
9.  Device-specific packages from target/$(GLUON_TARGET)
10. Device-specific packages from GLUON_$(device)_SITE_PACKAGES
This also contains various pieces of cleanup:
- No hardcoded order of device classes for target_config.lua arguments
  anymore (in fact, the Makefile doesn't know anything about device
  classes now)
- target_conifg_lib.lua only hardcodes the fallback class for x86, no
  other occurences of specific class names
- Feature -> package list mapping is moved from Makefile to the Lua code
  as well (still implemented in Shell though) 
						
					 
					
						2020-05-03 22:05:20 +02:00 
						 
				 
			
				
					
						
							
							
								André Fiedler 
							
						 
					 
					
						
						
						
						
							
						
						
							954b7af72b 
							
						 
					 
					
						
						
							
							ath79-generic: add support for TP-Link CPE220 v3  
						
						
						
					 
					
						2020-04-27 16:42:10 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							5231fb0178 
							
						 
					 
					
						
						
							
							lantiq-xway: remove support for AVM FRITZ!Box 7320 7330 7330SL  
						
						... 
						
						
						
						This device has broken Ethernet on both ports.
Remove support for those devices. for now, as there was no feedback from
the original author.
Closes  #1943  
						
					 
					
						2020-04-26 18:02:46 +02:00 
						 
				 
			
				
					
						
							
							
								aiyion.prime 
							
						 
					 
					
						
						
						
						
							
						
						
							0f3f4bc897 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for Cudy WR1000  
						
						... 
						
						
						
						v2 is available on the market, but apparently has no upstream support, yet:
https://forum.openwrt.org/t/v2-of-cudy-wr1000/56965  
						
					 
					
						2020-04-25 17:25:32 +02:00 
						 
				 
			
				
					
						
							
							
								Jan Alexander 
							
						 
					 
					
						
						
						
						
							
						
						
							17b49e20ee 
							
						 
					 
					
						
						
							
							ath79-generic: add support for GL.iNet GL-AR750S  
						
						
						
					 
					
						2020-04-09 20:29:24 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							95b133d4fd 
							
						 
					 
					
						
						
							
							x86-geode: add target class  
						
						... 
						
						
						
						x86-geode does not include the common x86 target-settings. Thus we need
to specify the device class in order to build images with all necessary
packages included. 
						
					 
					
						2020-04-06 21:36:28 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							c9f90c3ef8 
							
						 
					 
					
						
						
							
							build: add class-packages for targets without devices  
						
						... 
						
						
						
						When adding device classes, targets without devices such as x86 were not
handled. As site and feature packages are included on such a per-device
decision, x86 images ended up without most packages.
Include a class setting for a target and include the class-packages
target-wide when this setting is configured.
Fixes 9c52365077 
						
					 
					
						2020-03-27 23:35:24 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							7fd7116e2a 
							
						 
					 
					
						
						
							
							targets: add device-class flags  
						
						... 
						
						
						
						This commit assigns class-flags to devices. The following scheme is
used:
 - ath9k & ath10k: tiny if RAM <128M
 - ath10k & ath10k: tiny if RAM <256M
 - all: tiny if RAM <64M
 - all: tiny if flash <8M
All other devices automatically have the default device-class selected. 
						
					 
					
						2020-03-25 02:05:18 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3d5a693026 
							
						 
					 
					
						
						
							
							x86: add common wireless packages ( #1947 )  
						
						
						
					 
					
						2020-03-23 19:00:28 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d7e724ada9 
							
						 
					 
					
						
						
							
							target_lib: replace envtrue with more intuitive istrue helper  
						
						... 
						
						
						
						Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> 
						
					 
					
						2020-03-14 16:51:43 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							d8b944ea95 
							
						 
					 
					
						
						
							
							lantiq-xway: add support for NETGEAR DGN3500B  
						
						
						
					 
					
						2020-03-14 16:25:51 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							43995c4624 
							
						 
					 
					
						
						
							
							codestyle: replace leading spaces with tabs in target files ( #1954 )  
						
						
						
					 
					
						2020-03-09 22:19:07 +01:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							694b6e493d 
							
						 
					 
					
						
						
							
							lantiq-xrx200: disable factory image for tl-w{8970,8980}  
						
						... 
						
						
						
						There is no factory image, they are flashed using the sysupgrade image. 
						
					 
					
						2020-03-09 15:32:00 +01:00 
						 
				 
			
				
					
						
							
							
								David Lutz 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7ffc59d152 
							
						 
					 
					
						
						
							
							lantiq-xrx200: add support for TP-Link TD-W8970, TD-W8980, TD-W9980 ( #1867 )  
						
						
						
					 
					
						2020-03-09 04:15:21 +01:00 
						 
				 
			
				
					
						
							
							
								Jan Alexander 
							
						 
					 
					
						
						
						
						
							
						
						
							5591d3e745 
							
						 
					 
					
						
						
							
							ipq40xx-generic: add support for EnGenius ENS620EXT  
						
						
						
					 
					
						2020-03-09 02:15:50 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0af45b70f9 
							
						 
					 
					
						
						
							
							brcm2708: update image names and manifest aliases for new libplatforminfo  
						
						
						
					 
					
						2020-02-04 23:59:16 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f0e5c5c3c5 
							
						 
					 
					
						
						
							
							Merge branch 'patch-1' of  https://github.com/Dark4MD/gluon  
						
						
						
					 
					
						2020-02-04 23:54:08 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							af21f912b2 
							
						 
					 
					
						
						
							
							generic: fix GLUON_DEBUG on targets without configurable rootfs size  
						
						... 
						
						
						
						Fixes: c3435607e1 
						
					 
					
						2020-02-04 02:04:36 +01:00 
						 
				 
			
				
					
						
							
							
								Manu.WTF 
							
						 
					 
					
						
						
						
						
							
						
						
							40ec997641 
							
						 
					 
					
						
						
							
							brcm2708-bcm2710: add manifest_alias for raspberry-pi-3-model-b-rev-1.2  
						
						
						
					 
					
						2020-02-03 00:14:22 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							390884819c 
							
						 
					 
					
						
						
							
							docs: rename vendor to GL.iNet for uniformity  
						
						
						
					 
					
						2020-02-02 01:12:46 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							0e832c175c 
							
						 
					 
					
						
						
							
							ath79-generic: add support for GL.iNet GL-AR300M-Lite  
						
						
						
					 
					
						2020-02-02 01:12:46 +01:00 
						 
				 
			
				
					
						
							
							
								Jan Alexander 
							
						 
					 
					
						
						
						
						
							
						
						
							9741fb316d 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for TP-Link TL-MR3020 v3  
						
						
						
					 
					
						2020-01-31 22:52:32 +01:00 
						 
				 
			
				
					
						
							
							
								Nudelsalat 
							
						 
					 
					
						
						
						
						
							
						
						
							b01327b5d6 
							
						 
					 
					
						
						
							
							ramips-mt7621: add support for Netgear EX6150  
						
						
						
					 
					
						2020-01-26 22:54:34 +01:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							79ca7a7baa 
							
						 
					 
					
						
						
							
							ramips-mt7620: add support for tp-link archer c20 v1 ( #1866 )  
						
						... 
						
						
						
						Specification:
- MediaTek MT7620A (580 Mhz)
- 64 MB of RAM
- 8 MB of FLASH
- 2T2R 2.4 GHz and 1T1R 5 GHz
- 5x 10/100 Mbps Ethernet
- 2x external, non-detachable antennas
- UART (J1) header on PCB (115200 8n1)
- 8x LED (GPIO-controlled*), 2x button, power input switch
- 1 x USB 2.0 port 
						
					 
					
						2020-01-20 23:26:04 +01:00 
						 
				 
			
				
					
						
							
							
								Jan Alexander 
							
						 
					 
					
						
						
						
						
							
						
						
							c30a022e94 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for TP-Link TL-WA801ND v5  
						
						
						
					 
					
						2020-01-18 11:15:17 +01:00 
						 
				 
			
				
					
						
							
							
								Dark4MD 
							
						 
					 
					
						
						
						
						
							
						
						
							fbb59cfd60 
							
						 
					 
					
						
						
							
							ramips-mt7620: add support for TP-Link Archer C20i  
						
						
						
					 
					
						2020-01-10 02:37:54 +01:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							c1ed710964 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for TP-Link TL-WR902AC v3  
						
						... 
						
						
						
						TP-Link TL-WR902AC v3 is a pocket-size dual-band (AC750) router
based on MediaTek MT7628N + MT7650E.
Specification:
- MediaTek MT7628N/N (580 Mhz)
- 64 MB of RAM
- 8 MB of FLASH
- 2T2R 2.4 GHz and 1T1R 5 GHz
- 1x 10/100 Mbps Ethernet 
						
					 
					
						2020-01-10 02:37:33 +01:00 
						 
				 
			
				
					
						
							
							
								Dark4MD 
							
						 
					 
					
						
						
						
						
							
						
						
							19e0f7959e 
							
						 
					 
					
						
						
							
							ramips-mt7620: add support for TP-Link Archer C50 v1  
						
						
						
					 
					
						2020-01-09 00:53:21 +01:00 
						 
				 
			
				
					
						
							
							
								Dark4MD 
							
						 
					 
					
						
						
						
						
							
						
						
							13f16ed737 
							
						 
					 
					
						
						
							
							ramips-mt7620: add support for TP-Link Archer C2 v1  
						
						
						
					 
					
						2020-01-08 19:12:34 +01:00 
						 
				 
			
				
					
						
							
							
								Dark4MD 
							
						 
					 
					
						
						
						
						
							
						
						
							0e1cc743d7 
							
						 
					 
					
						
						
							
							ramips-mt7620: remove broken flag for Xiaomi MiWifi Mini  
						
						... 
						
						
						
						WiFi driver is stable now. 
						
					 
					
						2020-01-06 00:03:16 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							c3435607e1 
							
						 
					 
					
						
						
							
							generic: increase RootFS size when GLUON_DEBUG is enabled  
						
						... 
						
						
						
						This increases the size of the root filesystem when GLUON_DEBUG is
enabled. Otherwise, the filesystem is too small.
Closes  #1907  
						
					 
					
						2020-01-05 19:14:09 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							72e99aa2ba 
							
						 
					 
					
						
						
							
							ipq40xx-generic: add alias for Aruba Instant On AP11  
						
						... 
						
						
						
						The Aruba Instant On AP11 is the Aruba AP-303 with a stripped-down
firmware. Add an alias for the device to remove confusion about the
different naming. 
						
					 
					
						2020-01-05 15:50:11 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							b6ec44d6af 
							
						 
					 
					
						
						
							
							targets: remove ath10k-ct-smallbuffers  
						
						... 
						
						
						
						Remove the ath10k-ct-smallbuffers variant from the default
package-seleciton as it clashes with the QCA ath10k driver. 
						
					 
					
						2020-01-05 00:21:29 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							8df207c103 
							
						 
					 
					
						
						
							
							ipq40xx-generic: add support for Aruba AP-303  
						
						
						
					 
					
						2020-01-04 01:43:10 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							d428e53457 
							
						 
					 
					
						
						
							
							mpc85xx-p1020: add support for Enterasys WS-AP3710i  
						
						
						
					 
					
						2019-12-23 01:54:23 +01:00 
						 
				 
			
				
					
						
							
							
								Dark4MD 
							
						 
					 
					
						
						
						
						
							
						
						
							fb191ab8e4 
							
						 
					 
					
						
						
							
							lantiq-xway: add support for AVM FRITZ!Box 7320, 7330 and 7330 SL  
						
						
						
					 
					
						2019-12-19 22:45:06 +01:00 
						 
				 
			
				
					
						
							
							
								Dark4MD 
							
						 
					 
					
						
						
						
						
							
						
						
							40ef70534d 
							
						 
					 
					
						
						
							
							lantiq-xrx200: add support for AVM FRITZ!Box 7360 (v1, v2) and 7360 SL  
						
						
						
					 
					
						2019-12-12 12:47:41 +01:00 
						 
				 
			
				
					
						
							
							
								Dark4MD 
							
						 
					 
					
						
						
						
						
							
						
						
							510bcd4ab4 
							
						 
					 
					
						
						
							
							lantiq-xrx200: add support for AVM FRITZ!Box 7362 SL  
						
						... 
						
						
						
						Flash instructions in the OpenWRT Commit: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=eae6cac6a30b95bef04d033ed8a303b7e35a078b  
						
					 
					
						2019-12-11 19:42:44 +01:00 
						 
				 
			
				
					
						
							
							
								Malte Möller 
							
						 
					 
					
						
						
						
						
							
						
						
							aa679bc6e9 
							
						 
					 
					
						
						
							
							ar71xx-generic: add alias for wndr3800chmychart  
						
						... 
						
						
						
						a regular Netgear WNDR3800
but identifies itself as wndr3800chmychart. 
						
					 
					
						2019-12-04 11:52:15 +01:00 
						 
				 
			
				
					
						
							
							
								Simon Terzenbach 
							
						 
					 
					
						
						
						
						
							
						
						
							bb2744f0d8 
							
						 
					 
					
						
						
							
							ath79-generic: add support for devolo WiFi pro 1200e  
						
						
						
					 
					
						2019-12-03 19:47:58 +01:00 
						 
				 
			
				
					
						
							
							
								Simon Terzenbach 
							
						 
					 
					
						
						
						
						
							
						
						
							bdfa4b71ff 
							
						 
					 
					
						
						
							
							ath79-generic: add support for devolo WiFi pro 1750e  
						
						
						
					 
					
						2019-12-03 19:47:39 +01:00 
						 
				 
			
				
					
						
							
							
								Simon Terzenbach 
							
						 
					 
					
						
						
						
						
							
						
						
							04421f60ac 
							
						 
					 
					
						
						
							
							ath79-generic: add support for devolo WiFi pro 1750x  
						
						
						
					 
					
						2019-11-26 11:57:31 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							4e3f1053da 
							
						 
					 
					
						
						
							
							ath79-generic: add support for devolo WiFi pro 1750c ( #1875 )  
						
						
						
					 
					
						2019-11-22 01:45:00 +01:00 
						 
				 
			
				
					
						
							
							
								Simon Terzenbach 
							
						 
					 
					
						
						
						
						
							
						
						
							ee917a7ea9 
							
						 
					 
					
						
						
							
							ath79-generic: add support for devolo WiFi pro 1750i  
						
						
						
					 
					
						2019-11-20 23:17:21 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							e30b0092bb 
							
						 
					 
					
						
						
							
							ath79-generic: add missing ath10k packages  
						
						... 
						
						
						
						The devolo WiFi pro 1200i lost it's ath10k package definitions while
rebasing, thus selecting the wrong package set.
Fix it by adding the correct firmware and driver. 
						
					 
					
						2019-11-20 16:21:28 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							3ca6abe7b1 
							
						 
					 
					
						
						
							
							ath79-generic: add support for OCEDO Raccoon ( #1869 )  
						
						
						
					 
					
						2019-11-20 13:46:18 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							fe41ba7121 
							
						 
					 
					
						
						
							
							ath79-generic: add support for devolo WiFi pro 1200i ( #1871 )  
						
						
						
					 
					
						2019-11-20 13:39:22 +01:00 
						 
				 
			
				
					
						
							
							
								Manu.WTF 
							
						 
					 
					
						
						
						
						
							
						
						
							62bd916b76 
							
						 
					 
					
						
						
							
							lantiq-xrx200: add support for AVM FRITZ!Box 7412 ( #1859 )  
						
						
						
					 
					
						2019-11-18 22:54:50 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							fd3fa7728a 
							
						 
					 
					
						
						
							
							ipq40xx: add support for AVM FritzRepeater 1200  
						
						
						
					 
					
						2019-11-18 22:23:16 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							8df38311fa 
							
						 
					 
					
						
						
							
							ramips-mt7621: add support for Netgear R6220  
						
						
						
					 
					
						2019-11-10 17:11:57 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							b8defb1c08 
							
						 
					 
					
						
						
							
							ath79-generic: limit line length  
						
						... 
						
						
						
						This limits the line-length for the ATH10K package
definitions.
Fixes f49813b5 
						
					 
					
						2019-11-09 12:13:22 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							f49813b52f 
							
						 
					 
					
						
						
							
							ath79-generic: remove unused package definitions  
						
						... 
						
						
						
						This removes the unused package definitions, as otherwise the Lua linter
will complain. 
						
					 
					
						2019-11-09 11:30:22 +01:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							50db7654fc 
							
						 
					 
					
						
						
							
							ath79-generic: add support for TP-Link Archer C6v2  
						
						... 
						
						
						
						Hardware specification:
- SOC: Qualcomm QCA9563 @ 775MHz
- Flash: GigaDevice GD25Q64CSIG (8MiB)
- RAM: Zentel A3R1GE40JBF (128 MiB DDR2)
- Ethernet: Qualcomm QCA8337N: 4x 1Gbps LAN + 1x 1Gbps WAN
- Wireless:
  - 2.4GHz (bgn) QCA9563 integrated (3x3)
  - 5GHz (ac) Qualcomm QCA9886 (2x2)
- Button: 1x power, 1x reset, 1x wps
- LED: 6x LEDs: power, wlan2g, wlan5g, lan, wan, wps
- UART: There's no UART header on the board 
						
					 
					
						2019-11-09 11:15:34 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							18dd76471c 
							
						 
					 
					
						
						
							
							ar71xx-generic: add dedicated UniFi AC LR image  
						
						... 
						
						
						
						As upstream now has model detection for the Ubiquiti UniFi AC LR, we
need to provide an autoupdater image matching the expected filename.
Closes  #1834  
						
					 
					
						2019-11-08 18:47:07 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
						
						
							
						
						
							ee0756a70b 
							
						 
					 
					
						
						
							
							x86: switch to non-CT ath10k module  
						
						... 
						
						
						
						It seems the CT variant was used for 11s meshing on x86 by accient. Switch
to non-CT to match the other targets. 
						
					 
					
						2019-11-07 19:48:16 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
						
						
							
						
						
							335fae1025 
							
						 
					 
					
						
						
							
							build: drop GLUON_WLAN_MESH variable  
						
						
						
					 
					
						2019-11-07 19:48:16 +01:00 
						 
				 
			
				
					
						
							
							
								Misanthropos 
							
						 
					 
					
						
						
						
						
							
						
						
							b4c75a9879 
							
						 
					 
					
						
						
							
							lantiq-xway: add support for AVM FRITZ!Box 7312  
						
						
						
					 
					
						2019-11-06 18:58:45 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							7f858b1c6d 
							
						 
					 
					
						
						
							
							ipq806x-generic: remove BROKEN flag for target and NETGEAR R7800  
						
						... 
						
						
						
						This commit removes the broken flag for the ipq806x-generic target,
as the first device (NETGEAR R7800) now has full support in Gluon 
						
					 
					
						2019-11-05 20:24:05 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							e3bdfeefa1 
							
						 
					 
					
						
						
							
							ipq806x: rename target to ipq806x-generic  
						
						... 
						
						
						
						This commit accounts for the target renaming which was done in upstream
commit 7407e723991 ("ipqx0xx: add Generic subtarget") 
						
					 
					
						2019-11-04 17:22:46 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							88e6bc5278 
							
						 
					 
					
						
						
							
							ipq40xx: rename target to ipq40xx-generic  
						
						... 
						
						
						
						This commit accounts for the target renaming which was done in upstream
commit 7407e723991 ("ipqx0xx: add Generic subtarget") 
						
					 
					
						2019-11-04 17:22:46 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							ab2efef7f9 
							
						 
					 
					
						
						
							
							mpc85xx-p1020: add support for OCEDO Panda ( #1847 )  
						
						
						
					 
					
						2019-11-03 18:59:00 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							9dba2ca580 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for GL.iNet VIXMINI  
						
						
						
					 
					
						2019-10-30 14:38:48 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							ac971f88e8 
							
						 
					 
					
						
						
							
							mvebu-cortexa9: rename Linksys WRT1200AC  
						
						
						
					 
					
						2019-10-30 00:06:14 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							825577f6df 
							
						 
					 
					
						
						
							
							ramips-mt7621: fix sysupgrade extension for ER-X  
						
						
						
					 
					
						2019-10-30 00:06:14 +01:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
						
						
							
						
						
							ba3415059c 
							
						 
					 
					
						
						
							
							ar71xx-generic: drop ALFA N2, N5, Tube2H and Hornet-UB  
						
						... 
						
						
						
						Their kernel partition is too small, the OpenWrt build system
is unable to create an image. 
						
					 
					
						2019-10-30 00:06:14 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							82cdd5f808 
							
						 
					 
					
						
						
							
							targets: adapt ath10k selection to OpenWrt 19.07  
						
						... 
						
						
						
						This changes the ath10k firmware and driver selection, as
ath10k-ct is now the default in upstream OpenWrt.
However, for 802.11s operation we need the QCA firmware and driver. 
						
					 
					
						2019-10-30 00:06:14 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							09780191cb 
							
						 
					 
					
						
						
							
							targets: remove wpad-basic by default  
						
						... 
						
						
						
						This is necessary, as wpad-basic conflicts with hostapd-mini. 
						
					 
					
						2019-10-30 00:06:14 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							3522197ff9 
							
						 
					 
					
						
						
							
							ar71xx-generic: add missing ath10k packages ( #1844 )  
						
						... 
						
						
						
						This adds previously absent ath10k packages definitions. This way,
devices correctly select CandelaTech firmware correctly, when
GLUON_WLAN_MESH is set to IBSS.
This is also necessary for all devices, when OpenWrt is switched to
19.07. 
						
					 
					
						2019-10-22 02:15:35 +02:00 
						 
				 
			
				
					
						
							
							
								Marssl78 
							
						 
					 
					
						
						
						
						
							
						
						
							b823b80356 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for TP-Link Archer C60 v2 ( #1840 )  
						
						
						
					 
					
						2019-10-06 22:11:02 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							94ca071e12 
							
						 
					 
					
						
						
							
							ar71xx-generic: fix device alias for Ubiquiti UniFi AC LR  
						
						... 
						
						
						
						fixes  #1834 
fixes  #1332  
					
						2019-10-03 21:22:12 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							ea24298f2d 
							
						 
					 
					
						
						
							
							ar71xx-generic: add ath10k packages to OCEDO Koala ( #1838 )  
						
						... 
						
						
						
						The OCEDO Koala was missing the correct package definition. Because of
this, firmware is potentially built with the wrong ath10k firmware /
driver. 
						
					 
					
						2019-10-03 01:44:20 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							07fe28c855 
							
						 
					 
					
						
						
							
							ar71xx-generic: add zram-swap to boards with 8M flash but only 32M memory ( #1819 )  
						
						
						
					 
					
						2019-09-23 09:54:54 +02:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
						
						
							
						
						
							be965e7e4a 
							
						 
					 
					
						
						
							
							ar71xx-generic: deprecate ALFA AP121, Hornet-UB, Tube2H, N2/N5  
						
						... 
						
						
						
						The kernel partition on these devices is too small for the
OpenWrt 19.07 kernel. It is also located after the rootfs, so
we cannot grow it further.
Therefore mark these devices as deprecated now. 
						
					 
					
						2019-09-20 17:02:41 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b113e0f517 
							
						 
					 
					
						
						
							
							ramips-rt305x: remove opkg and USB packages from 4M flash boards ( #1807 )  
						
						... 
						
						
						
						reduce size by removing dispensable packages,
to fix builds of this target in most cases. 
						
					 
					
						2019-09-14 13:24:37 +02:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
						
						
							
						
						
							61bd88309e 
							
						 
					 
					
						
						
							
							Revert "ar71xx-generic: unmark archer-c25-v1 as broken"  
						
						... 
						
						
						
						This reverts commit fb08e10494 
						
					 
					
						2019-08-18 19:32:43 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							35bde952e1 
							
						 
					 
					
						
						
							
							ramips-mt7621: add missing broken flg for ASUS RT-AC57U  
						
						
						
					 
					
						2019-08-15 15:53:04 +02:00 
						 
				 
			
				
					
						
							
							
								Simon Terzenbach 
							
						 
					 
					
						
						
						
						
							
						
						
							c124f6f410 
							
						 
					 
					
						
						
							
							mcp85xx-p1020: add support for Aerohive HiveAP 330  
						
						
						
					 
					
						2019-08-13 13:25:20 +02:00 
						 
				 
			
				
					
						
							
							
								Vincent Wiemann 
							
						 
					 
					
						
						
						
						
							
						
						
							0a22218304 
							
						 
					 
					
						
						
							
							ar71xx-generic: Fix packages for GL.iNet AR750 ( #1792 )  
						
						... 
						
						
						
						The profile for GL.iNet AR750 currently selects ATH10K_PACKAGES, but this device actually has a QCA9887 which needs another driver.
This commit fixes the issue by setting ATH10K_PACKAGES_QCA9887 instead. 
						
					 
					
						2019-08-10 10:17:29 +02:00 
						 
				 
			
				
					
						
							
							
								Simon Terzenbach 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c37644e004 
							
						 
					 
					
						
						
							
							ar71xx-nand: add support for Aerohive HiveAP 121  
						
						
						
					 
					
						2019-08-02 00:37:26 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							9abce01e87 
							
						 
					 
					
						
						
							
							ramips: add support for ASUS RT-AC57U ( #1786 )  
						
						
						
					 
					
						2019-07-13 14:32:22 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							350fe73fe5 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for TP-Link TL-MR3420 v5  
						
						
						
					 
					
						2019-07-08 14:29:00 +02:00 
						 
				 
			
				
					
						
							
							
								Adrian Schmutzler 
							
						 
					 
					
						
						
						
						
							
						
						
							851dfc6a93 
							
						 
					 
					
						
						
							
							ar71xx-generic: Add support for TP-Link CPE210 V3 ( #1696 )  
						
						... 
						
						
						
						Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> 
						
					 
					
						2019-06-29 14:49:54 +02:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fb08e10494 
							
						 
					 
					
						
						
							
							ar71xx-generic: unmark archer-c25-v1 as broken  
						
						... 
						
						
						
						memory usage seems to behave more reasonable for a while now 
						
					 
					
						2019-06-28 01:58:35 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							09a09d634a 
							
						 
					 
					
						
						
							
							scripts: avoid global variables in target handler scripts  
						
						
						
					 
					
						2019-06-18 01:34:45 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8e00149f11 
							
						 
					 
					
						
						
							
							targets: add deprecated flags as appropriate  
						
						
						
					 
					
						2019-06-15 23:34:07 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							071cf7b20f 
							
						 
					 
					
						
						
							
							Switch to Lua for target definitions  
						
						... 
						
						
						
						The old bash-based parsing code was way too complex. Replace it with Lua. 
						
					 
					
						2019-06-15 23:34:07 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a44a5dce02 
							
						 
					 
					
						
						
							
							ar71xx: Onion Omega is BROKEN  
						
						... 
						
						
						
						This device doesn't have an Ethernet port, and even with the Ethernet
shield, eth0 is not configured. 
						
					 
					
						2019-06-15 23:30:23 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0970dd3e01 
							
						 
					 
					
						
						
							
							targets: unset executable mode for target files  
						
						... 
						
						
						
						For some reason, some of the target files were executable. 
						
					 
					
						2019-06-12 14:15:25 +02:00 
						 
				 
			
				
					
						
							
							
								Petr Štetiar 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9dc1ac7f58 
							
						 
					 
					
						
						
							
							build: replace hardcoded paths with overridable variables  
						
						... 
						
						
						
						Signed-off-by: Petr Štetiar <ynezz@true.cz> 
						
					 
					
						2019-04-22 22:00:45 +02:00 
						 
				 
			
				
					
						
							
							
								Tata 
							
						 
					 
					
						
						
						
						
							
						
						
							12b87b2441 
							
						 
					 
					
						
						
							
							ipq40xx: add jalapeno from 8devices ( #1706 )  
						
						... 
						
						
						
						Signed-off-by: Jan-Tarek Butt <tarek@ring0.de> 
						
					 
					
						2019-04-19 15:15:00 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							134a6460a7 
							
						 
					 
					
						
						
							
							build: move hostapd-mini package from generic target to Makefile  
						
						... 
						
						
						
						By passing the package name through merge_packages, it becomes possible to
override the package choice in GLUON_SITE_PACKAGES again, for example:
	GLUON_SITE_PACKAGES += -hostapd-mini hostapd 
						
					 
					
						2019-04-19 13:53:09 +02:00 
						 
				 
			
				
					
						
							
							
								bobcanthelpyou 
							
						 
					 
					
						
						
						
						
							
						
						
							2ce07ae2fe 
							
						 
					 
					
						
						
							
							ar71xx: add support for TP-Link TL-WR840N v2 ( #1697 )  
						
						
						
					 
					
						2019-04-12 01:32:11 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							b5b2a2176b 
							
						 
					 
					
						
						
							
							ar71xx: remove redundancy from 2 target specifications  
						
						
						
					 
					
						2019-03-31 17:45:24 +02:00 
						 
				 
			
				
					
						
							
							
								Manu.WTF 
							
						 
					 
					
						
						
						
						
							
						
						
							3b0e5fab71 
							
						 
					 
					
						
						
							
							ramips-mt7620: add support for Xiaomi MiWifi Mini ( #1638 )  
						
						
						
					 
					
						2019-03-29 12:43:05 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							a9a4abb637 
							
						 
					 
					
						
						
							
							ipq806x: add support for NETGEAR R7800 ( #1669 )  
						
						... 
						
						
						
						The device is broken until the next release. The LEDs are currently not
working (fixed in current OpenWRT master).
Also give a brief explanation about the BROKEN status being dependent on
the WiFi chip used and not the SoC family in general. 
						
					 
					
						2019-03-28 14:49:17 +01:00 
						 
				 
			
				
					
						
							
							
								Manu.WTF 
							
						 
					 
					
						
						
						
						
							
						
						
							917d6af299 
							
						 
					 
					
						
						
							
							ar71xx: add support for D-Link DAP-1330 ( #1672 )  
						
						
						
					 
					
						2019-03-15 23:35:35 +01:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ce8cf1b900 
							
						 
					 
					
						
						
							
							ramips-mt76x8: fix image name for wr841n v13  
						
						
						
					 
					
						2019-03-14 04:58:19 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							5b97b07f6a 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for Netgear R6120 ( #1650 )  
						
						
						
					 
					
						2019-02-16 14:41:48 +01:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							7b092e1e13 
							
						 
					 
					
						
						
							
							ramips-mt7620: add support for ASUS RT-AC51U ( #1642 )  
						
						
						
					 
					
						2019-02-09 23:31:58 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							1ace3d5bb0 
							
						 
					 
					
						
						
							
							ramips-mt76x8: add support for TP-Link Archer C50 v4 ( #1641 )  
						
						... 
						
						
						
						This backports the TP-Link Archer C50 v4.
We are dropping the following upstream commits. They add support for the
TP-Link recovery-flag which enabled the web-recovery. As they are not
needed for the router to work, we drop them for now.
28cd2ca base-files: sysupgrade: support additional mtd options
1e06482 mtd: add logic for TP-Link ramips recovery magic 
						
					 
					
						2019-02-08 02:48:09 +01:00 
						 
				 
			
				
					
						
							
							
								oszilloskop 
							
						 
					 
					
						
						
						
						
							
						
						
							b9cf102f46 
							
						 
					 
					
						
						
							
							ar71xx: fix incorrect gl-ar150 and gl-ar300m image names ( #1640 )  
						
						... 
						
						
						
						also added manifest aliases for gl-ar150, gl-ar300m, gl-ar750 
						
					 
					
						2019-02-07 01:55:07 +01:00 
						 
				 
			
				
					
						
							
							
								txt-file 
							
						 
					 
					
						
						
						
						
							
						
						
							97485dcecf 
							
						 
					 
					
						
						
							
							target x86-*: change from ext4 to squashfs ( #1634 )  
						
						... 
						
						
						
						This allows for smaller firmware images and makes it possible to reset a
device via firstboot command.
Signed-off-by: Matthias Fritzsche <matthias@chemnitz.freifunk.net> 
						
					 
					
						2019-02-03 23:57:16 +01:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9342e31d45 
							
						 
					 
					
						
						
							
							brcm2708-bcm2708: add manifest alias for Raspberry Pi Model B Plus Rev 1.2  
						
						
						
					 
					
						2019-02-03 21:15:32 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Fritzsche 
							
						 
					 
					
						
						
						
						
							
						
						
							3abadc286f 
							
						 
					 
					
						
						
							
							ar71xx-mikrotik: remove kmod-ath5k package  
						
						... 
						
						
						
						ath5k supports only IEEE 802.11 a/b/g
Signed-off-by: Matthias Fritzsche <matthias@chemnitz.freifunk.net> 
						
					 
					
						2019-01-29 12:54:30 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Fritzsche 
							
						 
					 
					
						
						
						
						
							
						
						
							cecfe03839 
							
						 
					 
					
						
						
							
							ar71xx-mikrotik: add missing OpenWrt image types  
						
						... 
						
						
						
						Signed-off-by: Matthias Fritzsche <matthias@chemnitz.freifunk.net> 
						
					 
					
						2019-01-29 12:54:01 +01:00 
						 
				 
			
				
					
						
							
							
								Malte Moeller 
							
						 
					 
					
						
						
						
						
							
						
						
							692f61ec5a 
							
						 
					 
					
						
						
							
							change device identifier to match machine identifier  
						
						... 
						
						
						
						this matches the output of
lua -e 'print(require(platform_info).get_image_name())'
This way the manifest file is accepted by the autoupdater 
						
					 
					
						2019-01-18 23:33:05 +01:00 
						 
				 
			
				
					
						
							
							
								Manu.WTF 
							
						 
					 
					
						
						
						
						
							
						
						
							04cca280a1 
							
						 
					 
					
						
						
							
							ramips-mt7620: add support for Nexx WT3020 (8M)  
						
						
						
					 
					
						2019-01-17 22:42:10 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							55d2acd709 
							
						 
					 
					
						
						
							
							ramips-mt76x8: remove broken flag ( #1608 )  
						
						... 
						
						
						
						This commit removes the broken flag from all devices in the mt76x8
subtarget.
The stability of the mt76 driver for the mt7628 and mt7612 has greatly
improved in the last half-year. It might be still behind ath9k and
ath10k but it is suitable for daily use.
This affects the following devices:
 - GL.iNet MT300N v2
 - TP-Link Archer C50 v3
 - TP-Link TL-WR841 v13 
						
					 
					
						2018-12-29 23:32:02 +01:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
						
						
							
						
						
							656230a79f 
							
						 
					 
					
						
						
							
							ar71xx: add support for FRITZ!Repeater 300E ( #1604 )  
						
						... 
						
						
						
						Signed-off-by: Martin Weinelt <martin@darmstadt.freifunk.net> 
						
					 
					
						2018-12-29 22:51:57 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a6bce7959d 
							
						 
					 
					
						
						
							
							ramips-mt76x8: remove VoCore 2 BROKEN flag again  
						
						... 
						
						
						
						The driver has stablized enough to officially support ramips-mt76x8 devices
again. At least remove BROKEN for VoCore 2 (as it was supported before). 
						
					 
					
						2018-12-29 19:31:51 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							5746fb08c4 
							
						 
					 
					
						
						
							
							ramips-mt7621: remove BROKEN flag for ZBT WG3526-16M & WG3526-32M  
						
						
						
					 
					
						2018-12-28 21:15:29 +01:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e9c6153cd5 
							
						 
					 
					
						
						
							
							ramips-mt7621: unflag dir860l-b1 as broken with 11s mesh  
						
						... 
						
						
						
						Signed-off-by: Martin Weinelt <martin@darmstadt.freifunk.net> 
						
					 
					
						2018-12-23 02:49:17 +01:00 
						 
				 
			
				
					
						
							
							
								Christoph Krapp 
							
						 
					 
					
						
						
						
						
							
						
						
							b5aa8c2f7c 
							
						 
					 
					
						
						
							
							ar71xx: add support for ZyXEL NBG6616  
						
						... 
						
						
						
						Signed-off-by: Christoph Krapp <achterin@googlemail.com> 
						
					 
					
						2018-12-20 14:12:50 +01:00 
						 
				 
			
				
					
						
							
							
								Christoph Krapp 
							
						 
					 
					
						
						
						
						
							
						
						
							1c590ca148 
							
						 
					 
					
						
						
							
							ar71xx: add support for UniFi-AC-Mesh-Pro  
						
						... 
						
						
						
						Signed-off-by: Christoph Krapp <achterin@googlemail.com> 
						
					 
					
						2018-12-09 20:41:56 +01:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
						
						
							
						
						
							3601c9aba6 
							
						 
					 
					
						
						
							
							mt76x8: add support for GL.iNet GL-MT300N-V2 ( #1548 )  
						
						... 
						
						
						
						Signed-off-by: Martin Weinelt <martin@darmstadt.freifunk.net> 
						
					 
					
						2018-11-14 23:35:02 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							a51ec56363 
							
						 
					 
					
						
						
							
							ipq40xx: add support for ZyXEL NBG6617 ( #1560 )  
						
						
						
					 
					
						2018-11-14 23:02:25 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							c1967fe383 
							
						 
					 
					
						
						
							
							ar71xx: remove BROKEN flag for TL-WR810N v1  
						
						... 
						
						
						
						Fixes  #856  
					
						2018-10-24 23:44:01 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							665cc49d67 
							
						 
					 
					
						
						
							
							ar71xx: add support for Archer C7 v5  
						
						
						
					 
					
						2018-10-15 00:38:18 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							246a617d71 
							
						 
					 
					
						
						
							
							ar71xx: add support for TL-WR902AC v1 ( #1546 )  
						
						... 
						
						
						
						This adds support for the TP-Link TL-WR902Ac v1 travel router.
The device is marked as broken due to 64MB which might be insufficient
in certain environments. 
						
					 
					
						2018-10-11 03:21:51 +02:00 
						 
				 
			
				
					
						
							
							
								Ruben Barkow 
							
						 
					 
					
						
						
						
						
							
						
						
							2a077f86cf 
							
						 
					 
					
						
						
							
							ar71xx: unify position of comment containing BROKEN flag reason ( #1545 )  
						
						
						
					 
					
						2018-10-02 01:03:55 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1e61e8e897 
							
						 
					 
					
						
						
							
							Disable build of kmod-jool again  
						
						... 
						
						
						
						kmod-jool build is broken with current kernel 4.14.y. 
						
					 
					
						2018-09-30 19:09:23 +02:00 
						 
				 
			
				
					
						
							
							
								Sven Eckelmann 
							
						 
					 
					
						
						
						
						
							
						
						
							2b208647f7 
							
						 
					 
					
						
						
							
							ar71xx-generic: Reduce SquashFS blocksize to 64K ( #1455 )  
						
						... 
						
						
						
						Some 32 MB devices like the Nanostation M2 suffer from sudden high loads
combined with a squashfs related OOM reboot:
  logd invoked oom-killer: gfp_mask=0x2420848, order=0, oom_score_adj=0
  CPU: 0 PID: 774 Comm: logd Not tainted 4.4.135 #0 
  Stack : 804214dc 00000000 00000001 80480000 8182fa3c 80474803 804028d0 00000306
          804e378c 00001ade 00000040 00000000 00000000 800a7f10 00000006 00000000
          00000000 00000000 804063e0 80c69994 804e6542 800a5e8c 02420848 00000000
          00000001 801fd600 00000000 00000000 00000000 00000000 00000000 00000000
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
  Call Trace:
  [<800721cc>] show_stack+0x54/0x88
  [<800d5468>] dump_header.isra.4+0x48/0x130
  [<800d5c38>] check_panic_on_oom+0x48/0x84
  [<800d5d64>] out_of_memory+0xf0/0x324
  [<800d9888>] __alloc_pages_nodemask+0x6b8/0x724
  [<800d2960>] pagecache_get_page+0x154/0x270
  [<80134cb0>] __getblk_slow+0x15c/0x374
  [<80160418>] squashfs_read_data+0x1c8/0x6e8
  [<80164628>] squashfs_readpage_block+0x32c/0x4d8
  [<801622a4>] squashfs_readpage+0x5bc/0x6d0
  [<800dd030>] __do_page_cache_readahead+0x1f8/0x264
  [<800d479c>] filemap_fault+0x1a8/0x458
  [<800efc1c>] __do_fault+0x64/0xd0
  [<800f2824>] handle_mm_fault+0x4a4/0xb40
  [<80076e98>] __do_page_fault+0x134/0x470
  [<80060820>] ret_from_exception+0x0/0x10
Reduction of the SquashFS blocksize should reduce the problem slightly on
these nodes. The image size will increase slightly but this should be no
problem for ar71xx-generic (in contrast to ar71xx-tiny). 
						
					 
					
						2018-09-23 14:34:14 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							728d1ffdb1 
							
						 
					 
					
						
						
							
							mt76x8: flag target as broken ( #1533 )  
						
						... 
						
						
						
						The MT76x8 is currently not stable enough for worry-free use with Gluon.
It suffers from reboots in intervals as little as 12 hours or WiFi
freezes for several hours.
It may be unflagged as soon the situation with mt76 got better. 
						
					 
					
						2018-09-17 22:40:44 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							a29883986c 
							
						 
					 
					
						
						
							
							ar71xx: add AVM FRITZ!WLAN Reapeater 450E ( #1506 )  
						
						
						
					 
					
						2018-09-04 20:59:16 +02:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
						
						
							
						
						
							3fb83cc3d5 
							
						 
					 
					
						
						
							
							ipq806x: mark as broken because of unstable wifi drivers  
						
						
						
					 
					
						2018-09-04 01:05:39 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fead411f87 
							
						 
					 
					
						
						
							
							brcm2708: adjust to changed OpenWrt image names  
						
						
						
					 
					
						2018-08-11 00:19:28 +02:00 
						 
				 
			
				
					
						
							
							
								Martin Weinelt 
							
						 
					 
					
						
						
						
						
							
						
						
							0e21d17032 
							
						 
					 
					
						
						
							
							ar71xx-generic: prefer kmod-ath10k for 802.11s mesh ( #1499 )  
						
						... 
						
						
						
						removes cryptic debug messages from kernel ring buffer and
also reduces memory usage by as much as 20-25 MiB. 
						
					 
					
						2018-08-01 03:37:56 +02:00 
						 
				 
			
				
					
						
							
							
								Sven Eckelmann 
							
						 
					 
					
						
						
						
						
							
						
						
							b9ec173ffb 
							
						 
					 
					
						
						
							
							ipq40xx: add support for OpenMesh A62  
						
						... 
						
						
						
						This device is a dual 5GHz device. It is recommended to manually change the
radio of the first device to the lower 5GHz channels and the second radio
to the upper 5GHz channels. 
						
					 
					
						2018-07-25 22:27:16 +02:00 
						 
				 
			
				
					
						
							
							
								Sven Eckelmann 
							
						 
					 
					
						
						
						
						
							
						
						
							36a5604dfe 
							
						 
					 
					
						
						
							
							ipq40xx: add support for OpenMesh A42  
						
						
						
					 
					
						2018-07-25 22:27:16 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							04b446d8cd 
							
						 
					 
					
						
						
							
							ramips: add support for TP-Link TL-WR841N v13 ( #1470 )  
						
						
						
					 
					
						2018-07-25 22:19:59 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							8395c08e66 
							
						 
					 
					
						
						
							
							ramips: add support for TP-Link Archer C50 v3 ( #1487 )  
						
						
						
					 
					
						2018-07-23 04:34:37 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							c3ceded76f 
							
						 
					 
					
						
						
							
							ipq40xx: add support for IBSS  
						
						... 
						
						
						
						Add support for IBSS meshing. Leave target marked as BROKEN for IBSS
as stability is unknown and WiFi LEDs are not working.
Functionality was tested in the network of Freifunk Frankfurt with other
ipq40xx and ar71xx devices. 
						
					 
					
						2018-07-16 01:39:36 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							c4b1febd31 
							
						 
					 
					
						
						
							
							ipq40xx: add target  
						
						... 
						
						
						
						This commit adds support for the new ipq40xx target. 
						
					 
					
						2018-07-16 01:39:36 +02:00 
						 
				 
			
				
					
						
							
							
								Christoph Krapp 
							
						 
					 
					
						
						
						
						
							
						
						
							4883bc7141 
							
						 
					 
					
						
						
							
							ar71xx: add support for TP-Link RE355 ( #1478 )  
						
						... 
						
						
						
						Support is marked as broken because this device is sold in two variants,
one with 64M RAM and another with 128M. As of now 64M is not enough
for ath10k with 5GHz enabled.
As there is no indication known which variant one will get better mark
it as broken.
Signed-off-by: Christoph Krapp <achterin@googlemail.com> 
						
					 
					
						2018-07-15 18:29:42 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							52bc028e6b 
							
						 
					 
					
						
						
							
							ar71xx: add support for OCEDO Koala ( #1475 )  
						
						
						
					 
					
						2018-07-13 01:25:58 +02:00 
						 
				 
			
				
					
						
							
							
								Julian 
							
						 
					 
					
						
						
						
						
							
						
						
							126b34ff14 
							
						 
					 
					
						
						
							
							mvebu: add correct subtarget ( #1473 )  
						
						
						
					 
					
						2018-07-11 22:13:16 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							63c16c01a0 
							
						 
					 
					
						
						
							
							scripts: move DEFAULT_FEEDS definition to a separate file  
						
						... 
						
						
						
						modules.sh can't depend on openwrt/feeds.conf.default, otherwise the
initial update will fail. 
						
					 
					
						2018-07-11 21:47:50 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							210d97c53e 
							
						 
					 
					
						
						
							
							Switch to OpenWrt 18.06 branch  
						
						
						
					 
					
						2018-07-10 22:57:40 +02:00 
						 
				 
			
				
					
						
							
							
								Sven Eckelmann 
							
						 
					 
					
						
						
						
						
							
						
						
							3d18ae02d8 
							
						 
					 
					
						
						
							
							ar71xx: Add support for TP-Link CPE210 v2 ( #1445 )  
						
						
						
					 
					
						2018-06-26 01:19:55 +02:00 
						 
				 
			
				
					
						
							
							
								Sven Eckelmann 
							
						 
					 
					
						
						
						
						
							
						
						
							384c2772c9 
							
						 
					 
					
						
						
							
							ar71xx: add ath10k packages for OpenMesh A40/A60 ( #1444 )  
						
						... 
						
						
						
						The dependency line was lost during the rebase of the current master
version.
Fixes: 9d719a2e57#1424 )") 
						
					 
					
						2018-06-24 13:32:56 +02:00 
						 
				 
			
				
					
						
							
							
								Christoph Krapp 
							
						 
					 
					
						
						
						
						
							
						
						
							1a065fbe24 
							
						 
					 
					
						
						
							
							ar71xx: add support for ZyXEL NBG6716 ( #1443 )  
						
						
						
					 
					
						2018-06-22 20:21:11 +02:00 
						 
				 
			
				
					
						
							
							
								Sven Eckelmann 
							
						 
					 
					
						
						
						
						
							
						
						
							ef819cc196 
							
						 
					 
					
						
						
							
							ar71xx: add support for OpenMesh OM2P(-HS)v4 ( #1426 )  
						
						
						
					 
					
						2018-06-09 13:55:38 +02:00 
						 
				 
			
				
					
						
							
							
								Sven Eckelmann 
							
						 
					 
					
						
						
						
						
							
						
						
							9d719a2e57 
							
						 
					 
					
						
						
							
							ar71xx: add support for OpenMesh A40/A60 ( #1424 )  
						
						
						
					 
					
						2018-06-08 20:18:30 +02:00 
						 
				 
			
				
					
						
							
							
								Christoph Krapp 
							
						 
					 
					
						
						
						
						
							
						
						
							54ff903633 
							
						 
					 
					
						
						
							
							ar71xx: add support for TP-Link TL-WA901ND v5 ( #1423 )  
						
						
						
					 
					
						2018-06-07 22:36:18 +02:00 
						 
				 
			
				
					
						
							
							
								Vincent Wiemann 
							
						 
					 
					
						
						
						
						
							
						
						
							33956cd4b3 
							
						 
					 
					
						
						
							
							ar71xx: add support for Alfa AP121F ( #1404 )  
						
						... 
						
						
						
						Adds support for Alfa AP121F USB powered travel router (looks like an USB ethernet adapter).
There is no factory image, but only a sysupgrade file for this router which can be installed using the inbuilt UBoot web interface.
Configure your PC with IP address 192.168.1.2 and connect the router using its RJ45 port. Hold the reset button while powering the device until all LEDs have flashed 3 times simultaneously. You can now access the fallback web interface using a web browser at http://192.168.1.1  and flash the sysupgrade file. 
						
					 
					
						2018-05-23 19:32:40 +02:00 
						 
				 
			
				
					
						
							
							
								Christoph Krapp 
							
						 
					 
					
						
						
						
						
							
						
						
							68ee56b869 
							
						 
					 
					
						
						
							
							ar71xx: add support for GL.iNet GL-AR750 ( #1395 )  
						
						
						
					 
					
						2018-05-17 22:33:18 +02:00 
						 
				 
			
				
					
						
							
							
								Christoph Krapp 
							
						 
					 
					
						
						
						
						
							
						
						
							eaa23aeae6 
							
						 
					 
					
						
						
							
							ar71xx: add support for TP-Link TL-WR940N v6 ( #1389 )  
						
						
						
					 
					
						2018-05-17 01:33:52 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							59d6b2a4ee 
							
						 
					 
					
						
						
							
							ramips-rt305x: correct alphabetical order  
						
						
						
					 
					
						2018-05-09 04:00:02 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5bd1d88f85 
							
						 
					 
					
						
						
							
							ar71xx-generic: make ubiquiti-rocket-m a separate device  
						
						... 
						
						
						
						Make ubiquiti-rocket-m a separate device rather than a bullet-m alias to
enable USB support and allow adding devive-specific packages. 
						
					 
					
						2018-05-08 18:39:18 +02:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							22d45448fd 
							
						 
					 
					
						
						
							
							ar71xx: add support for Fritz!Box 4020  
						
						... 
						
						
						
						This commit adds support for the AVM Fritz!Box 4020 WiFi-router.
SoC:   Qualcomm Atheros QCA9561 (Dragonfly) 750MHz
RAM:   Winbond W971GG6KB-25
FLASH: Macronix MX25L12835F
WiFi:  QCA9561 b/g/n 3x3 450Mbit/s
USB:   1x USB 2.0
IN:    WPS button, WiFi button
OUT:   Power LED green, Internet LED green, WLAN LED green,
       LAN LED green, INFO LED green, INFO LED red
UART:  Header Next to Black metal shield
       Pinout is 3.3V - RX - TX - GND (Square Pad is 3.3V)
       The Serial setting is 115200-8-N-1.
Tested and working:
 - Ethernet (LAN + WAN)
 - WiFi (correct MAC)
 - Installation via EVA bootloader
 - OpenWRT sysupgrade
 - Buttons
 - LEDs
Not working:
 - USB port
Installation via EVA:
In the first seconds after Power is connected, the bootloader will
listen for FTP connections on 169.254.157.1 (Might also be 192.168.178.1). Firmware can be uploaded
like following:
  ftp> quote USER adam2
  ftp> quote PASS adam2
  ftp> binary
  ftp> debug
  ftp> passive
  ftp> quote MEDIA FLSH
  ftp> put openwrt-sysupgrade.bin mtd1
Note that this procedure might take up to two minutes. After transfer is
complete you need to powercycle the device to boot OpenWRT.
Signed-off-by: David Bauer <mail@david-bauer.net> 
						
					 
					
						2018-05-08 15:20:02 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							1531571a7e 
							
						 
					 
					
						
						
							
							targets/ipq806x: use ath10k-firmware-qca99x0-ct for 11s and remove BROKEN flag  
						
						
						
					 
					
						2018-05-07 00:03:04 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a2eb50e0e6 
							
						 
					 
					
						
						
							
							x86: move common parts of x86-generic and x86-64 to include file  
						
						
						
					 
					
						2018-04-26 22:59:36 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							818acd6021 
							
						 
					 
					
						
						
							
							x86: remove bash and wget again  
						
						... 
						
						
						
						Let's keep the default package selection to hardware support. 
						
					 
					
						2018-04-26 22:55:36 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							563f351b78 
							
						 
					 
					
						
						
							
							x86: add packages: leds, sensors, gpio, usb, wifi and tools  
						
						
						
					 
					
						2018-04-26 20:54:49 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							02f905f542 
							
						 
					 
					
						
						
							
							ar71xx: build kernel modules used by Gluon into the kernel  
						
						... 
						
						
						
						ar71xx-generic and -tiny benefit most from the optimized kernel, as they
contain all devices with 32MB RAM. We enable CONFIG_GLUON_SPECIALIZE_KERNEL
for all targets using the mips24_kc architecture so packages shared between
targets don't need to be rebuild all the time. 
						
					 
					
						2018-04-13 17:32:20 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d210cfcad9 
							
						 
					 
					
						
						
							
							generic: do not attempt to build kmod-usbip  
						
						... 
						
						
						
						kmod-usbip is broken since the last kernel update. 
						
					 
					
						2018-04-10 20:25:38 +02:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							91912f4935 
							
						 
					 
					
						
						
							
							ar71xx-tiny: add support for TP-Link TL-WR940N v5  
						
						... 
						
						
						
						adding an alias as it uses the same image as the TL-WR940N v4 
						
					 
					
						2018-03-19 23:34:45 +01:00 
						 
				 
			
				
					
						
							
							
								Jan-Tarek Butt 
							
						 
					 
					
						
						
						
						
							
						
						
							be286c4c69 
							
						 
					 
					
						
						
							
							ar71xx-generic: set unifi-ac-lr alias on ac-lite  
						
						
						
					 
					
						2018-02-20 15:22:21 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							4315ef7a1f 
							
						 
					 
					
						
						
							
							sunxi: cleanup BROKEN flag formatting  
						
						
						
					 
					
						2018-02-07 04:03:00 +01:00 
						 
				 
			
				
					
						
							
							
								Julian 
							
						 
					 
					
						
						
						
						
							
						
						
							167e1b34dc 
							
						 
					 
					
						
						
							
							sunxi: LeMaker Banana Pi: remove BROKEN ( #1325 )  
						
						
						
					 
					
						2018-02-06 18:24:46 +01:00 
						 
				 
			
				
					
						
							
							
								Vincent Wiemann 
							
						 
					 
					
						
						
						
						
							
						
						
							273a60fe62 
							
						 
					 
					
						
						
							
							ramips-mt7621: Add support for ZBT-WG3526-32M ( #1296 )  
						
						... 
						
						
						
						including backport of mtd patches.
The general flash issue (32MB) was discussed here:
https://gist.github.com/dmke/d389bc364b3f73f525076eaee0019dc1 
The resulting patch was the following:
http://lists.infradead.org/pipermail/linux-mtd/2016-December/070889.html 
Another patch by nbd168 added the required mtd read operations for supporting ZBT-WG3526-32M:
https://github.com/lede-project/source/commit/22d982e#diff-3835f027e16e6416090c1833bc732af3  
						
					 
					
						2018-02-04 17:42:48 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							87ced3c5c6 
							
						 
					 
					
						
						
							
							modules: update LEDE  
						
						... 
						
						
						
						b1205a9211 ar71xx: /lib/ar71xx.sh: add model detection for TP-Link TL-WR810N
fbeae9d891 iptables: make kmod-ipt-debug part of default ALL build
6ea9a702c5 iptables: Fix target TRACE issue
00fa1e4108 curl: fix libcurl/mbedtls async interface
d5278cc48b kernel: bump 4.4 to 4.4.112 for 17.01
2ae0741f3b dnsmasq: backport validation fix in dnssec security fix
58d60bd283 dnsmasq: backport dnssec security fix for 17.01
d626aa005b mountd: bump to git HEAD version
f0336975be kernel: bump 4.4 to 4.4.111 for 17.01
fb6f21c657 kmod-sched-cake: bump to latest cake bake for 17.01
2e8a3bb35f ar71xx: Netgear WNR2000v4: do not include USB packages [17.01]
3fa86282fa build: fix restoring /etc/opkg with PER_DEVICE_ROOTFS
987a7e3175 ramips: fix lenovo newifi-y1 switch and LED config
dbb5ffaed5 ramips: firewrt: indicate boot status via LED 
						
					 
					
						2018-02-03 14:17:29 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ff073f55d8 
							
						 
					 
					
						
						
							
							Merge pull request  #1318  from rotanid/target-cleanup  
						
						... 
						
						
						
						target files cleanup: variable checks and comments 
						
					 
					
						2018-01-27 13:04:15 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							e9362cb724 
							
						 
					 
					
						
						
							
							targets: update & cleanup reasons for BROKEN flags  
						
						
						
					 
					
						2018-01-26 14:17:44 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							e92140c593 
							
						 
					 
					
						
						
							
							targets: remove check if ATH10K_PACKAGES is set  
						
						... 
						
						
						
						as GLUON_WLAN_MESH now is set by default, ATH10K_PACKAGES is set by default, too 
						
					 
					
						2018-01-26 14:17:35 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							07dbfea617 
							
						 
					 
					
						
						
							
							gluon-site: disable multidomain support by default  
						
						
						
					 
					
						2018-01-26 12:32:46 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							faceb3932c 
							
						 
					 
					
						
						
							
							config: check if GLUON_DEBUG is 1 rather than nonempty  
						
						
						
					 
					
						2018-01-26 12:32:46 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							a99fdf7919 
							
						 
					 
					
						
						
							
							ramips-mt7621: Netgear WNDR3700v5 has no factory image  
						
						... 
						
						
						
						fixes build after 3ec63b8c 
						
					 
					
						2018-01-26 01:45:49 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							d586720c5c 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for Ubiquiti NanoBeam M5  
						
						... 
						
						
						
						marked as BROKEN for now as it is untested
related issue: #1099  
						
					 
					
						2018-01-20 15:38:49 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							c4e3cca1d3 
							
						 
					 
					
						
						
							
							ar71xx-tiny: add support for TP-Link TL-WR802N v1  
						
						... 
						
						
						
						marked as BROKEN for now as it is untested 
						
					 
					
						2018-01-19 23:47:36 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							708aae5015 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for TP-Link TL-WR810N  
						
						... 
						
						
						
						marked as BROKEN for now as it is untested 
						
					 
					
						2018-01-19 23:47:31 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							3ec63b8c70 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for Netgear WNDR3700v5  
						
						... 
						
						
						
						fixes  #442  
					
						2018-01-19 20:45:29 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							99b02701cc 
							
						 
					 
					
						
						
							
							ar71xx: add support for TP-Link Archer C58/C59/C60 ( #1281 )  
						
						
						
					 
					
						2018-01-16 18:51:12 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							fb93c3b259 
							
						 
					 
					
						
						
							
							ar71xx: correct model name for TL-WR1043N v5,  fixes   #1307  
						
						
						
					 
					
						2018-01-16 18:30:37 +01:00 
						 
				 
			
				
					
						
							
							
								Tata 
							
						 
					 
					
						
						
						
						
							
						
						
							919dda90b3 
							
						 
					 
					
						
						
							
							build: introduce GLUON_WLAN_MESH build variable ( #1298 )  
						
						... 
						
						
						
						defaults to 11s, allowing to build devices without IBSS-support
obsoletes GLUON_ATH10K_MESH 
						
					 
					
						2018-01-10 15:49:33 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							9273e56c63 
							
						 
					 
					
						
						
							
							ar71xx: add support for TP-Link Archer C7 v4 ( #1289 )  
						
						
						
					 
					
						2018-01-03 16:50:23 +01:00 
						 
				 
			
				
					
						
							
							
								Jan-Tarek Butt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f514ec13b5 
							
						 
					 
					
						
						
							
							brcm2708-bcm2709: add manifest_alias for raspberry-pi-2-model-b-rev-1.1  
						
						
						
					 
					
						2017-12-27 03:06:19 +01:00 
						 
				 
			
				
					
						
							
							
								Jan-Tarek Butt 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7b61cb16f8 
							
						 
					 
					
						
						
							
							brcm2708-bcm2708: add manifest_alias for raspberry-pi-model-b-rev-2  
						
						... 
						
						
						
						Signed-off-by: Jan-Tarek Butt <tarek@ring0.de> 
						
					 
					
						2017-12-27 03:05:53 +01:00 
						 
				 
			
				
					
						
							
							
								David Bauer 
							
						 
					 
					
						
						
						
						
							
						
						
							70784cb3b2 
							
						 
					 
					
						
						
							
							ar71xx: add support for TP-Link TL-WR1043N v5 ( #1279 )  
						
						
						
					 
					
						2017-12-19 04:22:44 +01:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							9136562517 
							
						 
					 
					
						
						
							
							ramips-rt305x: add D-Link DIR-615 rev D1-D4  
						
						
						
					 
					
						2017-12-08 00:00:35 +01:00 
						 
				 
			
				
					
						
							
							
								kb-light 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							17d1c65610 
							
						 
					 
					
						
						
							
							ramips-mt7621: do not tag ubnt-erx(-sfp) as broken  
						
						... 
						
						
						
						There is no wifi, so there is no bad wifi.
[Matthias Schiffer: rebase onto master] 
						
					 
					
						2017-11-26 12:46:20 +01:00 
						 
				 
			
				
					
						
							
							
								Karsten Böddeker 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							64cfd648cb 
							
						 
					 
					
						
						
							
							ramips-mt7621: add support for UBNT EdgeRouter X-SFP  
						
						... 
						
						
						
						[Matthias Schiffer: remove patch "ramips: simplify ubnt-erx-sfp device
definition", as it depends on other patches that have not been backported] 
						
					 
					
						2017-11-26 12:44:52 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							1ca402ee46 
							
						 
					 
					
						
						
							
							ramips-mt7621: ZBT-WG3526 has no factory image  
						
						
						
					 
					
						2017-11-23 03:09:03 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							14ef0387ea 
							
						 
					 
					
						
						
							
							ramips-mt7621: add ZBT-WG3526  
						
						
						
					 
					
						2017-11-23 03:05:58 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a040ec0083 
							
						 
					 
					
						
						
							
							ar71xx: add TP-Link Archer C25 ( #1238 )  
						
						... 
						
						
						
						BROKEN because of stability issues with 5GHz enabled. 
						
					 
					
						2017-10-22 01:43:20 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							08cbbf9925 
							
						 
					 
					
						
						
							
							build: move all generic config generation to targets/generic  
						
						... 
						
						
						
						As the default package list is now handled using the 'packages' directive,
explicit wpad-mini removals in target definitions can be dropped. 
						
					 
					
						2017-09-07 03:21:42 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							587c5016cb 
							
						 
					 
					
						
						
							
							build: handle generic and target-specific config in the same run of target_config{,_check}.sh  
						
						... 
						
						
						
						This, together with a new try_config directive, will allow checking the
generic config and make it more flexible. 
						
					 
					
						2017-09-07 00:17:57 +02:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b325f00599 
							
						 
					 
					
						
						
							
							ramips-mt7620: add new subtarget with some Gl.Inet devices  
						
						
						
					 
					
						2017-09-06 20:58:51 +02:00 
						 
				 
			
				
					
						
							
							
								hexa- 
							
						 
					 
					
						
						
						
						
							
						
						
							c3c6ea0cd7 
							
						 
					 
					
						
						
							
							brcm2708: drop wpad-mini as it clashes with hostapd-mini ( #1205 )  
						
						
						
					 
					
						2017-08-13 21:43:57 +02:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							e395284156 
							
						 
					 
					
						
						
							
							brcm2708: add target and platform for raspi3 ( #1204 )  
						
						... 
						
						
						
						This device has built in wifi we should include it at least for experiments. 
						
					 
					
						2017-08-13 15:53:11 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							085cf0debf 
							
						 
					 
					
						
						
							
							ar71xx-generic: add alias for Ubiquiti UniFi Mesh  
						
						... 
						
						
						
						Fixes  #1021  
					
						2017-08-08 12:08:09 +02:00 
						 
				 
			
				
					
						
							
							
								Linus Lüssing 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							23a8947628 
							
						 
					 
					
						
						
							
							Revert "generic: batman-adv: disable multicast optimizations for now"  
						
						... 
						
						
						
						This reverts commit 819758f425 
						
					 
					
						2017-08-07 22:07:14 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6e039911ab 
							
						 
					 
					
						
						
							
							generic: don't explicitly enable busybox sha256sum applet  
						
						... 
						
						
						
						LEDE has sha256sum enabled by default. 
						
					 
					
						2017-07-03 03:49:03 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							102f6a7244 
							
						 
					 
					
						
						
							
							Revert "generic: busybox: enable sha512sum to workaround segfault issue"  
						
						... 
						
						
						
						This reverts commit dcff68029e 
						
					 
					
						2017-07-03 01:45:21 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							86636c3ae6 
							
						 
					 
					
						
						
							
							ramips-rt305x: add D-Link DIR-615 H1  
						
						... 
						
						
						
						Fixes  #1164  
					
						2017-06-29 18:28:16 +02:00 
						 
				 
			
				
					
						
							
							
								Florian Beier 
							
						 
					 
					
						
						
						
						
							
						
						
							1690b51d21 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for GL.INet GL-AR300M ( #1163 )  
						
						
						
					 
					
						2017-06-27 02:31:39 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							819758f425 
							
						 
					 
					
						
						
							
							generic: batman-adv: disable multicast optimizations for now  
						
						... 
						
						
						
						A bug in batman-adv can lead to a large amount of management traffic being
exchanged between nodes when the multicast optimizations are enabled,
effectively making the mesh unusable. It's safer to disable the feature
for now, until we have a real fix. 
						
					 
					
						2017-06-26 14:37:13 +02:00 
						 
				 
			
				
					
						
							
							
								David Lutz 
							
						 
					 
					
						
						
						
						
							
						
						
							93c6cf1506 
							
						 
					 
					
						
						
							
							ramips-rt305x: Add support for A5-V11 ( #1151 )  
						
						
						
					 
					
						2017-06-23 13:23:31 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							dcff68029e 
							
						 
					 
					
						
						
							
							generic: busybox: enable sha512sum to workaround segfault issue  
						
						... 
						
						
						
						sha512sum doesn't add much code that is not also used by sha256sum, but the
change of the configuration hides the segfault issue described in:
  https://bugs.lede-project.org/index.php?do=details&task_id=822 
While the issue only seemed to affect dhcpv6.script, it would clutter /tmp
with coredumps, eventually leading to OOM. 
						
					 
					
						2017-06-23 13:12:46 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							869ceb425c 
							
						 
					 
					
						
						
							
							x86-generic: add manifest aliases for x86-kvm and x86-xen_domu  
						
						... 
						
						
						
						Allow the autoupdater to work when updating from the removed targets. 
						
					 
					
						2017-06-13 12:21:03 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9b687332d3 
							
						 
					 
					
						
						
							
							ar71xx-generic: remove CPE220/CPE520 1.0 devices  
						
						... 
						
						
						
						These devices have never actually existed; the corresponding support
strings have been removed from the stock firmwares as well. 
						
					 
					
						2017-06-07 15:22:18 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							aabe0dd41d 
							
						 
					 
					
						
						
							
							ar71xx-tiny: add TP-Link TL-WA701N/ND v2 again  
						
						... 
						
						
						
						It seems the device was lost during the OpenWrt -> LEDE migration. 
						
					 
					
						2017-06-07 15:20:12 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							009162134a 
							
						 
					 
					
						
						
							
							ramips-mt7621: add support for UBNT EdgeRouter X  
						
						
						
					 
					
						2017-06-06 16:34:04 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							88f2e3e4e2 
							
						 
					 
					
						
						
							
							Revert "generic: revert to OpenWrt CC partition sizes on x86 and similar images for now"  
						
						... 
						
						
						
						This reverts commit fcce9e5295 
						
					 
					
						2017-06-01 21:10:01 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fcce9e5295 
							
						 
					 
					
						
						
							
							generic: revert to OpenWrt CC partition sizes on x86 and similar images for now  
						
						... 
						
						
						
						This will allow upgrading using the broken sysupgrade scripts in OpenWrt
CC without losing the configuration.
Fixes  #1010  
						
					 
					
						2017-05-30 03:28:31 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ad91ab1be7 
							
						 
					 
					
						
						
							
							build: don't copy packages to output directory for targets without opkg  
						
						... 
						
						
						
						Fixes  #1126  
					
						2017-05-15 23:23:02 +02:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							373613bb54 
							
						 
					 
					
						
						
							
							ar71xx-generic: add profile for UBNT Airgateway Pro and alias for UBNT Airgateway LR ( #1107 )  
						
						... 
						
						
						
						The Airgateway LR is the same device as the normal Airgateway but with an detachable antenna. The Pro version is a cheap dual band device. 
						
					 
					
						2017-04-27 04:15:13 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6c053d92b8 
							
						 
					 
					
						
						
							
							ar71xx-tiny: add support for TP-Link TL-WR841N/ND v12  
						
						
						
					 
					
						2017-04-20 16:59:55 +02:00 
						 
				 
			
				
					
						
							
							
								bobcanthelpyou 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							82f5afd09d 
							
						 
					 
					
						
						
							
							ar71xx-tiny: add TP LINK TL-WA730RE v1  
						
						
						
					 
					
						2017-04-16 16:26:24 +02:00 
						 
				 
			
				
					
						
							
							
								Malte Möller 
							
						 
					 
					
						
						
						
						
							
						
						
							ad9878be9d 
							
						 
					 
					
						
						
							
							ar71xx-generic: add Support for TP Link RE450 ( #1092 )  
						
						... 
						
						
						
						Fixes  #1084 
Hardware is very similar to Archer C5v1 and C7v2.
Tested factory install and autoupdater.
IBSS Mesh on 2.4 and 5 GHz is working fine.
The only Ethernet Port is used for config mode and afterwards handled
as WAN Port. 
					
						2017-04-13 02:01:19 +02:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							57070a56be 
							
						 
					 
					
						
						
							
							ipq806x: add new target and support for TP-Link Archer C2600  
						
						... 
						
						
						
						Completely untested for now.
Closes  #835  
						
					 
					
						2017-03-27 11:44:07 +02:00 
						 
				 
			
				
					
						
							
							
								Tarnatos 
							
						 
					 
					
						
						
						
						
							
						
						
							d3d1059149 
							
						 
					 
					
						
						
							
							ar71xx: more consistent image file names for TP-Link TL-WR940N ( #1071 )  
						
						... 
						
						
						
						The TL-WR940N doesn't have detachable antennas. Make v1-v3 match v4. 
						
					 
					
						2017-03-23 12:40:46 +01:00 
						 
				 
			
				
					
						
							
							
								hexa- 
							
						 
					 
					
						
						
						
						
							
						
						
							1c9b0ced00 
							
						 
					 
					
						
						
							
							bcm2708: prevent wpad-mini from conflicting with hostapd-mini ( #1065 )  
						
						
						
					 
					
						2017-03-10 15:31:20 +01:00 
						 
				 
			
				
					
						
							
							
								0x4A6F 
							
						 
					 
					
						
						
						
						
							
						
						
							ebeefa1747 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for Ubiquiti Rocket M Titanium ( #968 )  
						
						
						
					 
					
						2017-03-01 13:21:28 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a70462ff18 
							
						 
					 
					
						
						
							
							Update Gluon packages  
						
						... 
						
						
						
						Switch sha512sum to sha256sum to match updated autoupdater. 
						
					 
					
						2017-02-25 01:28:07 +01:00 
						 
				 
			
				
					
						
							
							
								Julian 
							
						 
					 
					
						
						
						
						
							
						
						
							6d77065263 
							
						 
					 
					
						
						
							
							mvebu: remove wpad-mini ( #1056 )  
						
						
						
					 
					
						2017-02-24 15:19:16 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0af0be0673 
							
						 
					 
					
						
						
							
							ar71xx-generic: don't try to build a factory image for D-Link DIR-825 B1  
						
						... 
						
						
						
						The size of the factory images is limited to 4MB, which caused build
failures when many additional packages were included.
Rather than moving the device to ar71xx-tiny, we ignore the factory images
and just build the sysupgrade. This way, the whole flash is usable for
Gluon.
This means that installing Gluon on these devices will now require to flash
a plain LEDE image first, and then upgrading using the Gluon sysupgrade
image.
Fixes  #1020  
						
					 
					
						2017-02-24 01:50:17 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							31d3f08f25 
							
						 
					 
					
						
						
							
							treewide: convert all LuCI-based packages to gluon-web  
						
						
						
					 
					
						2017-02-22 01:31:25 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							08994ae8c0 
							
						 
					 
					
						
						
							
							ar71xx-tiny: fix image name for TL-WR940N v4  
						
						... 
						
						
						
						To fix the autoupdater. 
						
					 
					
						2017-02-21 20:54:36 +01:00 
						 
				 
			
				
					
						
							
							
								txt.file 
							
						 
					 
					
						
						
						
						
							
						
						
							1fdaee080a 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for TP-Link TL-WA7210N ( #1029 )  
						
						
						
					 
					
						2017-02-21 09:42:30 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b4ccb1fa95 
							
						 
					 
					
						
						
							
							ar71xx-mikrotik: update device definitions  
						
						
						
					 
					
						2017-02-12 07:15:16 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							31ee7be16d 
							
						 
					 
					
						
						
							
							x86-xen_domu: remove  
						
						... 
						
						
						
						Remove obsolete x86-xen_domu definition, it has been merged into
x86-generic. 
						
					 
					
						2017-02-12 05:11:10 +01:00 
						 
				 
			
				
					
						
							
							
								Christof Schulze 
							
						 
					 
					
						
						
						
						
							
						
						
							b40d94111e 
							
						 
					 
					
						
						
							
							build: add GLUON_DEBUG flag, if enabled set CONFIG_DEBUG and do not strip binaries ( #1028 )  
						
						
						
					 
					
						2017-02-11 23:33:07 +01:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
						
						
							
						
						
							b8dc1a784a 
							
						 
					 
					
						
						
							
							ramips-mt7628: add new platform and vocore2 ( #1027 )  
						
						
						
					 
					
						2017-02-09 02:07:00 +01:00 
						 
				 
			
				
					
						
							
							
								Steffen Förster 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fb05aef96b 
							
						 
					 
					
						
						
							
							x86-geode: add target for Geode CPUs  
						
						
						
					 
					
						2017-02-03 22:47:14 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8ea481edea 
							
						 
					 
					
						
						
							
							x86: add kmod-8139cp by default  
						
						... 
						
						
						
						Fixes  #1022  
					
						2017-02-03 22:35:56 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							78b2775eec 
							
						 
					 
					
						
						
							
							Use LEDE as base for Gluon  
						
						
						
					 
					
						2017-01-18 17:21:43 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							850499fdb3 
							
						 
					 
					
						
						
							
							ar71xx-generic: mark Meraki devices as BROKEN again  
						
						... 
						
						
						
						These devices don't have unique MAC addresses with OpenWrt/LEDE at the moment
(see #993 ). 
						
					 
					
						2017-01-09 23:06:09 +01:00 
						 
				 
			
				
					
						
							
							
								kb-light 
							
						 
					 
					
						
						
						
						
							
						
						
							d3bc378536 
							
						 
					 
					
						
						
							
							ar71xx-generic: TP-Link WBS210/510: remove BROKEN ( #1002 )  
						
						
						
					 
					
						2017-01-09 22:25:16 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							99471f8d5d 
							
						 
					 
					
						
						
							
							ar71xx-generic: add support for TP-Link WBS210/510 (untested)  
						
						... 
						
						
						
						Closes  #844  
					
						2017-01-06 12:02:32 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bee999dd90 
							
						 
					 
					
						
						
							
							ar71xx-generic: backport support for TP-LINK TL-WR1043ND v4  
						
						... 
						
						
						
						Fixes  #961  
					
						2016-12-22 00:01:55 +01:00 
						 
				 
			
				
					
						
							
							
								David Lutz 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ef39158ed1 
							
						 
					 
					
						
						
							
							ar71xx-generic: add Support for TP-LINK TL-WR940N v4  
						
						
						
					 
					
						2016-12-13 01:31:43 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							61de5b8841 
							
						 
					 
					
						
						
							
							mvebu: fix comment about BROKEN status  
						
						
						
					 
					
						2016-12-12 15:02:45 +01:00 
						 
				 
			
				
					
						
							
							
								Julian Labus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5b10928ce0 
							
						 
					 
					
						
						
							
							mvebu: add missing package uboot-envtools which is needed for sysupgrade  
						
						
						
					 
					
						2016-12-12 15:02:11 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1677b62e4b 
							
						 
					 
					
						
						
							
							ar71xx: fix LEDs for TL-WA801ND v3, remove BROKEN  
						
						
						
					 
					
						2016-12-06 19:01:46 +01:00 
						 
				 
			
				
					
						
							
							
								Julian 
							
						 
					 
					
						
						
						
						
							
						
						
							a9e29725c0 
							
						 
					 
					
						
						
							
							Add support for mvebu target ( #964 )  
						
						
						
					 
					
						2016-12-05 10:45:05 +01:00 
						 
				 
			
				
					
						
							
							
								Neal Oakey 
							
						 
					 
					
						
						
						
						
							
						
						
							9223639ffe 
							
						 
					 
					
						
						
							
							ar71xx-generic: make UBNT image names consistent ( #809 )  
						
						
						
					 
					
						2016-11-29 23:11:50 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5ef3d883a5 
							
						 
					 
					
						
						
							
							ar71xx-generic: backport region code support for TP-Link TL-WR841ND v11  
						
						
						
					 
					
						2016-11-11 03:45:49 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							9fba8d7a64 
							
						 
					 
					
						
						
							
							x86: include kmod-igb, kmod-sky2 and kmod-tulip into generic and 64 subtargets  
						
						
						
					 
					
						2016-11-06 15:07:06 +01:00 
						 
				 
			
				
					
						
							
							
								Andreas Ziegler 
							
						 
					 
					
						
						
						
						
							
						
						
							dbc6fe70d7 
							
						 
					 
					
						
						
							
							x86: sort network packages alphabetically  
						
						
						
					 
					
						2016-11-06 15:06:24 +01:00 
						 
				 
			
				
					
						
							
							
								Matthias Schiffer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a606b32b17 
							
						 
					 
					
						
						
							
							ar71xx-generic: set region code for TL-WA901ND v4 and remove BROKEN  
						
						... 
						
						
						
						Tested-by: Jannis Pinter <jannis@pinterjann.is> 
						
					 
					
						2016-10-15 19:11:35 +02:00