forked from remote/site-ffmuc
Compare commits
33 Commits
altdorf
...
experiment
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d116887d1a | ||
|
|
a8d7aca312 | ||
|
|
1e49768ce6 | ||
|
|
b3babe75d6 | ||
|
|
b3dc38716c | ||
|
|
9dacd3de94 | ||
|
|
7f2e8f369f | ||
|
|
d6dfa0e9fd | ||
|
|
52b4bc4289 | ||
|
|
9590d9636e | ||
|
|
b47a2f68ec | ||
|
|
dda8b5b8dc | ||
|
|
52ae9f407b | ||
|
|
77bd955825 | ||
|
|
c8515daac8 | ||
|
|
a9e8748f14 | ||
|
|
7e1e72593f | ||
|
|
54c7ee4053 | ||
|
|
0caf270234 | ||
|
|
3ea1990a14 | ||
|
|
0d7507ab6d | ||
|
|
7ff33f3d44 | ||
|
|
4fd79b52ff | ||
|
|
2973750275 | ||
|
|
f7ef41a3eb | ||
|
|
c3fa483996 | ||
|
|
2cc57e495e | ||
|
|
51d3e91e45 | ||
|
|
11059b8851 | ||
|
|
73fa45d03f | ||
|
|
a8d0a310df | ||
|
|
68e7a2e7ac | ||
|
|
17105d054d |
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1,9 +1,8 @@
|
|||||||
# Freifunk München Firmware Changelog
|
# Freifunk München Firmware Changelog
|
||||||
|
|
||||||
## v2015.5-altdorf
|
## v2015.6
|
||||||
- Added additional Autoupdate Server for altdorf
|
- Updated to Gluon 2015.1.2
|
||||||
- Added additional Autoupdate Signatures for altdorf
|
- Changes: https://gluon.readthedocs.org/en/v2015.1.2/releases/v2015.1.2.html
|
||||||
- Made changes necessary for Altdorf in i18n folder
|
|
||||||
|
|
||||||
## v2015.5
|
## v2015.5
|
||||||
- Updated to Gluon 2015.1.1
|
- Updated to Gluon 2015.1.1
|
||||||
@@ -46,10 +45,6 @@
|
|||||||
- Use internal NTP server 0.ntp.ffmuc.net
|
- Use internal NTP server 0.ntp.ffmuc.net
|
||||||
- Connections from nodes to gateways only over IPv4 for now (MTU issues)
|
- Connections from nodes to gateways only over IPv4 for now (MTU issues)
|
||||||
|
|
||||||
## v2015.1-altdorf
|
|
||||||
- Changed SSID to altdorf.freifunk.net
|
|
||||||
- Changed Autoupdater URLs for altdorf firmware
|
|
||||||
|
|
||||||
## v2015.1
|
## v2015.1
|
||||||
- Updated to Gluon 2014.4 release
|
- Updated to Gluon 2014.4 release
|
||||||
- Autoupdater
|
- Autoupdater
|
||||||
|
|||||||
19
Makefile
19
Makefile
@@ -1,12 +1,13 @@
|
|||||||
GLUON_BUILD_DIR := gluon-build
|
GLUON_BUILD_DIR := gluon-build
|
||||||
GLUON_GIT_URL := https://github.com/freifunk-gluon/gluon.git
|
GLUON_GIT_URL := https://github.com/freifunk-gluon/gluon.git
|
||||||
GLUON_GIT_REF := v2015.1.1
|
GLUON_GIT_REF := 72e554fcff0c9f67c62630a41557eac30fa480a8
|
||||||
|
|
||||||
SECRET_KEY_FILE ?= ${HOME}/.gluon-secret-key
|
SECRET_KEY_FILE ?= ${HOME}/.gluon-secret-key
|
||||||
|
|
||||||
GLUON_TARGETS ?= \
|
GLUON_TARGETS ?= \
|
||||||
ar71xx-generic \
|
ar71xx-generic \
|
||||||
ar71xx-nand \
|
ar71xx-nand \
|
||||||
|
x86-generic \
|
||||||
x86-kvm_guest
|
x86-kvm_guest
|
||||||
|
|
||||||
GLUON_RELEASE := $(shell git describe --tags 2>/dev/null)
|
GLUON_RELEASE := $(shell git describe --tags 2>/dev/null)
|
||||||
@@ -16,7 +17,9 @@ else
|
|||||||
GLUON_BRANCH := experimental
|
GLUON_BRANCH := experimental
|
||||||
endif
|
endif
|
||||||
|
|
||||||
GLUON_MAKE := ${MAKE} -C ${GLUON_BUILD_DIR} \
|
JOBS ?= $(shell cat /proc/cpuinfo | grep processor | wc -l)
|
||||||
|
|
||||||
|
GLUON_MAKE := ${MAKE} -j ${JOBS} -C ${GLUON_BUILD_DIR} \
|
||||||
GLUON_RELEASE=${GLUON_RELEASE} \
|
GLUON_RELEASE=${GLUON_RELEASE} \
|
||||||
GLUON_BRANCH=${GLUON_BRANCH}
|
GLUON_BRANCH=${GLUON_BRANCH}
|
||||||
|
|
||||||
@@ -38,15 +41,15 @@ build: gluon-prepare
|
|||||||
|
|
||||||
manifest: build
|
manifest: build
|
||||||
${GLUON_MAKE} manifest
|
${GLUON_MAKE} manifest
|
||||||
mv ${GLUON_BUILD_DIR}/images .
|
mv ${GLUON_BUILD_DIR}/output .
|
||||||
|
|
||||||
sign: manifest
|
sign: manifest
|
||||||
${GLUON_BUILD_DIR}/contrib/sign.sh ${SECRET_KEY_FILE} images/sysupgrade/${GLUON_BRANCH}.manifest
|
${GLUON_BUILD_DIR}/contrib/sign.sh ${SECRET_KEY_FILE} output/images/sysupgrade/${GLUON_BRANCH}.manifest
|
||||||
|
|
||||||
${GLUON_BUILD_DIR}:
|
${GLUON_BUILD_DIR}:
|
||||||
git clone ${GLUON_GIT_URL} ${GLUON_BUILD_DIR}
|
git clone ${GLUON_GIT_URL} ${GLUON_BUILD_DIR}
|
||||||
|
|
||||||
gluon-prepare: images-clean ${GLUON_BUILD_DIR}
|
gluon-prepare: output-clean ${GLUON_BUILD_DIR}
|
||||||
(cd ${GLUON_BUILD_DIR} \
|
(cd ${GLUON_BUILD_DIR} \
|
||||||
&& git remote set-url origin ${GLUON_GIT_URL} \
|
&& git remote set-url origin ${GLUON_GIT_URL} \
|
||||||
&& git fetch origin \
|
&& git fetch origin \
|
||||||
@@ -57,7 +60,7 @@ gluon-prepare: images-clean ${GLUON_BUILD_DIR}
|
|||||||
gluon-clean:
|
gluon-clean:
|
||||||
rm -rf ${GLUON_BUILD_DIR}
|
rm -rf ${GLUON_BUILD_DIR}
|
||||||
|
|
||||||
images-clean:
|
output-clean:
|
||||||
rm -rf images
|
rm -rf output
|
||||||
|
|
||||||
clean: gluon-clean images-clean
|
clean: gluon-clean output-clean
|
||||||
|
|||||||
30
i18n/de.po
30
i18n/de.po
@@ -12,38 +12,30 @@ msgstr ""
|
|||||||
|
|
||||||
msgid "gluon-config-mode:welcome"
|
msgid "gluon-config-mode:welcome"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Willkommen zum Einrichtungsassistenten für deinen neuen Altdorfer "
|
"Willkommen zum Einrichtungsassistenten für deinen neuen Münchner "
|
||||||
"Freifunk-Knoten. Fülle das folgende Formular deinen Vorstellungen "
|
"Freifunk-Knoten. Fülle das folgende Formular deinen Vorstellungen "
|
||||||
"entsprechend aus und sende es ab."
|
"entsprechend aus und sende es ab."
|
||||||
|
|
||||||
msgid "gluon-config-mode:pubkey"
|
msgid "gluon-config-mode:pubkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dies ist der öffentliche Schlüssel deines Freifunk-Knotens. Der Schlüssel "
|
|
||||||
"wird automatisch auf den Servern des Freifunk Altdorf eingetragen "
|
|
||||||
"sobald eine Internetverbindung hergestellt wurde."
|
|
||||||
"Mit diesem Schlüssel kann sich dein Knoten mit dem Altdorfer Mesh-VPN verbinden. "
|
|
||||||
|
|
||||||
msgid "gluon-config-mode:reboot"
|
msgid "gluon-config-mode:reboot"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<p>Dein Knoten startet gerade neu und wird anschließend versuchen, sich "
|
"<p>Dein Knoten startet gerade neu und wird anschließend versuchen, sich "
|
||||||
"mit anderen Freifunk-Knoten in seiner Nähe zu verbinden. Weitere "
|
"mit anderen Freifunk-Knoten in seiner Nähe zu verbinden. Weitere "
|
||||||
"Informationen zur Altdorfer Freifunk-Community findest du auf "
|
"Informationen zur Münchner Freifunk-Community findest du auf "
|
||||||
"<a href=\"http://www.freifunk-altdorf.de/\">unserer Webseite</a>. Wenn "
|
"<a href=\"http://freifunk-muenchen.de/\">unserer Webseite</a>. Wenn "
|
||||||
"alles geklappt hat, wirst du in ein paar Minuten unter "
|
"alles geklappt hat, wirst du in ein paar Minuten unter "
|
||||||
"<a href=\"http://map.freifunk-altdorf.de\">map.freifunk-altdorf.de</a> "
|
"<a href=\"http://map.freifunk-muenchen.de\">map.freifunk-muenchen.de</a> "
|
||||||
"deinen Knoten finden.</p> "
|
"deinen Knoten finden.</p> "
|
||||||
"<p>Um zu dieser Konfigurationsseite zurückzugelangen, drücke im normalen "
|
"<p>Um zu dieser Konfigurationsseite zurückzugelangen, drücke im normalen "
|
||||||
"Betrieb für drei Sekunden den Reset-Button. Das Gerät wird dann im Config "
|
"Betrieb für drei Sekunden den Reset-Button. Das Gerät wird dann im Config "
|
||||||
"Mode neustarten.</p>"
|
"Mode neustarten.</p>"
|
||||||
"<p>Wenn Du mehr über Freifunk in Altdorf erfahren möchtest, dann besuche "
|
"<p>Wenn Du mehr über Freifunk in München erfahren möchtest, dann besuche "
|
||||||
"uns doch auf unserem Treffen (siehe Webseite). "
|
"uns doch auf unserem monatlichen Treffen (siehe Webseite). Um mehr "
|
||||||
|
"auf die Entwicklung zu nehmen, hast Du als Knotenbetreiber "
|
||||||
|
"zusätzlich die Möglichkeit in unserem "
|
||||||
|
"<a href=\"https://lqfb.freifunk-muenchen.de\">Abstimmungs- und Dokumentationssystem</a> "
|
||||||
|
"mitzumachen. Voraussetzung ist eine persönliche Anmeldung auf einem "
|
||||||
|
"der Treffen.</p> "
|
||||||
"<p>Viel Spaß mit deinem Knoten und der Erkundung von Freifunk!</p>"
|
"<p>Viel Spaß mit deinem Knoten und der Erkundung von Freifunk!</p>"
|
||||||
"Melde Dich bitte unbedingt noch bei unserer Mailingliste an! "
|
|
||||||
"<a href=\"http://freifunk-altdorf.de/verein/mailingliste.php\">altdorf@freifunk.net</a> "
|
|
||||||
"Damit informieren wir Dich wenn es unvorhergesehen Störungen im Freifunk- Netz "
|
|
||||||
"geben sollte oder falls Dein Router einen neue Firmware benötigt, "
|
|
||||||
"die nicht über ein automatisches Update aufgespielt werden kann. "
|
|
||||||
"Bestenfalls einmal im Monat weisen wir auf Zeit und Ort unseres nächsten Treffen hin. "
|
|
||||||
"Keine Angst wir versenden garantiert keine Spam-Mails und geben Deine "
|
|
||||||
"Mailadresse garantiert nicht weiter.</p> "
|
|
||||||
"Dein Freifunk Team Altdorf "
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid "gluon-config-mode:welcome"
|
msgid "gluon-config-mode:welcome"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Welcome the the setup wizard of your new Freifunk Altdorf node. "
|
"Welcome the the setup wizard of your new Freifunk Munich node. "
|
||||||
"Please fill out the following form and transmit it."
|
"Please fill out the following form and transmit it."
|
||||||
|
|
||||||
msgid "gluon-config-mode:pubkey"
|
msgid "gluon-config-mode:pubkey"
|
||||||
@@ -22,7 +22,7 @@ msgid "gluon-config-mode:reboot"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"<p>Your node is currently rebooting and will try to connect to other "
|
"<p>Your node is currently rebooting and will try to connect to other "
|
||||||
"nearby Freifunk nodes. It should appear on our map at "
|
"nearby Freifunk nodes. It should appear on our map at "
|
||||||
"<a href=\"http://map.freifunk-altdorf.de.de\">map.freifunk-altdorf.de</a> "
|
"<a href=\"http://map.freifunk-muenchen.de\">map.freifunk-muenchen.de</a> "
|
||||||
"in a few minutes.</p> "
|
"in a few minutes.</p> "
|
||||||
"<p>To get back to this configuration interface, press the reset button for "
|
"<p>To get back to this configuration interface, press the reset button for "
|
||||||
"3 seconds during normal operation. The device will then reboot into config "
|
"3 seconds during normal operation. The device will then reboot into config "
|
||||||
|
|||||||
93
site.conf
93
site.conf
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
hostname_prefix = '',
|
hostname_prefix = '',
|
||||||
site_name = 'Freifunk Altdorf',
|
site_name = 'Freifunk München',
|
||||||
site_code = 'ffmuc',
|
site_code = 'ffmuc',
|
||||||
opkg_repo = 'http://openwrt.draic.info/barrier_breaker/14.07/%S/packages',
|
opkg_repo = 'http://openwrt.draic.info/barrier_breaker/14.07/%S/packages',
|
||||||
|
|
||||||
@@ -15,21 +15,43 @@
|
|||||||
regdom = 'DE',
|
regdom = 'DE',
|
||||||
|
|
||||||
wifi24 = {
|
wifi24 = {
|
||||||
ssid = 'altdorf.freifunk.net',
|
|
||||||
channel = 6,
|
channel = 6,
|
||||||
htmode = 'HT20',
|
htmode = 'HT20',
|
||||||
mesh_ssid = 'mesh.ffmuc',
|
ap = {
|
||||||
mesh_bssid = '02:0E:8E:1E:61:17',
|
ssid = 'muenchen.freifunk.net',
|
||||||
mesh_mcast_rate = 12000,
|
},
|
||||||
|
mesh = {
|
||||||
|
id = 'ffmuc-mesh',
|
||||||
|
mcast_rate = 12000,
|
||||||
|
},
|
||||||
|
ibss = {
|
||||||
|
ssid = 'mesh.ffmuc',
|
||||||
|
bssid = '02:0E:8E:1E:61:17',
|
||||||
|
mcast_rate = 12000,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
wifi5 = {
|
wifi5 = {
|
||||||
ssid = 'altdorf.freifunk.net',
|
|
||||||
channel = 44,
|
channel = 44,
|
||||||
htmode = 'HT40+',
|
htmode = 'HT40+',
|
||||||
mesh_ssid = 'mesh.ffmuc',
|
ap = {
|
||||||
mesh_bssid = '02:0E:8E:1E:61:17',
|
ssid = 'muenchen.freifunk.net',
|
||||||
mesh_mcast_rate = 12000,
|
},
|
||||||
|
mesh = {
|
||||||
|
id = 'ffmuc-mesh',
|
||||||
|
mcast_rate = 12000,
|
||||||
|
},
|
||||||
|
ibss = {
|
||||||
|
ssid = 'mesh.ffmuc',
|
||||||
|
bssid = '02:0E:8E:1E:61:17',
|
||||||
|
mcast_rate = 12000,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
mesh = {
|
||||||
|
batman_adv = {
|
||||||
|
gw_sel_class = 3,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
next_node = {
|
next_node = {
|
||||||
@@ -48,57 +70,57 @@
|
|||||||
gw03 = { --[[ fpletz ]]
|
gw03 = { --[[ fpletz ]]
|
||||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw03.ffmuc.net" port 10000',
|
'ipv4 "gw03.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw03.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw03.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
gw04 = {
|
gw04 = {
|
||||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw04.ffmuc.net" port 10000',
|
'ipv4 "gw04.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw04.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw04.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
gw05 = {
|
gw05 = {
|
||||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw05.ffmuc.net" port 10000',
|
'ipv4 "gw05.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw05.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw05.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
gw06 = {
|
gw06 = {
|
||||||
key = 'd6834aa47a14358d804139630812276b3297e767d159c9cfd13fa6fb638000e0',
|
key = 'd6834aa47a14358d804139630812276b3297e767d159c9cfd13fa6fb638000e0',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw06.ffmuc.net" port 10000',
|
'ipv4 "gw06.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw06.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw06.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
gw07 = {
|
gw07 = {
|
||||||
key = '77b5f5189c360b245e1c934941468cc9cf57f0646465be5765593a95e54449d6',
|
key = '77b5f5189c360b245e1c934941468cc9cf57f0646465be5765593a95e54449d6',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw07.ffmuc.net" port 10000',
|
'ipv4 "gw07.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw07.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw07.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
gw08 = {
|
gw08 = {
|
||||||
key = 'e476fb3a72365b550a23b587c0962eed362ed0c237175552b3261d22daaa2055',
|
key = 'e476fb3a72365b550a23b587c0962eed362ed0c237175552b3261d22daaa2055',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw08.ffmuc.net" port 10000',
|
'ipv4 "gw08.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw08.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw08.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
gw09 = {
|
gw09 = {
|
||||||
key = 'b86f436c9bb13b308dc92c3889fd468c46679d9df0bf4892244372ab415694d0',
|
key = 'b86f436c9bb13b308dc92c3889fd468c46679d9df0bf4892244372ab415694d0',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw09.ffmuc.net" port 10000',
|
'ipv4 "gw09.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw09.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw09.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
gw10 = {
|
gw10 = {
|
||||||
key = 'c04358d4818ec108fa4715e4517300cb2d0fa848dfa872770c4b8487d525e8bf',
|
key = 'c04358d4818ec108fa4715e4517300cb2d0fa848dfa872770c4b8487d525e8bf',
|
||||||
remotes = {
|
remotes = {
|
||||||
'ipv4 "gw10.ffmuc.net" port 10000',
|
'ipv4 "gw10.ffmuc.net" port 10001',
|
||||||
'ipv4 "gw10.freifunk-muenchen.de" port 10000',
|
'ipv4 "gw10.freifunk-muenchen.de" port 10001',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -113,17 +135,12 @@
|
|||||||
stable = {
|
stable = {
|
||||||
name = 'stable',
|
name = 'stable',
|
||||||
mirrors = {
|
mirrors = {
|
||||||
'http://fw1.tecff.de/altdorf/stable/sysupgrade/',
|
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||||
'http://fw2.tecff.de/altdorf/stable/sysupgrade/',
|
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||||
'http://firmware.ffmuc.net/altdorf/stable/sysupgrade/',
|
|
||||||
'http://[fdef:ffc0:4fff::130]/altdorf/stable/sysupgrade/',
|
|
||||||
},
|
},
|
||||||
probability = 0.1,
|
probability = 0.1,
|
||||||
good_signatures = 2,
|
good_signatures = 2,
|
||||||
pubkeys = {
|
pubkeys = {
|
||||||
|
|
||||||
'a9ba1d78b5d48d1539c5c6824ca62d8c7ce7a79913d2f3fcf28e4f7fe4e777a8', -- walter hartl
|
|
||||||
'ed09d23552225f71da8a3763b17a09eb8e126ad3c4938275bd51d6d564e0ac0b', -- walter henz
|
|
||||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||||
@@ -133,18 +150,13 @@
|
|||||||
experimental = {
|
experimental = {
|
||||||
name = 'experimental',
|
name = 'experimental',
|
||||||
mirrors = {
|
mirrors = {
|
||||||
'http://fw1.tecff.de/altdorf/experimental/sysupgrade/',
|
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||||
'http://fw2.tecff.de/altdorf/experimental/sysupgrade/',
|
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||||
'http://firmware.ffmuc.net/altdorf/experimental/sysupgrade/',
|
|
||||||
'http://[fdef:ffc0:4fff::130]/altdorf/experimental/sysupgrade/',
|
|
||||||
},
|
},
|
||||||
probability = 0.5,
|
probability = 0.5,
|
||||||
good_signatures = 1,
|
good_signatures = 1,
|
||||||
pubkeys = {
|
pubkeys = {
|
||||||
|
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||||
'a9ba1d78b5d48d1539c5c6824ca62d8c7ce7a79913d2f3fcf28e4f7fe4e777a8', -- walter hartl
|
|
||||||
'ed09d23552225f71da8a3763b17a09eb8e126ad3c4938275bd51d6d564e0ac0b', -- walter henz
|
|
||||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -160,4 +172,3 @@
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
-- vim: set ft=lua:ts=2:sw=2:et
|
-- vim: set ft=lua:ts=2:sw=2:et
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user