Changeset 69618 in vbox for trunk/src/VBox/Runtime/common/dvm
- Timestamp:
- Nov 8, 2017 3:45:35 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118978
- Location:
- trunk/src/VBox/Runtime/common/dvm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvm.cpp
r69616 r69618 118 118 "Unknown", 119 119 "NTFS", 120 "FAT12", 120 121 "FAT16", 121 122 "FAT32", -
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
r69616 r69618 100 100 static const RTDVMMBRFS2VOLTYPE g_aFs2DvmVolTypes[] = 101 101 { 102 { 0x06, RTDVMVOLTYPE_FAT16 }, 102 { 0x01, RTDVMVOLTYPE_FAT12 }, 103 { 0x04, RTDVMVOLTYPE_FAT16 }, 104 { 0x06, RTDVMVOLTYPE_FAT16 }, /* big FAT16 */ 103 105 { 0x07, RTDVMVOLTYPE_NTFS }, /* Simplification: Used for HPFS, exFAT, ++, too but NTFS is the more common one. */ 104 106 { 0x0b, RTDVMVOLTYPE_FAT32 }, 105 107 { 0x0c, RTDVMVOLTYPE_FAT32 }, 108 { 0x0e, RTDVMVOLTYPE_FAT16 }, 109 110 /* Hidden variants of the above: */ 111 { 0x11, RTDVMVOLTYPE_FAT12 }, 112 { 0x14, RTDVMVOLTYPE_FAT16 }, 113 { 0x16, RTDVMVOLTYPE_FAT16 }, 114 { 0x17, RTDVMVOLTYPE_NTFS }, 115 { 0x1b, RTDVMVOLTYPE_FAT32 }, 116 { 0x1c, RTDVMVOLTYPE_FAT32 }, 117 { 0x1e, RTDVMVOLTYPE_FAT16 }, 118 106 119 { 0x82, RTDVMVOLTYPE_LINUX_SWAP }, 107 120 { 0x83, RTDVMVOLTYPE_LINUX_NATIVE },
Note:
See TracChangeset
for help on using the changeset viewer.