diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-01-13 22:06:05 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-01-13 22:06:25 +0000 |
commit | a717961f6e0e016e447eeca5f5f5d3a81354c61c (patch) | |
tree | bbedfba6ebef809e6bc303954d3ec743374693d3 /meta/packages/opkg/files | |
parent | 357282e2111fa6b84b34185d9916b0c17119480c (diff) | |
download | openembedded-core-a717961f6e0e016e447eeca5f5f5d3a81354c61c.tar.gz openembedded-core-a717961f6e0e016e447eeca5f5f5d3a81354c61c.tar.bz2 openembedded-core-a717961f6e0e016e447eeca5f5f5d3a81354c61c.tar.xz openembedded-core-a717961f6e0e016e447eeca5f5f5d3a81354c61c.zip |
opkg: Convert to use BBCLASSEXTEND
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/opkg/files')
-rw-r--r-- | meta/packages/opkg/files/fix_prototype.patch | 39 | ||||
-rw-r--r-- | meta/packages/opkg/files/opkg-fix-gcc-warnings.patch | 53 | ||||
-rw-r--r-- | meta/packages/opkg/files/opkg_unarchive.patch | 13 | ||||
-rw-r--r-- | meta/packages/opkg/files/sighandlerfix.patch | 14 |
4 files changed, 0 insertions, 119 deletions
diff --git a/meta/packages/opkg/files/fix_prototype.patch b/meta/packages/opkg/files/fix_prototype.patch deleted file mode 100644 index 4be881aa7..000000000 --- a/meta/packages/opkg/files/fix_prototype.patch +++ /dev/null @@ -1,39 +0,0 @@ -Index: opkg/libopkg/opkg_utils.c -=================================================================== ---- opkg.orig/libopkg/opkg_utils.c 2008-10-23 09:36:52.000000000 +0100 -+++ opkg/libopkg/opkg_utils.c 2008-10-23 09:37:05.000000000 +0100 -@@ -165,7 +165,7 @@ - } - - --void free_error_list(){ -+void free_error_list(void){ - struct errlist *err_tmp_lst; - - err_tmp_lst = error_list; -Index: opkg/libopkg/opkg_utils.h -=================================================================== ---- opkg.orig/libopkg/opkg_utils.h 2008-10-23 09:36:50.000000000 +0100 -+++ opkg/libopkg/opkg_utils.h 2008-10-23 09:37:13.000000000 +0100 -@@ -23,7 +23,7 @@ - - void push_error_list(struct errlist **errors,char * msg); - void reverse_error_list(struct errlist **errors); --void free_error_list(); -+void free_error_list(void); - - int get_available_blocks(char * filesystem); - char **read_raw_pkgs_from_file(const char *file_name); -Index: opkg/libopkg/opkg_cmd.c -=================================================================== ---- opkg.orig/libopkg/opkg_cmd.c 2008-10-23 12:02:29.000000000 +0100 -+++ opkg/libopkg/opkg_cmd.c 2008-10-23 12:02:53.000000000 +0100 -@@ -151,7 +151,7 @@ - error_list = error_list->next; - - } -- free_error_list(&error_list); -+ free_error_list(); - } - - } diff --git a/meta/packages/opkg/files/opkg-fix-gcc-warnings.patch b/meta/packages/opkg/files/opkg-fix-gcc-warnings.patch deleted file mode 100644 index 149542ed6..000000000 --- a/meta/packages/opkg/files/opkg-fix-gcc-warnings.patch +++ /dev/null @@ -1,53 +0,0 @@ -diff -urN opkg.orig/libopkg/libopkg.c opkg/libopkg/libopkg.c ---- opkg.orig/libopkg/libopkg.c 2009-02-09 10:49:40.000000000 +0000 -+++ opkg/libopkg/libopkg.c 2009-02-09 10:50:23.000000000 +0000 -@@ -38,7 +38,7 @@ - if ( level == OPKG_ERROR ){ - push_error_list(&error_list, msg); - } else -- printf(msg); -+ printf("%s", msg); - } - return 0; - } -@@ -71,7 +71,7 @@ - char* default_opkg_response_callback(char *question) - { - char *response = NULL; -- printf(question); -+ printf("%s", question); - fflush(stdout); - do { - response = (char *)file_read_line_alloc(stdin); -diff -urN opkg.orig/libopkg/opkg_cmd.c opkg/libopkg/opkg_cmd.c ---- opkg.orig/libopkg/opkg_cmd.c 2009-02-09 10:49:40.000000000 +0000 -+++ opkg/libopkg/opkg_cmd.c 2009-02-09 10:50:23.000000000 +0000 -@@ -369,7 +369,7 @@ - perror (ctx->statedir); - - sprintf_alloc (&cmd, "rm -rf %s", ctx->statedir); -- system (cmd); -+ err = system (cmd); - free (cmd); - - free (ctx->statedir); -diff -urN opkg.orig/libopkg/pkg.c opkg/libopkg/pkg.c ---- opkg.orig/libopkg/pkg.c 2009-02-09 10:49:40.000000000 +0000 -+++ opkg/libopkg/pkg.c 2009-02-09 10:52:49.000000000 +0000 -@@ -1052,6 +1052,7 @@ - - void pkg_print_info(pkg_t *pkg, FILE *file) - { -+ int t = 0; - char * buff; - if (pkg == NULL) { - return; -@@ -1061,7 +1062,7 @@ - if ( buff == NULL ) - return; - if (strlen(buff)>2){ -- fwrite(buff, 1, strlen(buff), file); -+ t = fwrite(buff, 1, strlen(buff), file); /* TODO: check t */ - } - free(buff); - } diff --git a/meta/packages/opkg/files/opkg_unarchive.patch b/meta/packages/opkg/files/opkg_unarchive.patch deleted file mode 100644 index 9e5ccfb71..000000000 --- a/meta/packages/opkg/files/opkg_unarchive.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- trunk/libbb/unarchive.c.orig 2009-02-11 22:14:58.000000000 +0100 -+++ trunk/libbb/unarchive.c 2009-02-11 22:15:07.000000000 +0100 -@@ -606,6 +606,10 @@ - tar_entry->name = concat_path_file(tar.formated.prefix, tar.formated.name); - } - -+ if (strlen(tar_entry->name) > 100) { -+ tar_entry->name[100] = 0; -+ } -+ - // tar_entry->name = xstrdup(tar.formated.name); - - /* diff --git a/meta/packages/opkg/files/sighandlerfix.patch b/meta/packages/opkg/files/sighandlerfix.patch deleted file mode 100644 index b60245f58..000000000 --- a/meta/packages/opkg/files/sighandlerfix.patch +++ /dev/null @@ -1,14 +0,0 @@ -Index: opkg/libopkg/opkg_install.c -=================================================================== ---- opkg.orig/libopkg/opkg_install.c 2009-05-23 00:20:04.000000000 +0100 -+++ opkg/libopkg/opkg_install.c 2009-05-23 00:20:09.000000000 +0100 -@@ -21,7 +21,9 @@ - #include <glob.h> - #include <time.h> - #include <signal.h> -+#ifndef __USE_GNU - typedef void (*sighandler_t)(int); -+#endif - - #include "pkg.h" - #include "pkg_hash.h" |