Displaying 2 results from an estimated 2 matches for "print_loading_dep".
2011 Apr 01
1
[GIT PULL] elflink core
...ng_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(struct loading_dep *dep)
+{
+ if (dep) {
+ print_loading_dep(dep->next);
+ printf("\t\t\"%s\"\n", dep->name);
+ }
+}
+
int module_load_dependencies(const char *name,const char *dep_file)
{
FILE *d_file=fopen(dep_file,"r");
char line[2048],aux[2048],temp_n...
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