search for: bcopyxx

Displaying 4 results from an estimated 4 matches for "bcopyxx".

Did you mean: bcopy
2014 Mar 01
1
[syslinux:master] core, bios: Move __syslinux_shuffler_size to assembly
...; > Putting the __syslinux_shuffler_size in a C file by itself caused it > to not get included in the core, causing failures. Put it in assembly > to make sure it really gets included there. > > Signed-off-by: H. Peter Anvin <hpa at linux.intel.com> > > --- > core/bcopyxx.inc | 7 +++++++ > core/shuffler.c | 8 -------- > 2 files changed, 7 insertions(+), 8 deletions(-) > > diff --git a/core/bcopyxx.inc b/core/bcopyxx.inc > index cfdda0b..2bdc053 100644 > --- a/core/bcopyxx.inc > +++ b/core/bcopyxx.inc > @@ -316,5 +316,12 @@ RM_IDT_ptr: dw...
2011 Mar 06
1
[PATCH] core: Fix 'trackbuf' descriptor list byte length
...a Linux bzImage, with and without an initrd.) Per shuffle_and_boot documentation, %ecx must contain the descriptor list byte length, but it's set with such list end address instead. Fix. Signed-off-by: Ahmed S. Darwish <darwish.07 at gmail.com> -- core/bcopy32.inc | 2 ++ core/bcopyxx.inc | 2 ++ core/bootsect.inc | 8 +++++--- core/runkernel.inc | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/core/bcopy32.inc b/core/bcopy32.inc index 6537546..ab60145 100644 --- a/core/bcopy32.inc +++ b/core/bcopy32.inc @@ -65,6 +65,8 @@ bcopy: jecxz .ret...
2015 Oct 05
0
[PATCH 2/4] Remove unused linker scripts
...- */ - . = ALIGN(16); - .textnr : { - FILL(0x90909090) - HIDDEN(__textnr_start = .); - *(.textnr) - HIDDEN(__textnr_end = .); - } - HIDDEN(__textnr_len = ABSOLUTE(__textnr_end) - ABSOLUTE(__textnr_start)); - HIDDEN(__textnr_dwords = (__textnr_len + 3) >> 2); - - . = ALIGN(16); - HIDDEN(__bcopyxx_start = .); - - .bcopyxx.text : { - FILL(0x90909090) - HIDDEN(__bcopyxx_text_start = .); - *(.bcopyxx.text) - HIDDEN(__bcopyxx_text_end = .); - } - HIDDEN(__bcopyxx_text_len = ABSOLUTE(__bcopyxx_text_end) - ABSOLUTE(__bcopyxx_text_start)); - HIDDEN(__bcopyxx_text_dwords = (__bcopyxx_text_len +...
2015 Oct 05
7
[PATCH 0/4] Improve linker scripts
From: Sylvain Gault <sylvain.gault at gmail.com> These patches basically remove unused linker scripts and port a change that was made to an unused script. Those are to be applied on top of the gcc 5 bug fixes as they would conflict otherwise. Sylvain Gault (4): diag/mbr: fix dependency to linker script Remove unused linker scripts core: Make symbols defined in linker script HIDDEN