search for: dyn_table

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

Did you mean: dn_table
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 Jun 26
2
[GIT PULL] elflink bug fixes
...ot; -#define MAX_NR_DEPS 64 - static int check_header(Elf32_Ehdr *elf_hdr) { int res; @@ -181,9 +179,6 @@ out: return res; } -static int nr_needed; -static Elf32_Word needed[MAX_NR_DEPS];; - static int prepare_dynlinking(struct elf_module *module) { Elf32_Dyn *dyn_entry = module->dyn_table; @@ -196,8 +191,8 @@ static int prepare_dynlinking(struct elf_module *module) { * are then inform the user that we ran out of * space. */ - if (nr_needed < MAX_NR_DEPS) - needed[nr_needed++] = dyn_entry->d_un.d_ptr; + if (module->nr_needed < MAX_NR_DEPS) + mod...