Displaying 6 results from an estimated 6 matches for "syslinux_force_text_mod".
Did you mean:
syslinux_force_text_mode
2012 May 23
1
[GIT PULL] Remove duplicate COM32 modules
The following changes since commit 4fc3fd1e14f4c1b9208ef262e5b6aef853e9fce4:
graphics: make use of syslinux_force_text_mode() (2012-05-19 02:05:38 -0300)
are available in the git repository at:
git://github.com/aericson/syslinux.git elflink
for you to fetch changes up to 2779b713bdd8644ee2b52962ece6daa209b4ba6b:
com32: remove duplicate modules (2012-05-22 20:59:51 -0300)
---------------------------------------...
2017 Mar 05
0
[PATCH] Fix recognition of keeppxe option
...}
> +
> /* Copy the header into private storage */
> /* Use whdr to modify the actual kernel header */
> memcpy(&hdr, kernel_buf, sizeof hdr);
> @@ -495,7 +507,7 @@ int bios_boot_linux(void *kernel_buf, si
> dprintf("*** vga=current, not calling syslinux_force_text_mode()...\n");
> }
>
> - syslinux_shuffle_boot_rm(fraglist, mmap, 0, ®s);
> + syslinux_shuffle_boot_rm(fraglist, mmap, bootflags, ®s);
> dprintf("shuffle_boot_rm failed\n");
>
> bail:
Adam, how about https://github.com/geneC/syslinux/c...
2016 Jun 10
4
[PATCH] Fix recognition of keeppxe option
...otflags = 3; /* for unload_pxe */
+ }
+
/* Copy the header into private storage */
/* Use whdr to modify the actual kernel header */
memcpy(&hdr, kernel_buf, sizeof hdr);
@@ -495,7 +507,7 @@ int bios_boot_linux(void *kernel_buf, si
dprintf("*** vga=current, not calling syslinux_force_text_mode()...\n");
}
- syslinux_shuffle_boot_rm(fraglist, mmap, 0, ®s);
+ syslinux_shuffle_boot_rm(fraglist, mmap, bootflags, ®s);
dprintf("shuffle_boot_rm failed\n");
bail:
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
...- REG_AX(inreg) = 0x0003; // Run command
- REG_BX(inreg) = OFFS(bounce);
- REG_ES(inreg) = SEG(bounce);
- __intcall(0x22, &inreg, &outreg);
+ load_kernel(bounce);
}
void gototxtmode(void)
{
- REG_AX(inreg) = 0x0005;
- __intcall(0x22, &inreg, &outreg);
+ syslinux_force_text_mode();
}
void syslinux_idle(void)
{
- REG_AX(inreg) = 0x0013;
- __intcall(0x22, &inreg, &outreg);
+ __idle();
}
unsigned int getversion(char *deriv, unsigned int *numfun)
{
- REG_AX(inreg) = 0x0001;
- __intcall(0x22, &inreg, &outreg);
if (deriv)
- *deriv =...
2012 Nov 06
50
chain.c32 (and partiter) updates v2
This is a bit updated set of chain.c32 changes that simplifies a few things
(and in partiter part), fixes few minor issues and adds a few new features.
Details are in the following commits, below is the summary and pull details at
the end.
Shao - any chance to peek over them ? Most of those are relatively simple
changes and well tested, though of course something might have slipped my
attention.