From 3e9a2bbb94b9f0a2f265ac0c59ffd3b94007b2c8 Mon Sep 17 00:00:00 2001 From: Jörg Jenderek Date: Wed, 7 Oct 2015 11:41:23 +0200 Subject: fdisk: to recognize Intel Rapid Start hibernation partition I use Intel Rapid Start Technology on my PC. According to their User Guide "Rapid_Start_Technology_User_Guide_v1.4.pdf" I create a partition with id=84 for hibernation by this Technology. Unfortunately the software fdisk (util-linux-2.27) classifies that partition as "OS/2 hidden C:". That is not wrong, but on website https://en.wikipedia.org/wiki/Partition_type is written, that id 0x84 beside using for hiding drive C: this type is a also used as hibernation partition for Microsoft APM and also for Intel Rapid Start So I patched 2 header files so that fdisk recognize this partition type variation. Signed-off-by: Karel Zak --- include/pt-mbr-partnames.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/pt-mbr-partnames.h') diff --git a/include/pt-mbr-partnames.h b/include/pt-mbr-partnames.h index 6fbde90f3..97097d375 100644 --- a/include/pt-mbr-partnames.h +++ b/include/pt-mbr-partnames.h @@ -51,7 +51,9 @@ {0x81, N_("Minix / old Linux")},/* Minix 1.4b and later */ {0x82, N_("Linux swap / Solaris")}, {0x83, N_("Linux")}, - {0x84, N_("OS/2 hidden C: drive")}, + {0x84, N_("OS/2 h. C:|Intel hibernation")},/* OS/2 hidden C: drive, + hibernation type Microsoft APM + or hibernation Intel Rapid Start */ {0x85, N_("Linux extended")}, {0x86, N_("NTFS volume set")}, {0x87, N_("NTFS volume set")}, -- cgit v1.2.3-55-g7522