[source] procd: prepare NAND sysupgrade for making upgraded dynamically linked
LEDE Commits
lede-commits at lists.infradead.org
Mon May 29 14:57:00 PDT 2017
neoraider pushed a commit to source.git, branch master:
https://git.lede-project.org/49328cecdfd182c5a71c6ebb0e0570986323fe64
commit 49328cecdfd182c5a71c6ebb0e0570986323fe64
Author: Matthias Schiffer <mschiffer at universe-factory.net>
AuthorDate: Wed May 3 08:28:05 2017 +0200
procd: prepare NAND sysupgrade for making upgraded dynamically linked
Use install_bin to copy upgraded with all dependencies. The old name
/tmp/upgraded is temporarily retained as a symlink to avoid breaking
things.
Signed-off-by: Matthias Schiffer <mschiffer at universe-factory.net>
---
package/system/procd/files/nand.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/system/procd/files/nand.sh b/package/system/procd/files/nand.sh
index b5f86e0..9c831df 100644
--- a/package/system/procd/files/nand.sh
+++ b/package/system/procd/files/nand.sh
@@ -333,7 +333,7 @@ nand_upgrade_stage1() {
[ "$SAVE_CONFIG" != 1 -a -f "$CONF_TAR" ] &&
rm $CONF_TAR
- ubus call system nandupgrade "{\"path\": \"$path\" }"
+ ubus call system nandupgrade "{\"prefix\": \"$RAM_ROOT\", \"path\": \"$path\" }"
exit 0
}
}
@@ -370,6 +370,7 @@ nand_do_platform_check() {
# $(1): file to be used for upgrade
nand_do_upgrade() {
echo -n $1 > /tmp/sysupgrade-nand-path
- cp /sbin/upgraded /tmp/
+ install_bin /sbin/upgraded
+ ln -s "$RAM_ROOT"/sbin/upgraded /tmp/upgraded
nand_upgrade_stage1
}
More information about the lede-commits
mailing list