mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 17:52:43 +00:00
MFC r276893: mkimg: Add MBR EFI partition type
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
a881a0dc7f
commit
0c5fbfcd26
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=278968
@ -42,9 +42,13 @@ __FBSDID("$FreeBSD$");
|
||||
#ifndef DOSPTYP_FAT32
|
||||
#define DOSPTYP_FAT32 0x0b
|
||||
#endif
|
||||
#ifndef DOSPTYP_EFI
|
||||
#define DOSPTYP_EFI 0xef
|
||||
#endif
|
||||
|
||||
static struct mkimg_alias mbr_aliases[] = {
|
||||
{ ALIAS_EBR, ALIAS_INT2TYPE(DOSPTYP_EXT) },
|
||||
{ ALIAS_EFI, ALIAS_INT2TYPE(DOSPTYP_EFI) },
|
||||
{ ALIAS_FAT32, ALIAS_INT2TYPE(DOSPTYP_FAT32) },
|
||||
{ ALIAS_FREEBSD, ALIAS_INT2TYPE(DOSPTYP_386BSD) },
|
||||
{ ALIAS_NONE, 0 } /* Keep last! */
|
||||
|
Loading…
Reference in New Issue
Block a user