search for: fontbuf

Displaying 5 results from an estimated 5 matches for "fontbuf".

Did you mean: constbuf
2013 Jun 04
3
Syslinux 5.10 released
...labels when hitting TAB Partially revert "pxe: Pass absolute path to pxe_chdir()" ldlinux: Fixup lwip merge botch pxe: Fix compiler warnings and real bug load_linux: update errno before returning linux: Clear up error message font: increment pointer to fontbuf by font height serial: fix SERIAL directive for ports > 0 font: write to 'fontbuf', not random memory NEWS: Clarify network stack files NEWS: Mention noteworthy changes in 5.10 -- Matt Fleming, Intel Open Source Technology Center
2013 Jun 05
0
Syslinux 5.10 released
...Partially revert "pxe: Pass absolute path to pxe_chdir()" > ldlinux: Fixup lwip merge botch > pxe: Fix compiler warnings and real bug > load_linux: update errno before returning > linux: Clear up error message > font: increment pointer to fontbuf by font height > serial: fix SERIAL directive for ports > 0 > font: write to 'fontbuf', not random memory > NEWS: Clarify network stack files > NEWS: Mention noteworthy changes in 5.10 > Nice, thanks for this release. I guess can be a good time,...
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com> The following patch series is available at, git://git.zytor.com/users/mfleming/syslinux.git elflink All patches are against the 'elflink' branch. This series fixes a few serious bugs and some behavioural incompatibilities with the 4.x series. Matt Fleming (19): ldlinux: Initialise 'p' before using it. ldlinux: Parse
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com> Since we can't use __intcall() for EFI, and since we can now have the ELF module code resolve all our symbols at runtime, we should delete as many references to __intcall() as possible and just access the symbols directly. The most interesting patch is the support for weak symbols. We need to be able to reference derivative-specific
2012 Aug 14
1
[GIT PULL] elflink fixes
...rns height of font or zero if no custom font loaded */ int syslinux_font_query(uint8_t **font) { - static com32sys_t ireg; - com32sys_t oreg; - int height; + if (!UserFont) + return 0; - ireg.eax.w[0] = 0x0018; - __intcall(0x22, &ireg, &oreg); + *font = (uint8_t *)fontbuf; - height = !(oreg.eflags.l & EFLAGS_CF) ? oreg.eax.b[0] : 0; - if (height) - *font = MK_PTR(oreg.es, oreg.ebx.w[0]); - - return height; + return VGAFontSize; } diff --git a/com32/lib/syslinux/video/reportmode.c b/com32/lib/syslinux/video/reportmode.c index 57fd6fd..2a2c577 100...