<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-xilinx.git/meta-microblaze/recipes-devtools/binutils, branch honister</title>
<subtitle>Mirror of git.yoctoproject.org/meta-xilinx.git</subtitle>
<id>https://git.enea.com/cgit/linux/meta-xilinx.git/atom?h=honister</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-xilinx.git/atom?h=honister'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/'/>
<updated>2022-02-04T21:24:54+00:00</updated>
<entry>
<title>microblaze binutils: Integrate community binutils contributions</title>
<updated>2022-02-04T21:24:54+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2022-02-02T17:46:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=03f7b76106fc05999421d54cbf5d1d51bc83b25a'/>
<id>urn:sha1:03f7b76106fc05999421d54cbf5d1d51bc83b25a</id>
<content type='text'>
Three bug fixes suggested by community member dednev@rambler.ru:

*elf*-microblaze-relaxation.patch short description:
The roots of invalid data offsets (pointer) after relaxation are in
internal symbol table cache handling. If symbol table was cached while
section processing for garbage collection, the elf_tdata
(abfd)-&gt;symtab_hdr pointer is not NULL, but (Elf_Internal_Sym *)
symtab_hdr-&gt;contents array contains data for local symbols only. But in
the repeated relocation processing there is no check whenever the symbol
index is local (ELF32_R_SYM (irelscan-&gt;r_info) &lt; symtab_hdr-&gt;sh_info) or
global. This leads to the buffer overflow (global symbol index is out of
bounds) and following invalid relocation processing, especially in extra
relocation data modifications (f.e. irelscan-&gt;r_addend could be
decreased by arbitrary values).

*elf*-microblaze-no-keep-memory.patch short description:
There is incorrect newly allocated buffers handling if internal memory
caching is disabled (without --no-keep-memory ld switch). This leads to
possible double free(...) calls for such data and results in unexpected
ld termination with abort(). I've fixed this issue by implementing
similar to the elf32-avr.c data buffer handling.

*elf*-imm-check-for-relaxation.patch short description:
I've reverted Xilinx path to the original GNU binutils bfd code for
microblaze, because this patch incorrectly leaves some "imm -1"
instructions in resulting binary file after relaxation and increases
executable size. If you look at the IMM instruction argument processing
in binutils/gas/config/tc-microblaze.c you will see, that gas checks are
similar to the original bfd microblaze_elf_relax_section(...)

Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>binutils: Upgraade to honister version</title>
<updated>2022-01-14T19:21:32+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-12-02T12:23:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=d458a64c2f6828c41a69b4c223fe42c3c6cdfefd'/>
<id>urn:sha1:d458a64c2f6828c41a69b4c223fe42c3c6cdfefd</id>
<content type='text'>
Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>Revert "binutils: Import gatesgarth version, converted to new variable syntax"</title>
<updated>2022-01-14T19:21:32+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-12-01T20:50:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=0afed0ce3d04c3da4f364c72d76faa591a4d1c60'/>
<id>urn:sha1:0afed0ce3d04c3da4f364c72d76faa591a4d1c60</id>
<content type='text'>
This reverts commit 294443d89dd53435fc0ccc6113c7ec5aff326612.

Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>Revert "binutils: convert away from bbappend"</title>
<updated>2022-01-14T19:21:32+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-12-01T20:49:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=6af2732ce760390b611460e4c31edbab9cdb0dee'/>
<id>urn:sha1:6af2732ce760390b611460e4c31edbab9cdb0dee</id>
<content type='text'>
This reverts commit 7f12056ccc3a978e9b69c380bffc3c04ee20520e.

Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>binutils: convert away from bbappend</title>
<updated>2021-10-25T21:53:19+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-10-12T21:09:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=7f12056ccc3a978e9b69c380bffc3c04ee20520e'/>
<id>urn:sha1:7f12056ccc3a978e9b69c380bffc3c04ee20520e</id>
<content type='text'>
Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>binutils: Import gatesgarth version, converted to new variable syntax</title>
<updated>2021-10-25T21:53:19+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-10-12T21:07:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=294443d89dd53435fc0ccc6113c7ec5aff326612'/>
<id>urn:sha1:294443d89dd53435fc0ccc6113c7ec5aff326612</id>
<content type='text'>
Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>Convert to new override syntax</title>
<updated>2021-09-29T05:12:06+00:00</updated>
<author>
<name>Sai Hari Chandana Kalluri</name>
<email>chandana.kalluri@xilinx.com</email>
</author>
<published>2021-09-29T05:12:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=6921a88182ce51763fcf61273972df99dc2faee5'/>
<id>urn:sha1:6921a88182ce51763fcf61273972df99dc2faee5</id>
<content type='text'>
This is the result of automated script (0.9.0) conversion:

    oe-core/scripts/contrib/convert-overrides.py .

    converting the metadata to use ":" as the override character instead of "_".

Signed-off-by: Sai Hari Chandana Kalluri &lt;chandana.kalluri@xilinx.com&gt;
</content>
</entry>
<entry>
<title>binutis-gdb: Fix size of long, should be 64-bit</title>
<updated>2021-07-14T22:02:41+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-04-30T19:18:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=980ad571ee51f5b796692ec5d3302183122bffbd'/>
<id>urn:sha1:980ad571ee51f5b796692ec5d3302183122bffbd</id>
<content type='text'>
Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>binutils/gdb: Disable hunk from microblaze patch</title>
<updated>2021-07-14T22:02:41+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-04-20T19:23:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=2d94c024e99ad02a5c20816d846a4e9ecdd29a9a'/>
<id>urn:sha1:2d94c024e99ad02a5c20816d846a4e9ecdd29a9a</id>
<content type='text'>
The disabled chunk triggers a compilation failure when trying to build
newlib for microblaze64.

ld: MicroBlaze architecture of input file `/tmp/ccHA6bsQ.o' is incompatible with MicroBlaze output
ld: warning: cannot find entry symbol _start; defaulting to 0000000000000050

Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
<entry>
<title>binutils/gdb: Fix various microblaze 64 issues</title>
<updated>2021-07-14T22:02:40+00:00</updated>
<author>
<name>Mark Hatle</name>
<email>mark.hatle@xilinx.com</email>
</author>
<published>2021-04-19T21:40:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-xilinx.git/commit/?id=b612dbae873024074483a04e868375ec436e56a3'/>
<id>urn:sha1:b612dbae873024074483a04e868375ec436e56a3</id>
<content type='text'>
Issue: CR-1089197
Issue: CR-1093443

Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
</content>
</entry>
</feed>
