diff --git a/package/gluon-config-mode/Makefile b/package/gluon-config-mode/Makefile
index 2cdac3183161f19116323358749d8486b8d8b5c1..927ca318e9bccf7bf78cb4c94d63eb9267a3deac 100644
--- a/package/gluon-config-mode/Makefile
+++ b/package/gluon-config-mode/Makefile
@@ -4,7 +4,8 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=gluon-config-mode
-PKG_RELEASE:=0.0.1
+PKG_VERSION:=0.3.2.99
+PKG_RELEASE:=1
 
 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
 
@@ -14,7 +15,7 @@ define Package/gluon-config-mode
   SECTION:=gluon
   CATEGORY:=Gluon
   TITLE:=Luci based config mode for user friendly setup of new meshnodes
-  DEPENDS:=+luci-mod-admin-core
+  DEPENDS:=+gluon-core +luci-mod-admin-core
 endef
 
 define Package/gluon-config-mode/description
diff --git a/package/gluon-core/Makefile b/package/gluon-core/Makefile
index 730349808f71e34d6997cf65e172e328e136d8df..c0979a1b8f15c46054581535e21e2e3262d02d25 100644
--- a/package/gluon-core/Makefile
+++ b/package/gluon-core/Makefile
@@ -15,7 +15,7 @@ define Package/gluon-core
 endef
 
 define Package/gluon-core/description
-	The core of the Gluon community wifi mesh firmware framework
+	Gluon community wifi mesh firmware framework: core
 endef
 
 define Build/Prepare
diff --git a/package/gluon-mesh-batman-adv/Makefile b/package/gluon-mesh-batman-adv/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..8a818a808e54ecf141e2e878ba8b3ccbb9f9585c
--- /dev/null
+++ b/package/gluon-mesh-batman-adv/Makefile
@@ -0,0 +1,36 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=gluon-mesh-batman-adv
+PKG_VERSION:=0.3.2.99
+PKG_RELEASE:=1
+
+PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/gluon-mesh-batman-adv
+  SECTION:=gluon
+  CATEGORY:=Gluon
+  TITLE:=Support for batman-adv meshing
+  DEPENDS:=+gluon-core
+endef
+
+define Package/gluon-mesh-batman-adv/description
+	Gluon community wifi mesh firmware framework: batman-adv support
+endef
+
+define Build/Prepare
+	mkdir -p $(PKG_BUILD_DIR)
+endef
+
+define Build/Configure
+endef
+
+define Build/Compile
+endef
+
+define Package/gluon-mesh-batman-adv/install
+	$(CP) ./files/* $(1)/
+endef
+
+$(eval $(call BuildPackage,gluon-mesh-batman-adv))
diff --git a/package/gluon-mesh-vpn-fastd/Makefile b/package/gluon-mesh-vpn-fastd/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..777cb0245b98be6128b94ff7ad14059fef7c75a8
--- /dev/null
+++ b/package/gluon-mesh-vpn-fastd/Makefile
@@ -0,0 +1,36 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=gluon-mesh-vpn-fastd
+PKG_VERSION:=0.3.2.99
+PKG_RELEASE:=1
+
+PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/gluon-mesh-vpn-fastd
+  SECTION:=gluon
+  CATEGORY:=Gluon
+  TITLE:=Support for connecting batman-adv meshes via fastd
+  DEPENDS:=+gluon-core +gluon-mesh-batman-adv +fastd
+endef
+
+define Package/gluon-mesh-vpn-fastd/description
+	Gluon community wifi mesh firmware framework: fastd support
+endef
+
+define Build/Prepare
+	mkdir -p $(PKG_BUILD_DIR)
+endef
+
+define Build/Configure
+endef
+
+define Build/Compile
+endef
+
+define Package/gluon-mesh-vpn-fastd/install
+	$(CP) ./files/* $(1)/
+endef
+
+$(eval $(call BuildPackage,gluon-mesh-vpn-fastd))