Displaying 4 results from an estimated 4 matches for "numipappend".
Did you mean:
numipappends
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
...static const char *syslinux_ipappend_string_list[32];
void __constructor __syslinux_get_ipappend_strings(void)
{
- static com32sys_t reg;
- int i;
+ unsigned int i;
- reg.eax.w[0] = 0x000f;
- __intcall(0x22, ®, ®);
+ __syslinux_ipappend_strings.count = (size_t)numIPAppends;
+ __syslinux_ipappend_strings.ptr = syslinux_ipappend_string_list;
- if (!(reg.eflags.l & EFLAGS_CF)) {
- __syslinux_ipappend_strings.count = reg.ecx.w[0];
- __syslinux_ipappend_strings.ptr = syslinux_ipappend_string_list;
- for (i = 0; i < reg.ecx.w[0]; i++) {
- syslinux_ipapp...
2012 Nov 09
1
Syslinux-6.00-pre1
...'linux-boot' into for-hpa/elflink/firmware
firmware, diskio: Create struct disk_private
firmware: Fix assorted compiler warnings
efi: Zero e_hdr_pe32p before use
Merge remote-tracking branch 'mfleming/elflink' into for-hpa/elflink/firmware
core: Change numIPAppends data type
Merge remote-tracking branch 'mfleming/elflink' into for-hpa/elflink/firmware
efi, ansi: Improve console handling even further (e.g. scrolling support)
module: Consolidate lots of 32/64-bit code
Create derivative-specific files
Merge branch 'elfl...
2013 Jun 20
9
Syslinux 6.00 released
...'linux-boot' into for-hpa/elflink/firmware
firmware, diskio: Create struct disk_private
firmware: Fix assorted compiler warnings
efi: Zero e_hdr_pe32p before use
Merge remote-tracking branch 'mfleming/elflink' into for-hpa/elflink/firmware
core: Change numIPAppends data type
Merge remote-tracking branch 'mfleming/elflink' into for-hpa/elflink/firmware
efi, ansi: Improve console handling even further (e.g. scrolling support)
module: Consolidate lots of 32/64-bit code
Create derivative-specific files
Merge branch 'elfl...