Просмотр исходного кода

fix sysupgrade on overlayfs v23+

Signed-off-by: Imre Kaloz <[email protected]>

SVN-Revision: 43365
Imre Kaloz 11 лет назад
Родитель
Сommit
2e3b84c3b5
1 измененных файлов с 6 добавлено и 1 удалено
  1. 6 1
      package/base-files/files/sbin/sysupgrade

+ 6 - 1
package/base-files/files/sbin/sysupgrade

@@ -109,7 +109,12 @@ add_uci_conffiles() {
 
 add_overlayfiles() {
 	local file="$1"
-	find /overlay/etc/ -type f -o -type l | sed \
+	if [ -d /overlay/upper ]; then
+		local overlaydir="/overlay/upper"
+	else
+		local overlaydir="/overlay"
+	fi
+	find $overlaydir/etc/ -type f -o -type l | sed \
 		-e 's,^/overlay/,/,' \
 		-e '\,/META_[a-zA-Z0-9]*$,d' \
 		-e '\,/functions.sh$,d' \