diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2018-11-30 01:14:11 +0000 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2018-11-30 01:14:11 +0000 |
commit | 7885f3e34e6db561fe4ddbf9d748b5273d86a52d (patch) | |
tree | b26253f59ffa6a1da4dc318c5e0e594f7090f852 /scripts | |
parent | c2cb29e54c24d23d1ee9c3c6ae73c55384d38e95 (diff) |
Avoid using wrong procd package
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build_rootfs.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/build_rootfs.sh b/scripts/build_rootfs.sh index 10f3a93..b4f6ce9 100755 --- a/scripts/build_rootfs.sh +++ b/scripts/build_rootfs.sh @@ -139,7 +139,7 @@ install_packages() { local packages="$1" for pkg in $packages; do echo Install $pkg - $OPKG install $pkg + $OPKG install --force-downgrade $pkg done } @@ -149,7 +149,6 @@ if test -n "$metadata"; then add_file $metadata $metadata_dir $dir fi add_files templates/ $dir/templates/ -add_packages bin/packages/${arch}/${subarch} opkg_update if test -n "$upgrade"; then update_packages |