diff options
-rw-r--r-- | CHANGELOG.md | 19 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | make-release.sh | 2 | ||||
-rw-r--r-- | site.conf | 7 | ||||
-rw-r--r-- | site.mk | 4 |
5 files changed, 25 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ab6953b..175b631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,10 @@ -Änderungen mit Firmwareversion 2017.1.7 basierend auf Gluon 2017.1.7 +Änderungen mit Firmwareversion 2017.1.8 basierend auf Gluon 2017.1.8 ==================================================================== Freifunk Kiel spezifische Änderungen: ------------------------------------- - * Neu: gluon-alt-esc [1] erlaubt den lokalen Knoten für andere Knoten als lokalen Exit bereitzustellen - - - [1] - https://github.com/rubo77/gluon-alt-esc + * Kontaktfeld ist nicht mehr Pflicht Offizielle Changelogs zum nachlesen: ------------------------------------ @@ -19,7 +17,20 @@ Offizielle Changelogs zum nachlesen: * https://gluon.readthedocs.io/en/v2017.1.x/releases/v2017.1.5.html * https://gluon.readthedocs.io/en/v2017.1.x/releases/v2017.1.6.html * https://gluon.readthedocs.io/en/v2017.1.x/releases/v2017.1.7.html +* https://gluon.readthedocs.io/en/v2017.1.x/releases/v2017.1.7.html + +<br> + +Änderungen mit Firmwareversion 2017.1.7 basierend auf Gluon 2017.1.7 +==================================================================== + +Freifunk Kiel spezifische Änderungen: +------------------------------------- + + * Neu: gluon-alt-esc [1] erlaubt den lokalen Knoten für andere Knoten als lokalen Exit bereitzustellen + - [1] - https://github.com/rubo77/gluon-alt-esc + <br> Änderungen mit Firmwareversion 2016.2.7 basierend auf Gluon 2016.2.7 @@ -1,7 +1,7 @@ Firmware Site Config for Freifunk Kiel -------------------------------------- -The Freifunk firmware is based on gluon. +The Freifunk nightly firmware is based on gluon branch 2017.1.x You can always find the latest gluon documentation at: @@ -53,6 +53,8 @@ You can validate your changes to this repository by calling the validate_site.sh These Kieler Freifunk firmwares have been released: +- 2016.2.7 + - Based on Gluon 2016.2.7 - 2016.2.6.2 - Based on Gluon 2016.2.6 - Deactivated legacy ibss meshing protocol diff --git a/make-release.sh b/make-release.sh index b51f3d6..b7812d0 100755 --- a/make-release.sh +++ b/make-release.sh @@ -15,7 +15,7 @@ set -u set -e # if version is unset, will use the default nightly version from site.mk -VERSION=${3:-"2017.1.7~ngly$(date '+%y%m%d%H%M')"} +VERSION=${3:-"2017.1.8~ngly$(date '+%y%m%d%H%M')"} # branch must be set to either rc, nightly or stable BRANCH=${2:-"stable"} # must point to valid ecdsa signing key created by ecdsakeygen, relative to Gluon base directory @@ -34,9 +34,10 @@ show_altitude = true, }, -- define if the contact field is obligatory (optional) - owner = { - obligatory = true - }, + -- disabled in 2017.1.8 + -- owner = { + -- obligatory = true + -- }, }, ddhcpd = { @@ -53,8 +53,8 @@ GLUON_SITE_PACKAGES += \ # Always call `make` from the command line with the desired release version! # otherwise this is generated: -#DEFAULT_GLUON_RELEASE := 2017.1.7 -DEFAULT_GLUON_RELEASE := 2017.1.7~ngly$(shell date '+%y%m%d') +#DEFAULT_GLUON_RELEASE := 2017.1.8 +DEFAULT_GLUON_RELEASE := 2017.1.8~ngly$(shell date '+%y%m%d') # Allow overriding the release number from the command line |