summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcshore <cshore@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-02-01 06:28:59 +0000
committercshore <cshore@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-02-01 06:28:59 +0000
commit0bc290370ec8b82427652899eeb301c79fc1b50b (patch)
tree20b8a00203a9a99c017683652eca4b1eb0f52280
parentdd98a11a9c1f4cdf345acbafbaca3dda9bfbcfa4 (diff)
[package]: block-extroot: Fixed the functionality that disables the extroot after a firmware upgrade (which is necessary because of possible kernel version or uClibc version conflicts). It was implented but actually failed to disable extroot when it should have. This commit fixes that.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25269 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/block-extroot/files/55_determine_extroot_sysupgrade8
1 files changed, 5 insertions, 3 deletions
diff --git a/package/block-extroot/files/55_determine_extroot_sysupgrade b/package/block-extroot/files/55_determine_extroot_sysupgrade
index 21af8b018..5a6ad04f8 100644
--- a/package/block-extroot/files/55_determine_extroot_sysupgrade
+++ b/package/block-extroot/files/55_determine_extroot_sysupgrade
@@ -13,13 +13,15 @@ check_set_md5sum() {
er_extroot_md5sum="$(cat $er_md5sum_file)"
fi
+ local er_overlay_file="/overlay/etc/extroot.md5sum"
+
local er_extroot_overlay_md5sum
- if [ -f "/overlay/etc/extroot.md5sum" ]; then
- er_extroot_overlay_md5sum="$(cat /overlay/.extroot.md5sum)"
+ if [ -f "$er_overlay_file" ]; then
+ er_extroot_overlay_md5sum="$(cat $er_overlay_file)"
fi
if [ -z "$er_extroot_overlay_md5sum" ]; then
- cat $er_md5sum_file >/overlay/.extroot.md5sum
+ cat $er_md5sum_file >$er_overlay_file
elif [ "$er_extroot_overlay_md5sum" != "$er_extroot_md5sum" ]; then
pi_extroot_mount_success="false"
mkdir -p /tmp/overlay-disabled