From patchwork Thu Dec 12 12:40:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [v2] fff-sysupgrade: move /etc/sysupgrade.sh to /sbin/fff-upgrade.sh From: Adrian Schmutzler X-Patchwork-Id: 1242 Message-Id: <20191212124022.2617-1-freifunk@adrianschmutzler.de> To: franken-dev@freifunk.net Date: Thu, 12 Dec 2019 13:40:22 +0100 The old name "sysupgrade.sh" is easy to be confused with OpenWrt's /sbin/sysupgrade. Rename our script to clearly indicate its purpose. While at it, move from /etc to /sbin, as the former is an odd location for an executable script. Signed-off-by: Adrian Schmutzler Reviewed-by: Robert Langhammer Reviewed-by: Fabian Bläse --- Changes in v2: - Renamed file and folder --- src/packages/fff/fff-sysupgrade/Makefile | 2 +- .../files/{etc/sysupgrade.sh => sbin/fff-upgrade.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/packages/fff/fff-sysupgrade/files/{etc/sysupgrade.sh => sbin/fff-upgrade.sh} (100%) diff --git a/src/packages/fff/fff-sysupgrade/Makefile b/src/packages/fff/fff-sysupgrade/Makefile index 0e6c08ec..0f2e6a1e 100644 --- a/src/packages/fff/fff-sysupgrade/Makefile +++ b/src/packages/fff/fff-sysupgrade/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fff-sysupgrade -PKG_RELEASE:=10 +PKG_RELEASE:=11 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) diff --git a/src/packages/fff/fff-sysupgrade/files/etc/sysupgrade.sh b/src/packages/fff/fff-sysupgrade/files/sbin/fff-upgrade.sh similarity index 100% rename from src/packages/fff/fff-sysupgrade/files/etc/sysupgrade.sh rename to src/packages/fff/fff-sysupgrade/files/sbin/fff-upgrade.sh