mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-17 08:34:27 -04:00
28 lines
788 B
Diff
28 lines
788 B
Diff
diff --git a/core/fs/lib/loadconfig.c b/core/fs/lib/loadconfig.c
|
|
index c9652b6..8ed301e 100644
|
|
--- a/core/fs/lib/loadconfig.c
|
|
+++ b/core/fs/lib/loadconfig.c
|
|
@@ -10,6 +10,8 @@
|
|
* This searches for extlinux.conf and syslinux.cfg in the install
|
|
* directory, followed by a set of fallback directories. If found,
|
|
* set the current working directory to match.
|
|
+ * isolinux configuration values are added for the case where ISO
|
|
+ * content has been duplicated to a disk (typically bootable USB).
|
|
*/
|
|
int generic_load_config(void)
|
|
{
|
|
@@ -18,11 +20,14 @@ int generic_load_config(void)
|
|
"/boot/syslinux",
|
|
"/syslinux",
|
|
"/",
|
|
+ "/boot/isolinux",
|
|
+ "/isolinux",
|
|
NULL
|
|
};
|
|
static const char *filenames[] = {
|
|
"extlinux.conf",
|
|
"syslinux.cfg",
|
|
+ "isolinux.cfg",
|
|
NULL
|
|
};
|
|
|