search for: aea32d9

Displaying 2 results from an estimated 2 matches for "aea32d9".

Did you mean: aea32
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
...e * for @name or %NULL if no modules + * have been loaded since @name. + */ +extern struct elf_module *unload_modules_since(const char *name); + +extern FILE *findpath(char *name); + #ifdef DYNAMIC_MODULE diff --git a/com32/include/syslinux/boot.h b/com32/include/syslinux/boot.h index 870cff3..aea32d9 100644 --- a/com32/include/syslinux/boot.h +++ b/com32/include/syslinux/boot.h @@ -48,6 +48,13 @@ void syslinux_chain_bootstrap(uint16_t flags, const void *bootstrap, uint32_t bootstrap_len, uint32_t edx, uint32_t esi, uint16_t ds); +struct image_types { + const char *name;...