opkg: take out the bad patch on crack

opkg_unarchive.patch: This patch was trunkating the filenames silently
for no reason. took it out.

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
This commit is contained in:
Nitin A Kamble 2010-07-30 15:21:28 -07:00 committed by Richard Purdie
parent fe69012c2c
commit 983b094ed0
2 changed files with 3 additions and 16 deletions

View File

@ -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);
/*

View File

@ -9,11 +9,11 @@ RDEPENDS_${PN}_virtclass-nativesdk = ""
PACKAGE_ARCH_update-alternatives-cworth = "all"
SRC_URI = "http://opkg.googlecode.com/files/opkg-${PV}.tar.gz \
file://opkg_unarchive.patch \
file://add_vercmp.patch \
file://headerfix.patch"
file://headerfix.patch \
"
PR = "r0"
PR = "r1"
PACKAGES =+ "libopkg-dev libopkg update-alternatives-cworth"