diff options
| author | Russell Senior | 2019-11-12 23:33:48 +0000 |
|---|---|---|
| committer | Daniel Golle | 2019-11-14 13:09:07 +0000 |
| commit | d5f509861e606ff680ebc551bcd4253a6545ac8f (patch) | |
| tree | 7406ae2e10e99e5d46f667c3cafcb3fd9519412d | |
| parent | d1fbaa3fbc7806d773e7bff5dde01c76667a1afc (diff) | |
| download | openwrt-d5f509861e606ff680ebc551bcd4253a6545ac8f.tar.gz | |
base-files: add /usr/share/libubox/jshn.sh to sysupgrade stage2
Discovered recent changes had broken sysupgrade for ar71xx mikrotik
rb-493g, traced the problem to missing /usr/share/libubox/jshn.sh after
switching to tmpfs.
Signed-off-by: Russell Senior <russell@personaltelco.net>
| -rwxr-xr-x | package/base-files/files/lib/upgrade/stage2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/upgrade/stage2 b/package/base-files/files/lib/upgrade/stage2 index 5d3d46ee80..41a3b2aeb3 100755 --- a/package/base-files/files/lib/upgrade/stage2 +++ b/package/base-files/files/lib/upgrade/stage2 @@ -48,7 +48,7 @@ switch_to_ramfs() { local file="$(which "$binary" 2>/dev/null)" [ -n "$file" ] && install_bin "$file" done - install_file /etc/resolv.conf /lib/*.sh /lib/functions/*.sh /lib/upgrade/*.sh /lib/upgrade/do_stage2 $RAMFS_COPY_DATA + install_file /etc/resolv.conf /lib/*.sh /lib/functions/*.sh /lib/upgrade/*.sh /lib/upgrade/do_stage2 /usr/share/libubox/jshn.sh $RAMFS_COPY_DATA [ -L "/lib64" ] && ln -s /lib $RAM_ROOT/lib64 |