When performing sysupgrade process, opkg should report its conffiles
list.
Signed-off-by: Alexey I. Froloff <[email protected]>
---
package/opkg/Makefile | 2 ++
package/opkg/files/opkg-conffiles.sh | 8 ++++++++
2 files changed, 10 insertions(+), 0 deletions(-)
create mode 100644 package/opkg/files/opkg-conffiles.sh
diff --git a/package/opkg/Makefile b/package/opkg/Makefile
index 6894ae7..40147ce 100644
--- a/package/opkg/Makefile
+++ b/package/opkg/Makefile
@@ -69,7 +69,9 @@ define Package/opkg/install
$(INSTALL_DIR) $(1)/usr/lib/opkg
$(INSTALL_DIR) $(1)/bin
$(INSTALL_DIR) $(1)/etc
+ $(INSTALL_DIR) $(1)/lib/upgrade
$(INSTALL_DATA) ./files/opkg.conf $(1)/etc/
+ $(INSTALL_DATA) ./files/opkg-conffiles.sh $(1)/lib/upgrade/
$(SED) 's,$$$$S,$(PKGARCH),g' $(1)/etc/opkg.conf
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opkg-cl $(1)/bin/opkg
endef
diff --git a/package/opkg/files/opkg-conffiles.sh
b/package/opkg/files/opkg-conffiles.sh
new file mode 100644
index 0000000..21a0dda
--- /dev/null
+++ b/package/opkg/files/opkg-conffiles.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+add_opkg_conffiles() {
+ local file="$1"
+ find /usr/lib/opkg/info -name '*.conffiles' | xargs -r cat >> "$file"
+ return 0
+}
+append sysupgrade_init_conffiles add_opkg_conffiles
--
1.6.5.8
_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel