* Add the iso9660 filesystem to the floppy image.
* Allow iso9660 partitions to be boot partitions. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29193 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -33,7 +33,7 @@ BOOT_ADD_ONS_NET =
|
|||||||
BEOS_ADD_ONS_BUS_MANAGERS = pci $(X86_ONLY)isa ide scsi
|
BEOS_ADD_ONS_BUS_MANAGERS = pci $(X86_ONLY)isa ide scsi
|
||||||
config_manager agp_gart usb
|
config_manager agp_gart usb
|
||||||
;
|
;
|
||||||
BEOS_ADD_ONS_FILE_SYSTEMS = bfs ;
|
BEOS_ADD_ONS_FILE_SYSTEMS = bfs iso9660 ;
|
||||||
#cdda fat googlefs iso9660 nfs ;
|
#cdda fat googlefs iso9660 nfs ;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -259,7 +259,8 @@ DiskBootMethod::IsBootPartition(KPartition* partition, bool& foundForSure)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (partition->ContentType() != NULL
|
if (partition->ContentType() != NULL
|
||||||
&& !strcmp(partition->ContentType(), "Be File System")) {
|
&& (!strcmp(partition->ContentType(), "Be File System")
|
||||||
|
|| !strcmp(partition->ContentType(), "ISO9660 File System"))) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user