From: Jörg Jenderek Date: Wed, 8 Apr 2015 08:24:26 +0000 (+0200) Subject: libfdisk: recognize FAT32 partitions hidden by Acronis software X-Git-Tag: v2.27-rc1~280 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25156ba16b46803e1ad2a8071bfb3e523c647382;p=thirdparty%2Futil-linux.git libfdisk: recognize FAT32 partitions hidden by Acronis software References: http://www.acronis.de/products/trueimage Signed-off-by: Karel Zak Signed-off-by: Jörg Jenderek --- diff --git a/include/pt-mbr-partnames.h b/include/pt-mbr-partnames.h index 282adba913..2e2127ae4c 100644 --- a/include/pt-mbr-partnames.h +++ b/include/pt-mbr-partnames.h @@ -71,6 +71,7 @@ {0xb7, N_("BSDI fs")}, {0xb8, N_("BSDI swap")}, {0xbb, N_("Boot Wizard hidden")}, + {0xbc, N_("Acronis FAT32 LBA")},/* hidden (+0xb0) Acronis Secure Zone (backup software) */ {0xbe, N_("Solaris boot")}, {0xbf, N_("Solaris")}, {0xc1, N_("DRDOS/sec (FAT-12)")}, diff --git a/include/pt-mbr.h b/include/pt-mbr.h index 1279e3cf22..fab65ea07e 100644 --- a/include/pt-mbr.h +++ b/include/pt-mbr.h @@ -148,6 +148,7 @@ enum { MBR_BSDI_FS_PARTITION = 0xb7, MBR_BSDI_SWAP_PARTITION = 0xb8, MBR_BOOTWIZARD_HIDDEN_PARTITION = 0xbb, + MBR_ACRONIS_FAT32LBA_PARTITION = 0xbc, /* Acronis Secure Zone with ipl for loader F11.SYS */ MBR_SOLARIS_BOOT_PARTITION = 0xbe, MBR_SOLARIS_PARTITION = 0xbf, MBR_DRDOS_FAT12_PARTITION = 0xc1,