2015-08-30 19:41:57 +00:00
|
|
|
Gluon 2015.2 (in development)
|
|
|
|
=============================
|
|
|
|
|
2015-11-23 00:43:35 +00:00
|
|
|
Added hardware support
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
2015-08-30 19:41:57 +00:00
|
|
|
|
2015-11-23 00:43:35 +00:00
|
|
|
ar71xx-generic
|
|
|
|
^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* Buffalo
|
|
|
|
|
|
|
|
- WZR-HP-G300N
|
|
|
|
|
|
|
|
* TP-Link
|
|
|
|
|
|
|
|
- CPE210/220/510/520 v1.1
|
|
|
|
- TL-WA901N/ND v1
|
|
|
|
- TL-WR710N v2
|
|
|
|
- TL-WR801N/ND v1, v2
|
|
|
|
- TL-WR841N/ND v10
|
|
|
|
- TL-WR940N v1, v2, v3
|
|
|
|
- TL-WR941ND v6
|
|
|
|
- TL-WR1043N/ND v3
|
|
|
|
|
2015-11-24 03:10:07 +00:00
|
|
|
* Western Digital
|
|
|
|
|
|
|
|
- My Net N600
|
|
|
|
- My Net N750
|
|
|
|
|
2015-11-23 00:43:35 +00:00
|
|
|
x86-xen_domu
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
|
|
|
New target containing the necessary drivers for use in Xen.
|
|
|
|
|
|
|
|
x86-64
|
|
|
|
^^^^^^
|
|
|
|
|
|
|
|
64bit version of `x86-generic`. The generic image can also be used in KVM with VirtIO.
|
2015-08-30 19:41:57 +00:00
|
|
|
|
|
|
|
New features
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
~~~~~~~~
|
|
|
|
|
|
|
|
|
|
|
|
Site changes
|
|
|
|
~~~~~~~~~~~~
|
2015-10-27 23:03:07 +00:00
|
|
|
* ``site.conf``
|
|
|
|
|
|
|
|
- New WLAN configuration
|
|
|
|
|
|
|
|
``wifi24`` and ``wifi5`` need to be updated to a new more flexible format.
|
|
|
|
A configuration using the old format
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
{
|
|
|
|
channel = 1,
|
|
|
|
htmode = 'HT20'
|
|
|
|
ssid = 'entenhausen.freifunk.net',
|
|
|
|
mesh_ssid = 'xe:xx:xx:xx:xx:xx',
|
|
|
|
mesh_bssid = 'xe:xx:xx:xx:xx:xx',
|
|
|
|
mesh_mcast_rate = 12000,
|
|
|
|
}
|
|
|
|
|
|
|
|
would look like this in the new format::
|
|
|
|
|
|
|
|
{
|
|
|
|
channel = 1,
|
|
|
|
ap = {
|
|
|
|
ssid = 'entenhausen.freifunk.net',
|
|
|
|
},
|
|
|
|
ibss = {
|
|
|
|
ssid = 'xe:xx:xx:xx:xx:xx',
|
|
|
|
bssid = 'xe:xx:xx:xx:xx:xx',
|
|
|
|
mcast_rate = 12000,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
The ``htmode`` option has been dropped, the channel width is now always set to 20MHz
|
|
|
|
(see https://github.com/freifunk-gluon/gluon/issues/487 for a discussion of this change).
|
|
|
|
|
|
|
|
In addition to the old IBSS (Adhoc) based meshing, 802.11s-based meshing can be configured
|
|
|
|
using the ``mesh`` section. Example::
|
|
|
|
|
|
|
|
{
|
|
|
|
channel = 1,
|
|
|
|
ap = {
|
|
|
|
ssid = 'entenhausen.freifunk.net',
|
|
|
|
},
|
|
|
|
mesh = {
|
|
|
|
id = 'mesh.entenhausen.freifunk.net', -- can by any string, human-readable or random
|
|
|
|
mcast_rate = 12000,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
While using ``ibss`` and ``mesh`` at the same time is possible, is causes high load in
|
|
|
|
very active meshes, so it is advisable to avoid such configurations.
|
|
|
|
|
|
|
|
- Bandwidth limitation defaults
|
|
|
|
|
|
|
|
The old section ``simple_tc.mesh_vpn`` has been moved to ``fastd_mesh_vpn.bandwidth_limit`` and the ``ifname``
|
|
|
|
field isn't used anymore. What looked like this
|
|
|
|
before
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
simple_tc = {
|
|
|
|
mesh_vpn = {
|
|
|
|
ifname = 'mesh-vpn',
|
|
|
|
enabled = false,
|
|
|
|
limit_ingress = 3000,
|
|
|
|
limit_egress = 200,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
needs to be changed to
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
fastd_mesh_vpn = {
|
|
|
|
-- ...
|
|
|
|
|
|
|
|
bandwidth_limit = {
|
|
|
|
enabled = false,
|
|
|
|
ingress = 3000,
|
|
|
|
egress = 200,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
- opkg repository configuration
|
|
|
|
|
|
|
|
The opkg configuration has been changed to be more flexible and allow specifying custom repositories.
|
|
|
|
Example::
|
|
|
|
|
|
|
|
opkg = {
|
|
|
|
openwrt = 'http://opkg.services.ffeh/openwrt/%n/%v/%S/packages',
|
|
|
|
extra = {
|
|
|
|
modules = 'http://opkg.services.ffeh/modules/gluon-%GS-%GR/%S',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
The keys of the ``extra`` table (like ``modules`` in this example) can be chosen arbitrarily.
|
|
|
|
|
|
|
|
Instead of explicitly specifying the whole URL, using patterns is recommended. The following
|
|
|
|
patterns are understood:
|
|
|
|
|
|
|
|
- ``%n`` is replaced by the OpenWrt version codename (e.g. "chaos_calmer")
|
|
|
|
- ``%v`` is replaced by the OpenWrt version number (e.g. "15.05")
|
|
|
|
- ``%S`` is replaced by the target architecture (e.g. "ar71xx/generic")
|
|
|
|
- ``%GS`` is replaced by the Gluon site code (as specified in ``site.conf``)
|
|
|
|
- ``%GV`` is replaced by the Gluon version
|
|
|
|
- ``%GR`` is replaced by the Gluon release (as specified in ``site.mk``)
|
|
|
|
|
|
|
|
|
2015-08-30 19:41:57 +00:00
|
|
|
* ``i18n/``
|
|
|
|
|
|
|
|
- The translations of ``gluon-config-mode:pubkey`` now have to show the fastd
|
2015-10-27 23:03:07 +00:00
|
|
|
public key itself if desired, making the formatting of the key and whether it is shown at
|
2015-08-30 19:41:57 +00:00
|
|
|
all configurable. To retain the old format, add ``<p>`` to the beginning of
|
|
|
|
your translations and append::
|
|
|
|
|
|
|
|
"</p>"
|
|
|
|
"<div class=\"the-key\">"
|
|
|
|
" # <%= hostname %>"
|
|
|
|
" <br/>"
|
|
|
|
"<%= pubkey %>"
|
|
|
|
"</div>"
|
|
|
|
|
|
|
|
Internals
|
|
|
|
~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
|
|
Known Issues
|
|
|
|
~~~~~~~~~~~~
|