Displaying 5 results from an estimated 5 matches for "0dfecee".
2013 Jun 12
3
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
On Wed, 12 Jun, at 11:17:44AM, Gerardo Exequiel Pozzi wrote:
> Cool thanks!. Now looks better, but still not work.
>
> For some reason, "ldlinux.c32" is apparently sent but "Failed to load"
> by PXELINUX and few seconds later, dnsmasq shows an error message
> "failed sending":
Argh! The patch was broken. I missed the new core/path.c file. My bad.
2013 Jun 12
5
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
...-extern char *PATH;
+struct path_entry {
+ struct list_head list;
+ const char *str;
+};
+
+extern struct list_head PATH;
+
+extern struct path_entry *path_add(const char *str);
/* fs.c */
void pm_mangle_name(com32sys_t *);
diff --git a/doc/syslinux.txt b/doc/syslinux.txt
index a4b201f..0dfecee 100644
--- a/doc/syslinux.txt
+++ b/doc/syslinux.txt
@@ -551,7 +551,7 @@ F12 filename
<Ctrl-F>0.
PATH path
- Specify a colon-separated (':') list of directories to search
+ Specify a list of directories (separated by spaces) to search
when attempting to load modules. This direc...
2013 Jun 12
0
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
...f(*entry));
+ if (!entry)
+ return NULL;
+
+ entry->str = strdup(str);
+ if (!entry->str)
+ goto bail;
+
+ list_add(&entry->list, &PATH);
+
+ return entry;
+
+bail:
+ free(entry);
+ return NULL;
+}
diff --git a/doc/syslinux.txt b/doc/syslinux.txt
index a4b201f..0dfecee 100644
--- a/doc/syslinux.txt
+++ b/doc/syslinux.txt
@@ -551,7 +551,7 @@ F12 filename
<Ctrl-F>0.
PATH path
- Specify a colon-separated (':') list of directories to search
+ Specify a list of directories (separated by spaces) to search
when attempting to load modules. This direc...
2013 Jun 11
2
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
On Mon, 10 Jun, at 07:57:50AM, H. Peter Anvin wrote:
> Either that or make the path a list rather than a string, using the
> normal word separators when entered on the command line, a bit like the
> (t)csh does. That is a bigger change but is probably a better solution.
How would this solution handle filenames containing spaces? Would we
need to escape (presumably with a backslash)
2013 Jun 12
0
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
...list_head list;
> + const char *str;
> +};
> +
> +extern struct list_head PATH;
> +
> +extern struct path_entry *path_add(const char *str);
>
> /* fs.c */
> void pm_mangle_name(com32sys_t *);
> diff --git a/doc/syslinux.txt b/doc/syslinux.txt
> index a4b201f..0dfecee 100644
> --- a/doc/syslinux.txt
> +++ b/doc/syslinux.txt
> @@ -551,7 +551,7 @@ F12 filename
> <Ctrl-F>0.
>
> PATH path
> - Specify a colon-separated (':') list of directories to search
> + Specify a list of directories (separated by spaces) to search
>...