fix sysupgrade on overlayfs v23+
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 43365
This commit is contained in:
parent
cf0c966d9a
commit
2e3b84c3b5
1 changed files with 6 additions and 1 deletions
|
@ -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' \
|
||||
|
|
Loading…
Reference in a new issue