diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2019-08-16 16:54:38 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2019-08-22 13:47:47 +0200 |
commit | b534ba96110012d2697d19d71b7dcd60bd4cd375 (patch) | |
tree | 1edb2cad5a1df6839b8eeb1db7325ebd8da1f0c4 /package/base-files/files/sbin | |
parent | 2b1a6d263cc84ac6189447fe971b52d8b34cea51 (diff) | |
download | upstream-b534ba96110012d2697d19d71b7dcd60bd4cd375.tar.gz upstream-b534ba96110012d2697d19d71b7dcd60bd4cd375.tar.bz2 upstream-b534ba96110012d2697d19d71b7dcd60bd4cd375.zip |
base-files: pass "save_config" option to the "sysupgrade" method
This explicitly lets stage2 know if config should be preserved.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'package/base-files/files/sbin')
-rwxr-xr-x | package/base-files/files/sbin/sysupgrade | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/sysupgrade b/package/base-files/files/sbin/sysupgrade index 001e644476..15514159b3 100755 --- a/package/base-files/files/sbin/sysupgrade +++ b/package/base-files/files/sbin/sysupgrade @@ -369,6 +369,9 @@ else ubus call system sysupgrade "{ \"prefix\": $(json_string "$RAM_ROOT"), \"path\": $(json_string "$IMAGE"), - \"command\": $(json_string "$COMMAND") + \"command\": $(json_string "$COMMAND"), + \"options\": { + \"save_config\": $SAVE_CONFIG + } }" fi |