Changeset 6453e306 in mainline for uspace/lib/mbr/mbr.h
- Timestamp:
- 2013-12-25T16:09:43Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ac36aed
- Parents:
- d51beba3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/mbr/mbr.h
rd51beba3 r6453e306 1 1 /* 2 2 * Copyright (c) 2009 Jiri Svoboda 3 * Copyright (c) 2011 , 2012,2013 Dominik Taborsky3 * Copyright (c) 2011-2013 Dominik Taborsky 4 4 * All rights reserved. 5 5 * … … 39 39 #include <sys/types.h> 40 40 41 /** Number of primary partition records */ 42 #define N_PRIMARY 4 43 44 /** Boot record signature */ 45 #define BR_SIGNATURE 0xAA55 41 enum { 42 /** Number of primary partition records */ 43 N_PRIMARY = 4, 44 45 /** Boot record signature */ 46 BR_SIGNATURE = 0xAA55 47 }; 46 48 47 49 enum { … … 55 57 enum { 56 58 /** Unused partition entry */ 57 PT_UNUSED 59 PT_UNUSED = 0x00, 58 60 /** Extended partition */ 59 PT_EXTENDED 61 PT_EXTENDED = 0x05, 60 62 /** Extended partition with LBA */ 61 PT_EXTENDED_LBA 63 PT_EXTENDED_LBA = 0x0F, 62 64 /** GPT Protective partition */ 63 PT_GPT 65 PT_GPT = 0xEE, 64 66 }; 65 67
Note:
See TracChangeset
for help on using the changeset viewer.