All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fdisk: to recognize Intel Rapid Start hibernation partition
@ 2015-10-07  9:41 Jörg Jenderek
  2015-10-09 11:14 ` Karel Zak
  0 siblings, 1 reply; 2+ messages in thread
From: Jörg Jenderek @ 2015-10-07  9:41 UTC (permalink / raw)
  To: util-linux

Dear util-linux maintainer,
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

pt-mbr-intel-hibernation.diff
--- util-linux-2.27/include/pt-mbr.h.old	2015-06-29 13:13:14.670847471 +0200
+++ util-linux-2.27/include/pt-mbr.h	2015-10-05 19:18:44.948641032 +0200
@@ -129,7 +129,8 @@
 	MBR_LINUX_SWAP_PARTITION	= 0x82,
 	MBR_SOLARIS_X86_PARTITION	= MBR_LINUX_SWAP_PARTITION,
 	MBR_LINUX_DATA_PARTITION	= 0x83,
-	MBR_OS2_HIDDEN_DRIVE_PARTITION	= 0x84,
+	MBR_OS2_HIDDEN_DRIVE_PARTITION	= 0x84, /* also hibernation MS APM, Intel Rapid Start */
+	MBR_INTEL_HIBERNATION_PARTITION	= MBR_OS2_HIDDEN_DRIVE_PARTITION,
 	MBR_LINUX_EXTENDED_PARTITION	= 0x85,
 	MBR_NTFS_VOL_SET1_PARTITION	= 0x86,
 	MBR_NTFS_VOL_SET2_PARTITION	= 0x87,

pt-mbr-partnames-intel-hibernation.diff
--- util-linux-2.27/include/pt-mbr-partnames.h.old	2015-06-29 13:13:14.669847478 +0200
+++ util-linux-2.27/include/pt-mbr-partnames.h	2015-10-05 19:23:02.997989894 +0200
@@ -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")},


Signed-off-by: Jörg Jenderek <joerg.jen.der.ek@gmx.net>
Sorry that i do this way, but i have no knowledge about git toys.

Hope you can apply my patches in a future version of  the fdisk program.

thanks,
Jörg Jenderek
-- 
Jörg Jenderek	email:	joerg.jen.der.ek (at) gmx.net
Germany


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] fdisk: to recognize Intel Rapid Start hibernation partition
  2015-10-07  9:41 [PATCH] fdisk: to recognize Intel Rapid Start hibernation partition Jörg Jenderek
@ 2015-10-09 11:14 ` Karel Zak
  0 siblings, 0 replies; 2+ messages in thread
From: Karel Zak @ 2015-10-09 11:14 UTC (permalink / raw)
  To: Jörg Jenderek; +Cc: util-linux

On Wed, Oct 07, 2015 at 11:41:23AM +0200, Jörg Jenderek wrote:
> --- util-linux-2.27/include/pt-mbr.h.old	2015-06-29 13:13:14.670847471 +0200
> +++ util-linux-2.27/include/pt-mbr.h	2015-10-05 19:18:44.948641032 +0200

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-10-09 11:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-07  9:41 [PATCH] fdisk: to recognize Intel Rapid Start hibernation partition Jörg Jenderek
2015-10-09 11:14 ` Karel Zak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.