7
5
I've just upgraded my OpenWRT router from 10.03.1-rc4 to rc5 (testing).
It looks like all my installed packages are gone. Is that the expected behaviour? If yes, I should be able to just reinstalled them and load the configs from the backup, correct?
2The
cat
part of this command never works for me so instead I do opkg install $(cat /etc/config/packages.list) which works perfectly :) – edude05 – 2014-07-25T13:41:51.550The second command should probably be
cat /etc/config/packages.list | xargs opkg install
. – Julien Langlois – 2019-07-31T17:51:18.140