search for: use_font

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

Did you mean: set_font
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...(com32sys_t * regs) }; dprintf("Starting 32 bit elf module subsystem...\n"); - call_constr(); PATH = malloc(strlen(PATH_DEFAULT) + 1); if (!PATH) { diff --git a/core/font.c b/core/font.c index 0eeb90f..1fcbbe8 100644 --- a/core/font.c +++ b/core/font.c @@ -164,7 +164,7 @@ void use_font(void) void adjust_screen(void) { com32sys_t ireg, oreg; - volatile uint8_t *vidrows = BIOS_vidrows; + volatile uint8_t *vidrows = (volatile uint8_t *)BIOS_vidrows; uint8_t rows, cols; rows = *vidrows; @@ -185,7 +185,7 @@ void adjust_screen(void) VidCols = --cols; /* Store count-1 (same...
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
...const char *str) diff --git a/core/include/bios.h b/core/include/bios.h index 4bf6bc4..42a9768 100644 --- a/core/include/bios.h +++ b/core/include/bios.h @@ -74,7 +74,6 @@ extern union screen _screensize; #define VidRows _screensize.b.row /* font.c */ -extern uint16_t VGAFontSize; extern void use_font(void); extern void bios_adjust_screen(void); diff --git a/core/include/core.h b/core/include/core.h index e19f2f1..da94dbf 100644 --- a/core/include/core.h +++ b/core/include/core.h @@ -25,9 +25,19 @@ extern char ConfigFile[]; extern char syslinux_banner[]; extern char copyright_str[]; extern...
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