search for: loading_deps

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

2011 Apr 01
1
[GIT PULL] elflink core
...that are in the middle of + * being loaded. When they have completed loading their entry is + * removed from this list in LIFO order (new entries are always added + * to the head of the list). + */ +struct loading_dep { + const char *name; + struct module_dep *next; +}; +static struct loading_dep *loading_deps; + +/* + * Remember that because we insert elements in a LIFO order we need to + * start from the end of the list and work towards the front so that + * we print the modules in the order in which we tried to load them. + * + * Yay for recursive function calls. + */ +static void print_loading_dep(st...
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