diff options
author | Andre Ericson <de.ericson@gmail.com> | 2012-05-28 06:54:15 -0300 |
---|---|---|
committer | Matt Fleming <matt.fleming@intel.com> | 2012-06-08 08:10:22 +0100 |
commit | 6bf3351711fe6c3f5731e519c2fbb298c6bcf2b4 (patch) | |
tree | 115642c96c3df39e1a97e90d202634eabe1fa825 /core/include/fs.h | |
parent | e7bd19def830e8341b1a100956345f1028740b9e (diff) | |
download | syslinux-6bf3351711fe6c3f5731e519c2fbb298c6bcf2b4.tar.gz syslinux-6bf3351711fe6c3f5731e519c2fbb298c6bcf2b4.tar.xz syslinux-6bf3351711fe6c3f5731e519c2fbb298c6bcf2b4.zip |
ldlinux: fixes bug that happens when using fullpath for a COM32 module
When using full path for a com32 module, for example,
/boot/syslinux/ls.c32 it fails without any error message. This patch
fixes it by looking first if the argv[0] is the path to a module before
looking for it at PATH.
Since we're using fopen to open module files (which works for both
absolute paths and paths relative to the current working directory) we
no longer need to include "." in PATH and neither the code to handle it.
Signed-off-by: Andre Ericson <de.ericson@gmail.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'core/include/fs.h')
-rw-r--r-- | core/include/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fs.h b/core/include/fs.h index 481e085c..ded8c154 100644 --- a/core/include/fs.h +++ b/core/include/fs.h @@ -179,7 +179,7 @@ static inline struct file *handle_to_file(uint16_t handle) return handle ? &files[handle-1] : NULL; } -#define PATH_DEFAULT ".:/boot/syslinux/:/boot/" +#define PATH_DEFAULT "/boot/syslinux/:/boot/" extern char *PATH; /* fs.c */ |