Index: branches/azimutz/CleanCut/i386/libsaio/acpi_patcher.c =================================================================== --- branches/azimutz/CleanCut/i386/libsaio/acpi_patcher.c (revision 349) +++ branches/azimutz/CleanCut/i386/libsaio/acpi_patcher.c (revision 350) @@ -98,7 +98,7 @@ // Take in account user overriding if (getValueForKey(kDSDTKey, &override_pathname, &len, &bootInfo->bootConfig)) { - // Specify a path to a file, e.g. /Extra/test.aml + // Specify a path to a file, e.g. DSDT=/Extra/test.aml sprintf(dirSpecDSDT, override_pathname); fd = open(dirSpecDSDT, 0); if (fd >= 0) goto success_fd; Index: branches/azimutz/CleanCut/i386/libsaio/fake_efi.c =================================================================== --- branches/azimutz/CleanCut/i386/libsaio/fake_efi.c (revision 349) +++ branches/azimutz/CleanCut/i386/libsaio/fake_efi.c (revision 350) @@ -635,7 +635,7 @@ // Take in account user overriding if (getValueForKey(kSMBIOSKey, &override_pathname, &len, &bootInfo->bootConfig)) { - // Specify a path to a file, e.g. /Extra/macProXY.plist + // Specify a path to a file, e.g. SMBIOS=/Extra/macProXY.plist sprintf(dirSpecSMBIOS, override_pathname); fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig); if (fd >= 0) goto success_fd; Index: branches/azimutz/CleanCut/i386/boot2/drivers.c =================================================================== --- branches/azimutz/CleanCut/i386/boot2/drivers.c (revision 349) +++ branches/azimutz/CleanCut/i386/boot2/drivers.c (revision 350) @@ -188,18 +188,19 @@ // Take in account user overriding. if (getValueForKey(kExtensionsKey, &override_pathfolder, &len, &bootInfo->bootConfig)) { - // Specify a path to a folder, ending with / e.g. /Extra/testkext/ + // Specify a path to a folder, ending with / e.g. kext=/Extra/testkext/ strcpy(dirSpecExtra, override_pathfolder); fd = FileLoadDrivers(dirSpecExtra, 0); if (fd >= 0) goto success_fd; } - // First try to load Extra extensions from the ramdisk if isn't aliased as bt(0,0). + // No need to specify (gRAMDiskVolume && !gRAMDiskBTAliased). + // First try to load Extra extensions from a ramdisk if isn't aliased as bt(0,0). strcpy(dirSpecExtra, "rd(0,0)/"); // check it's "root". fd = FileLoadDrivers(dirSpecExtra, 0); if (fd >= 0) goto success_fd; - // No need to specify (gRAMDiskVolume && gRAMDiskBTAliased); checking paths on a + // Also no need to specify (gRAMDiskVolume && gRAMDiskBTAliased); checking paths on a // ramdisk aliased as bt(0,0) (rdbt), is the same as checking paths on booter volume. // In this case the following two apply.