From: Lex Date: Sat, 23 May 2026 12:08:43 +0000 (+0100) Subject: add emummc partition type X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=575d791cc220e4064f6cd6e03d9c1eeb154e9655;p=thirdparty%2Futil-linux.git add emummc partition type --- diff --git a/include/pt-gpt-partnames.h b/include/pt-gpt-partnames.h index cf12d2baa..520e45681 100644 --- a/include/pt-gpt-partnames.h +++ b/include/pt-gpt-partnames.h @@ -299,3 +299,6 @@ DEF_GUID("35540011-B055-499F-842D-C69AECA357B7", N_("Atari TOS raw data (XHDI)") /* Minix */ DEF_GUID("481B2A38-0561-420B-B72A-F1C4988EFC16", N_("Minix filesystem")), + +/* Nintendo Switch emuMMC */ +DEF_GUID("11CA7E00-0000-0000-0000-656D754D4D43", N_("NX emuMMC")), diff --git a/include/pt-mbr-partnames.h b/include/pt-mbr-partnames.h index a712b6127..f79262c33 100644 --- a/include/pt-mbr-partnames.h +++ b/include/pt-mbr-partnames.h @@ -89,6 +89,7 @@ Concurrent DOS or CTOS */ {0xde, N_("Dell Utility")}, /* Dell PowerEdge Server utilities */ {0xdf, N_("BootIt")}, /* BootIt EMBRM */ + {0xe0, N_("NX emuMMC")}, /* Nintendo Switch emuMMC */ {0xe1, N_("DOS access")}, /* DOS access or SpeedStor 12-bit FAT extended partition */ {0xe3, N_("DOS R/O")}, /* DOS R/O or SpeedStor */ diff --git a/include/pt-mbr.h b/include/pt-mbr.h index 48e57bde2..f815fe247 100644 --- a/include/pt-mbr.h +++ b/include/pt-mbr.h @@ -192,6 +192,7 @@ enum { MBR_CPM_CTOS_PARTITION = 0xdb, /* CP/M or Concurrent CP/M or Concurrent DOS or CTOS */ MBR_DELL_UTILITY_PARTITION = 0xde, /* Dell PowerEdge Server utilities */ MBR_BOOTIT_PARTITION = 0xdf, /* BootIt EMBRM */ + MBR_NX_EMUMMC_PARTITION = 0xe0, /* Nintendo Switch emuMMC */ MBR_DOS_ACCESS_PARTITION = 0xe1, /* DOS access or SpeedStor 12-bit FAT extended partition */ MBR_DOS_RO_PARTITION = 0xe3, /* DOS R/O or SpeedStor */ MBR_SPEEDSTOR_EXTENDED_PARTITION = 0xe4, /* SpeedStor 16-bit FAT extended partition < 1024 cyl. */