diff --git a/src/packages/fff/fff-support/Makefile b/src/packages/fff/fff-support/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..a9ebeec3dc68a785269a2a63ad27407f224aa875
--- /dev/null
+++ b/src/packages/fff/fff-support/Makefile
@@ -0,0 +1,41 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=fff-support
+PKG_VERSION:=0.0.1
+PKG_RELEASE:=1
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/fff-support
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/fff-support
+    SECTION:=base
+    CATEGORY:=Freifunk
+    TITLE:=Freifunk-Franken Support Scripts
+    URL:=http://www.freifunk-franken.de
+    DEPENDS:=+@BUSYBOX_CONFIG_ASH
+endef
+
+define Package/fff-support/description
+    This is the Freifunk Franken Firmware support package.
+    This packages provides smaller convenience scripts,
+    not essential to the operation of the Firmware
+endef
+
+define Build/Prepare
+    echo "all: " > $(PKG_BUILD_DIR)/Makefile
+endef
+
+define Build/Configure
+    # nothing
+endef
+
+define Build/Compile
+    # nothing
+endef
+
+define Package/fff-support/install
+    $(CP) ./files/* $(1)/
+endef
+
+$(eval $(call BuildPackage,fff-support))
diff --git a/src/packages/fff/fff-support/files/etc/init.d/fff-userconfig b/src/packages/fff/fff-support/files/etc/init.d/fff-userconfig
new file mode 100755
index 0000000000000000000000000000000000000000..3c3de12041840ad6e4e08075d0e6dfb918341b06
--- /dev/null
+++ b/src/packages/fff/fff-support/files/etc/init.d/fff-userconfig
@@ -0,0 +1,14 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+START=96
+boot() {
+  LOCALCONFIGSCRIPT="/etc/rc.local.fff_userconfig"
+  #add LOCALCONFIGSCRIPT to sysupgrade regardless if it already exists or not to prevent data loss
+  grep -q ^"${LOCALCONFIGSCRIPT}"$ /etc/sysupgrade.conf || echo "$LOCALCONFIGSCRIPT" >> /etc/sysupgrade.conf
+
+  # process user commands
+  [ -f "${LOCALCONFIGSCRIPT}" ] && {
+    sh /etc/rc.local.fff_userconfig
+  }
+}
diff --git a/src/packages/fff/fff/Makefile b/src/packages/fff/fff/Makefile
index e709987da60898dd45fc305e3205b3e7261ad1bb..80ae83b46134045fe5f23c158610d5470c2f55f4 100644
--- a/src/packages/fff/fff/Makefile
+++ b/src/packages/fff/fff/Makefile
@@ -20,7 +20,8 @@ define Package/fff-base
              +fff-uradvd \
              +fff-batman-adv-legacy \
              +fff-fastd \
-             +fff-firewall
+             +fff-firewall \
+             +fff-support
 endef
 
 define Package/fff-base/description