Changeset f57ccb5 in mainline for uspace/lib/label/include/std/mbr.h
- Timestamp:
- 2015-08-11T16:03:59Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0bde8523
- Parents:
- 1b23e33
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/label/include/std/mbr.h
r1b23e33 rf57ccb5 57 57 }; 58 58 59 enum ptype {59 enum mbr_ptype { 60 60 /** Unused partition entry */ 61 mbr_pt_unused = 0x00,61 mbr_pt_unused = 0x00, 62 62 /** Extended partition */ 63 mbr_pt_extended = 0x05 63 mbr_pt_extended = 0x05, 64 /** Extended partition with LBA */ 65 mbr_pt_extended_lba = 0x0f, 66 /** FAT16 with LBA */ 67 mbr_pt_fat16_lba = 0x0e, 68 /** FAT32 with LBA */ 69 mbr_pt_fat32_lba = 0x0c, 70 /** IFS, HPFS, NTFS, exFAT */ 71 mbr_pt_ms_advanced = 0x07, 72 /** Minix */ 73 mbr_pt_minix = 0x81, 74 /** Linux */ 75 mbr_pt_linux = 0x83 64 76 }; 65 77
Note:
See TracChangeset
for help on using the changeset viewer.