diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-03-25 12:19:52 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-25 16:45:49 +0000 |
commit | a046029eb96cd9307253937ceeadafaaa6d06dce (patch) | |
tree | 05d9157f1690847fd37a73763cf4979391d771d8 /meta/recipes-devtools/rpm/rpm_5.4.9.bb | |
parent | d70df34bcd6b345f600624f289ce688e5dd90f7e (diff) | |
download | openembedded-core-a046029eb96cd9307253937ceeadafaaa6d06dce.tar.gz openembedded-core-a046029eb96cd9307253937ceeadafaaa6d06dce.tar.bz2 openembedded-core-a046029eb96cd9307253937ceeadafaaa6d06dce.zip |
rpm: Add workaround for debugedit-segv
[ YOCTO #4089 ]
On PPC and MIPS, there appears to be a condition that causes
debugedit to segfault. The segfault is related to a call into
the md5hash algorithm, an address of '0', and a size > 0 is passed
causing the access of the address to segv.
This workaround may prove to be the final fix, but it's currently
unclear what the actual cause of the 0 address is.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rpm/rpm_5.4.9.bb')
-rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.4.9.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.9.bb b/meta/recipes-devtools/rpm/rpm_5.4.9.bb index ba24111bf7..e9c8f23c18 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.9.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.9.bb @@ -84,7 +84,8 @@ SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.9-0.20120508.src.rpm;ex file://python-rpm-rpmsense.patch \ file://rpm-reloc-macros.patch \ file://rpm-platform2.patch \ - file://rpm-remove-sykcparse-decl.patch \ + file://rpm-remove-sykcparse-decl.patch \ + file://debugedit-segv.patch \ " # Uncomment the following line to enable platform score debugging |