1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 22:59:40 +02:00

[backfire] merge r23232 and r23233

git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@23236 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-10-05 07:45:22 +00:00
parent a9d5337f66
commit b11d4c0dfc
2 changed files with 5 additions and 3 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files
PKG_RELEASE:=43.5
PKG_RELEASE:=43.6
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
PKG_BUILD_DEPENDS:=opkg/host
@ -53,6 +53,7 @@ define Package/base-files/conffiles
/etc/profile
/etc/shells
/etc/sysctl.conf
/etc/rc.local
$(call $(TARGET)/conffiles)
endef

View File

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