base-files: sysupgrade: merge info from "opkg list-changed-conffiles" to backup file list

SVN-Revision: 23233
owl
Jo-Philipp Wich 2010-10-05 07:40:25 +00:00
parent a65975e0d6
commit 978ecae685
2 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files PKG_NAME:=base-files
PKG_RELEASE:=57 PKG_RELEASE:=58
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
PKG_BUILD_DEPENDS:=opkg/host PKG_BUILD_DEPENDS:=opkg/host

View File

@ -55,8 +55,9 @@ EOF
add_uci_conffiles() { add_uci_conffiles() {
local file="$1" local file="$1"
find /etc/config /etc/passwd /etc/group /etc/dropbear \ ( find /etc/config /etc/passwd /etc/group /etc/dropbear \
/etc/firewall.user /etc/rc.local -type f > "$file" /etc/firewall.user /etc/rc.local -type f;
opkg list-changed-conffiles ) | sort -u > "$file"
return 0 return 0
} }