aboutsummaryrefslogtreecommitdiffstats
path: root/package/opkg/patches/009-remove-upgrade-all.patch
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-10-22 15:15:19 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-10-22 15:15:19 +0000
commit41d87fb7a839ac2569316370cad331b51116cee7 (patch)
tree196ef68435ca631b64b9cd676e75eff1f321593a /package/opkg/patches/009-remove-upgrade-all.patch
parentbd44398aea99f783f279c36bcfe32638bbf8923b (diff)
downloadmaster-187ad058-41d87fb7a839ac2569316370cad331b51116cee7.tar.gz
master-187ad058-41d87fb7a839ac2569316370cad331b51116cee7.tar.bz2
master-187ad058-41d87fb7a839ac2569316370cad331b51116cee7.zip
[package] opkg:
- re-enable upgrade and restrict it to signle packages, fix usage text - only read package descriptions if they're actually needed (almost never), saves even more space when parsing package lists - refresh patches git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18120 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg/patches/009-remove-upgrade-all.patch')
-rw-r--r--package/opkg/patches/009-remove-upgrade-all.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/package/opkg/patches/009-remove-upgrade-all.patch b/package/opkg/patches/009-remove-upgrade-all.patch
new file mode 100644
index 0000000000..320f710058
--- /dev/null
+++ b/package/opkg/patches/009-remove-upgrade-all.patch
@@ -0,0 +1,40 @@
+--- a/libopkg/args.c
++++ b/libopkg/args.c
+@@ -263,7 +263,7 @@
+
+ printf("\nPackage Manipulation:\n");
+ printf("\tupdate Update list of available packages\n");
+- printf("\tupgrade Upgrade all installed packages to latest version\n");
++ printf("\tupgrade <pkg> Upgrade package to latest version\n");
+ printf("\tinstall <pkg> Download and install <pkg> (and dependencies)\n");
+ printf("\tinstall <file.opk> Install package <file.opk>\n");
+ printf("\tconfigure [<pkg>] Configure unpacked packages\n");
+--- a/libopkg/opkg_cmd.c
++++ b/libopkg/opkg_cmd.c
+@@ -79,7 +79,7 @@
+ array for easier maintenance */
+ static opkg_cmd_t cmds[] = {
+ {"update", 0, (opkg_cmd_fun_t)opkg_update_cmd},
+- {"upgrade", 0, (opkg_cmd_fun_t)opkg_upgrade_cmd},
++ {"upgrade", 1, (opkg_cmd_fun_t)opkg_upgrade_cmd},
+ {"list", 0, (opkg_cmd_fun_t)opkg_list_cmd},
+ {"list_installed", 0, (opkg_cmd_fun_t)opkg_list_installed_cmd},
+ {"list_upgradable", 0, (opkg_cmd_fun_t)opkg_list_upgradable_cmd},
+@@ -640,17 +640,6 @@
+ opkg_install_by_name(conf, arg);
+ }
+ }
+- } else {
+- pkg_vec_t *installed = pkg_vec_alloc();
+-
+- pkg_info_preinstall_check(conf);
+-
+- pkg_hash_fetch_all_installed(&conf->pkg_hash, installed);
+- for (i = 0; i < installed->len; i++) {
+- pkg = installed->pkgs[i];
+- opkg_upgrade_pkg(conf, pkg);
+- }
+- pkg_vec_free(installed);
+ }
+
+ /* recheck to verify that all dependences are satisfied */