diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..71a9392f668300f7a07db44bc2101d9626daedcd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,18 @@
+# Gluon-Packages
+Additional Gluon-Packages for Freifunk-Stuttgart (Development Versions only).
+The official Packages can be found on "https://github.com/freifunk-stuttgart"
+
+
+ffs-lowmem-patches:
+Adopted patch from Freifunk Rhein-Neckar (FFRN) to reduce memory consumption on nodes with less than 40 MB RAM
+by disabling "haveged" in non-config mode.
+
+ffs-set-segment:
+Nodes will get information on assigned segment number (subnet) by special DNS-Request based on node-id and first
+part of public fastd key to avoid trial an error of fastd-connection process. Result of DNS-Request is dummy IPv6
+with segment number in last field. Originally all 90 peer entries (10 Gateways x 9 Segments) must be tried out until
+match is found, resulting in very long setup/connecting time. 
+
+gluon-config-mode-zip:
+Additional field for zip code on location page in config mode. Information is set to nodeinfo.location and will be
+available by respondd and/or alfred.
diff --git a/gluon-config-mode-zip/src/respondd.c b/gluon-config-mode-zip/src/respondd.c
index b9a7ea96e6b643d8078ec1ccb8d19a1c1a62cb09..5690e4c57e8a97b26f8659351f36cfc28b5abcca 100644
--- a/gluon-config-mode-zip/src/respondd.c
+++ b/gluon-config-mode-zip/src/respondd.c
@@ -99,6 +99,6 @@ static struct json_object * respondd_provider_nodeinfo_zip(void) {
 
 
 const struct respondd_provider_info respondd_providers[] = {
-	{"nodeinfo-zip", respondd_provider_nodeinfo_zip},
+	{"nodeinfo", respondd_provider_nodeinfo_zip},
 	{}
 };