From bf29f6455fd57578f26cff7e3aceaaf88b6778ca Mon Sep 17 00:00:00 2001 From: "Alexandros C. Couloumbis" Date: Mon, 13 Sep 2010 08:13:36 +0000 Subject: package/opkg: update to r563 SVN-Revision: 23050 --- package/opkg/patches/010-remove-flag.patch | 60 ------------------------------ 1 file changed, 60 deletions(-) delete mode 100644 package/opkg/patches/010-remove-flag.patch (limited to 'package/opkg/patches/010-remove-flag.patch') diff --git a/package/opkg/patches/010-remove-flag.patch b/package/opkg/patches/010-remove-flag.patch deleted file mode 100644 index 6659c29..0000000 --- a/package/opkg/patches/010-remove-flag.patch +++ /dev/null @@ -1,60 +0,0 @@ ---- a/libopkg/opkg_cmd.c -+++ b/libopkg/opkg_cmd.c -@@ -745,49 +745,6 @@ opkg_remove_cmd(int argc, char **argv) - } - - static int --opkg_flag_cmd(int argc, char **argv) --{ -- int i; -- pkg_t *pkg; -- const char *flags = argv[0]; -- -- signal(SIGINT, sigint_handler); -- -- for (i=1; i < argc; i++) { -- if (conf->restrict_to_default_dest) { -- pkg = pkg_hash_fetch_installed_by_name_dest(argv[i], -- conf->default_dest); -- } else { -- pkg = pkg_hash_fetch_installed_by_name(argv[i]); -- } -- -- if (pkg == NULL) { -- opkg_msg(ERROR, "Package %s is not installed.\n", argv[i]); -- continue; -- } -- if (( strcmp(flags,"hold")==0)||( strcmp(flags,"noprune")==0)|| -- ( strcmp(flags,"user")==0)||( strcmp(flags,"ok")==0)) { -- pkg->state_flag = pkg_state_flag_from_str(flags); -- } -- -- /* -- * Useful if a package is installed in an offline_root, and -- * should be configured by opkg-cl configure at a later date. -- */ -- if (( strcmp(flags,"installed")==0)||( strcmp(flags,"unpacked")==0)){ -- pkg->state_status = pkg_state_status_from_str(flags); -- } -- -- opkg_state_changed++; -- opkg_msg(NOTICE, "Setting flags for package %s to %s.\n", -- pkg->name, flags); -- } -- -- write_status_files_if_changed(); -- return 0; --} -- --static int - opkg_files_cmd(int argc, char **argv) - { - pkg_t *pkg; -@@ -1169,7 +1126,6 @@ static opkg_cmd_t cmds[] = { - {"list_upgradable", 0, (opkg_cmd_fun_t)opkg_list_upgradable_cmd, PFM_SOURCE}, - {"list-upgradable", 0, (opkg_cmd_fun_t)opkg_list_upgradable_cmd, PFM_SOURCE}, - {"info", 0, (opkg_cmd_fun_t)opkg_info_cmd, 0}, -- {"flag", 1, (opkg_cmd_fun_t)opkg_flag_cmd, PFM_DESCRIPTION|PFM_SOURCE}, - {"status", 0, (opkg_cmd_fun_t)opkg_status_cmd, PFM_DESCRIPTION|PFM_SOURCE}, - {"install", 1, (opkg_cmd_fun_t)opkg_install_cmd, PFM_DESCRIPTION|PFM_SOURCE}, - {"remove", 1, (opkg_cmd_fun_t)opkg_remove_cmd, PFM_DESCRIPTION|PFM_SOURCE}, -- cgit v1.1