Displaying 2 results from an estimated 2 matches for "pm_is_config_fil".
Did you mean:
pm_is_config_file
2010 Sep 15
2
CONFIG and appended directory; current directory
I've been testing the CONFIG directive and config.c32 module and I've
found a possible issue. It seems to ignore the directory of "/" but
can otherwise go up and down a directory tree perfectly. Executing
COM32 chdir("/") does seem to work.
Also, I noticed that the config file name is relative to the old
present working directory (herein pwd) and not the new pwd
2010 Jul 15
1
Accessing command_line from core C code
...printf(" %s", vk->vname);
+ }
+ t = regs->esi.l;
+ }
+ printf("\n");
+ return;
+}
diff --git a/core/extern.inc b/core/extern.inc
index 64edea6..58d0f27 100644
--- a/core/extern.inc
+++ b/core/extern.inc
@@ -24,6 +24,9 @@
; newconfig.c
extern pm_is_config_file
+ ; display_labels.c
+ extern pm_display_labels
+
%if IS_PXELINUX
; pxe.c
extern unload_pxe, reset_pxe
diff --git a/core/include/core.h b/core/include/core.h
index 7db5daf..8d77b52 100644
--- a/core/include/core.h
+++ b/core/include/core.h
@@ -14,6 +14,9 @@ extern char ConfigName[];
extern...