"uci: Entry not found" after "opkg upgrade"

Hi,

Upgraded to v17.01.4 yesterday. Today I checked for upgradable packages and upgraded them with opkg list-upgradable | awk -F ' - ' '{print $1}' | xargs opkg upgrade.

root@LEDE:~# opkg list-upgradable | awk -F ' - ' '{print $1}' | xargs opkg upgrade
Upgrading luci-app-adblock on root from git-17.290.79498-d3f0685-1 to git-17.291.49911-7fc88b4-1...
Downloading http://downloads.lede-project.org/releases/17.01.4/packages/mips_24kc/luci/luci-app-adblock_git-17.291.49911-7fc88b4-1_all.ipk
...
Configuring luci-lib-jsonc.
Configuring luci-app-adblock.
uci: Entry not found
Configuring luci-lib-ip.
Configuring luci-theme-bootstrap.
uci: Entry not found
Configuring luci-lib-nixio.
Configuring luci-base.
Configuring luci-mod-admin-full.
uci: Entry not found
Configuring luci-app-firewall.
Configuring luci-proto-ppp.
Configuring luci-app-vnstat.
uci: Entry not found
Configuring luci-proto-ipv6.
Configuring luci.
Configuring luci-app-openvpn.

I never had these uci: Entry not found errors before, can I ignore them?

Thx for your help

see this quote

During the update process, some configuration files might be modified, using the "uci" command. If that command finds a wrong configuration file (and it might be a completely unrelated file), it will complain. Execute uci show and see if the error appears.

found/fixed the issue

I had some backup config files in /etc/config, after I removed this backup config files all uci: Entry not found errors are gone :slight_smile:

1 Like

I usually use ( beginning 17.01.1 worked in .2 and .3 and look's like .4 works too)

curl -k -sSL https://raw.githubusercontent.com/tavinus/opkg-upgrade/master/opkg-upgrade.sh -o ./opkg-upgrade.sh && chmod +x ./opkg-upgrade.sh && ./opkg-upgrade.sh

 

I found this on a post from openwrt forum the script is here if you want to check it.