From 6a43b7dfdb8bf2819f00c9a1db1a4b622ffb935c Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Thu, 12 Dec 2019 13:40:22 +0100 Subject: [PATCH] fff-sysupgrade: move /etc/sysupgrade.sh to /sbin/fff-upgrade.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- 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