search for: displaycon

Displaying 7 results from an estimated 7 matches for "displaycon".

2014 Jun 10
2
Recent (6.02) PXELINUX on Soekris net4501
...ng to archaeology I'd be interested in feedback from others who might have got through this. I managed to get to the point where the PXELINUX copyright banner displays fined after fixing several issues: * incorrect video BIOS emulation in the Soekris BIOS (solution: rebuild PXELINUX with DisplayCon initialized to 0, and BaudDivisor set to the appropriate speed while we are at it) * missing stdio initialization: apparently com32 routines make a liberal amount of printf() calls which go nowhere because it seems to me that openconsole is never called (worked around by patch...
2011 Mar 16
0
[GIT PULL] elflink compiler warning fixes
....h" /* diff --git a/com32/elflink/ldlinux/config.h b/com32/elflink/ldlinux/config.h index 7765266..37c57da 100644 --- a/com32/elflink/ldlinux/config.h +++ b/com32/elflink/ldlinux/config.h @@ -33,7 +33,7 @@ extern short vkernel; //have we seen any "label" statements? extern short displaycon; //conio.inc extern short nohalt; //idle.inc -extern char *default_cmd; //"default" command line -extern char *onerror; //"onerror" command line +extern const char *default_cmd; //"default" command line +extern const char *onerror; //"onerror" command li...
2014 Jun 10
0
Recent (6.02) PXELINUX on Soekris net4501
...nterested in feedback from others who might have > got through this. > > I managed to get to the point where the PXELINUX copyright banner > displays fined after fixing several issues: > * incorrect video BIOS emulation in the Soekris BIOS > (solution: rebuild PXELINUX with DisplayCon initialized > to 0, and BaudDivisor set to the appropriate speed while > we are at it) > * missing stdio initialization: apparently com32 routines > make a liberal amount of printf() calls which go nowhere > because it seems to me that openconsole is never called &g...
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi, These patches contain support for some features that are already in Syslinux 4 but weren't working properly on the elflink branch. It's another step closer to feature parity with Syslinux 4. Having to jump through the comboot API for localboot support is less than ideal and I'll eventually fix that, probably when we move a big chunk of code from asm to C. Also, there's a
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
...erial_console_info.divisor = BaudDivisor; - __syslinux_serial_console_info.iobase = reg.edx.w[0]; - __syslinux_serial_console_info.divisor = reg.ecx.w[0]; - __syslinux_serial_console_info.flowctl = reg.ebx.w[0]; + flowctl = FlowOutput | FlowInput | (FlowIgnore << 4); + + if (!DisplayCon) + flowctl |= (0x80 << 8); + + __syslinux_serial_console_info.flowctl = flowctl; } diff --git a/com32/lib/syslinux/shuffle.c b/com32/lib/syslinux/shuffle.c index e9ee6aa..544915a 100644 --- a/com32/lib/syslinux/shuffle.c +++ b/com32/lib/syslinux/shuffle.c @@ -38,6 +38,7 @@ #include <s...