From 77002eb83924e40f67987879c783b510cf5e6b2f Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Tue, 11 Nov 2014 10:48:08 +0100 Subject: [PATCH] COPKGManager: allow update and usage of multiple package sources This allows to use more than one package adress via config file. Example configuration in /etc/opkg/opkg.conf: ... src packages http://www.yourserver.org/pkgs/packages src local 192.168.1.2/pkgs/local ... After Update, all packeges will be listed in the manager list and can be installed, updated ... --- src/gui/opkg_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/opkg_manager.cpp b/src/gui/opkg_manager.cpp index 3eb911c8c..b4a88e93b 100644 --- a/src/gui/opkg_manager.cpp +++ b/src/gui/opkg_manager.cpp @@ -76,7 +76,7 @@ static const string pkg_types[OM_MAX] = OPKG_CL " list ", OPKG_CL " list-installed ", OPKG_CL " list-upgradable ", - OPKG_CL " update ", + OPKG_CL " -A update ", OPKG_CL OPKG_CL_CONFIG_OPTIONS " upgrade ", OPKG_CL OPKG_CL_CONFIG_OPTIONS " remove ", OPKG_CL " info ",