Commit Graph

4101 Commits

Author SHA1 Message Date
Matthias Schiffer
a0fb847d55 Update OpenWrt and packages 2014-09-15 16:42:01 +02:00
Matthias Schiffer
bb7e6a69bd Update Gluon modules 2014-09-15 16:40:14 +02:00
Nils Schneider
5fa97f8fdb gluon-core: add node_id() to gluon.util 2014-09-11 12:27:29 +02:00
Matthias Schiffer
bb6d0f1179 Update LuCI 2014-09-09 19:49:44 +02:00
Matthias Schiffer
ebec39f468 docs: add documentation about addings new hardware support 2014-09-09 17:08:46 +02:00
Matthias Schiffer
c388946e82 Update upstream repos 2014-09-09 15:35:32 +02:00
Matthias Schiffer
674f47ffd2 Update Gluon packages 2014-09-09 15:33:32 +02:00
Nils Schneider
e8c52e0758 Merge pull request #181 from pberndro/patch-2
Delete builds.rst
2014-09-09 13:44:26 +02:00
Nils Schneider
8c09f9a53c Merge branch 'pberndro-patch-2' 2014-09-09 13:43:37 +02:00
Philip Berndroth
6543833f06 Delete builds.rst
This chapter is no longer needed (duplicate content).
The content is alrady in http://gluon.readthedocs.org/en/latest/user/getting_started.html#getting-started .
2014-09-09 13:43:16 +02:00
Nils Schneider
a5c44a2a5e Merge pull request #180 from pberndro/patch-1
Update getting_started.rst
2014-09-09 13:42:00 +02:00
Nils Schneider
d87cf05c95 mesh-batman-adv-core: disable igmp_snooping on br-client
IGMP snooping causes serious trouble with IPv6 neighbour discovery.
2014-09-09 11:29:51 +02:00
Nils Schneider
abcc86bf8f gluon-neighbour-info: global timeout 2014-09-06 15:40:03 +02:00
Nils Schneider
0222f342af gluon-neighbour-info: newlines between responses 2014-09-06 14:10:43 +02:00
Nils Schneider
b969f3e644 gluon-neighbour-info: cleanup, use recv instead of recvfrom 2014-09-06 14:02:19 +02:00
Nils Schneider
29464a4ba1 Merge pull request #72 from freifunk-gluon/fastd-site-enable
mesh-vpn-fastd: enable from site.conf
2014-09-06 13:38:43 +02:00
Nils Schneider
4e19df098a mesh-vpn-fastd: enable from site.conf
This patch allows fastd's enabled flag's default value to be set from
site.conf.
2014-09-03 20:37:17 +02:00
Matthias Schiffer
83f62c159e TL-WR710N v1: remove BROKEN 2014-09-01 18:45:04 +02:00
Matthias Schiffer
2d9a25a06c Fix build by disabling per-feed repos again
Updating OpenWrt accidentally enabled this option.
2014-09-01 17:43:39 +02:00
Matthias Schiffer
b739881fe4 Update OpenWrt 2014-09-01 15:54:43 +02:00
Philip Berndroth
e496c17cc8 Delete builds.rst
This chapter is no longer needed (duplicate content).
The content is alrady in http://gluon.readthedocs.org/en/latest/user/getting_started.html#getting-started .
2014-08-30 20:00:43 +02:00
Matthias Schiffer
db9376ed4a Update batman-adv (15) to v2014.3 2014-08-30 19:57:59 +02:00
Philip Berndroth
4947eaff98 Update getting_started.rst
add information about the environment variables.
2014-08-30 19:55:17 +02:00
Matthias Schiffer
62268d4ab0 Update OpenWrt and packages
This significantly improves fastd performance, to the level it was before
Barrier Breaker.
2014-08-30 19:49:13 +02:00
Matthias Schiffer
31a3bfc18f Update gluon packages 2014-08-30 19:41:19 +02:00
Jan-Philipp Litza
ae43f3dc3e gluon-core: Remove VERSION_DIR hack
As the (removed) comment said, this was a one-time-hack that was obsoleted long ago.
2014-08-30 15:13:52 +02:00
Matthias Schiffer
d3aecbfc6c Add support for the TL-WR710N v1 (untested) 2014-08-28 21:12:43 +02:00
Nils Schneider
fe57f93bc7 gluon-neighbour-info: query direct neighbours
This is a simple client for gluon-announced.
2014-08-28 18:48:57 +02:00
Nils Schneider
e2ff6a6ed3 gluon-luci-admin: restructure firmware upgrades 2014-08-28 16:36:04 +02:00
NeoRaider
9d11f4bda1 Merge pull request #68 from FreifunkBremen/gluon-cron-fix
gluon-cron: Fix endless loop parsing invalid lines
2014-08-27 10:33:34 +02:00
Jan-Philipp Litza
afce06c3d3 gluon-cron: Fix endless loop parsing invalid lines
Using the line
```
* * * * echo "foobar"
```
(notice the missing fifth time field) in a crontab causes gluon-cron
to enter an endless loop while parsing it, thus it won't even execute
the other, valid crontabs.

This is caused by the loop in [line 138] where `begin - min`
substracts the unsigned `min` from the signed `begin`. If now `begin`
is invalid, `strict_atoi` returns -1 and the loop starts at
`(-1)-1=MAX_INT` and runs while `i <= MAX_INT` which is always true.

The real culprit lies in [line 134] where exactly this case
`begin < min` is checked - but because of the signedness, this check doesn't
work as expected either.

The easiest solution is to make `min` a signed integer instead of an unsigned
one, as we do not require it to be very large and only pass the constants 0 or
1 to it.

To avoid other similar problems, this patch makes the input variable `n` a
signed integer as well.
2014-08-27 10:20:04 +02:00
Nils Schneider
80b0abb941 Update gluon packages 2014-08-25 21:57:55 +02:00
Nils Schneider
a90920e373 gluon-announced: avoid spawning zombies 2014-08-25 21:53:21 +02:00
Nils Schneider
40321595a9 Merge pull request #62 from freifunk-gluon/clientcount
mesh-batman-adv-core: add clientcount statistics
2014-08-22 14:40:09 +02:00
Matthias Schiffer
80fd91d2b1 Re-introduce 'no_rebroadcast' option for batman-adv compat 15 2014-08-22 13:54:10 +02:00
Matthias Schiffer
0efe5e81fd Update OpenWrt patch 2014-08-22 13:53:48 +02:00
Matthias Schiffer
33a1f2c78e Add support for TP-Link TL-MR3040 v2 2014-08-19 21:15:54 +02:00
Matthias Schiffer
35bb4963df Update kernel configs to 14.07-rc3 2014-08-18 20:26:35 +02:00
Matthias Schiffer
5a2065514f Update upstream repositories 2014-08-18 20:11:12 +02:00
ohrensessel
fea00b3603 calculate rootfs usage instead of overlayfs
in case a target does not use overlayfs
2014-08-18 14:07:23 +02:00
Nils Schneider
4be3b3c750 Merge pull request #171 from eriu/patch-1
fix typo
2014-08-18 13:13:25 +02:00
ohrensessel
4d747c09c4 adapt overlay_usage to match the comments from luebeck 2014-08-18 13:08:54 +02:00
eriu
9baa9ec4d0 fix typo
the command autoupdate not work, so a fix smal fix necessary
2014-08-18 12:47:47 +02:00
ohrensessel
42c43ba2af overlay: rename to clarify value 2014-08-18 12:12:00 +02:00
ohrensessel
0e95c90e21 overlay: change to normalized, fix error handling 2014-08-18 12:10:54 +02:00
ohrensessel
4e76436932 add overlay usage to statistics.d 2014-08-18 11:40:13 +02:00
Matthias Schiffer
54f577e931 Add experimental support for the Ubiquiti UniFi AP Pro 2014-08-17 19:55:45 +02:00
Matthias Schiffer
fe2fc8785e Remove gluon-ath9k-workaround 2014-08-17 19:34:03 +02:00
Matthias Schiffer
70e72db074 Add experimental support for the TP-Link Archer C7 v2 2014-08-16 18:31:55 +02:00
Matthias Schiffer
c504c5e118 ar71xx: correctly detect hardware revision on TP-Link Archer C5 and C7 2014-08-16 17:59:32 +02:00