diff options
| author | Boris Krasnovskiy | 2024-10-13 00:01:57 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-10-13 12:18:21 +0000 |
| commit | a9402a83e6cd28df2bcdd062888a16db2f4ef3e1 (patch) | |
| tree | eb8f34b9c763a7685bebedd5b2518af806ac4e6b | |
| parent | d21720fa90c89b571805ff73b223c38e23ad5bf6 (diff) | |
| download | openwrt-a9402a83e6cd28df2bcdd062888a16db2f4ef3e1.tar.gz | |
mvebu: fix sysupgrade failure
Linksys devices do no pass $cmd at all.
Fixes: #16148
Fixes: 715634e6d144 ("base-files: upgrade: nand: use "cmd" argument for extracting command")
Signed-off-by: Boris Krasnovskiy <borkra@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16690
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | package/base-files/files/lib/upgrade/nand.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/upgrade/nand.sh b/package/base-files/files/lib/upgrade/nand.sh index 9fa3cd2ddd..ca302557c8 100644 --- a/package/base-files/files/lib/upgrade/nand.sh +++ b/package/base-files/files/lib/upgrade/nand.sh @@ -300,7 +300,7 @@ nand_upgrade_fit() { # Write images in the TAR file to MTD partitions and/or UBI volumes as required nand_upgrade_tar() { local tar_file="$1" - local cmd="$2" + local cmd="${2:-cat}" local jffs2_markers="${CI_JFFS2_CLEAN_MARKERS:-0}" # WARNING: This fails if tar contains more than one 'sysupgrade-*' directory. |