~ubuntu-branches/ubuntu/lucid/devicekit-disks/lucid

« back to all changes in this revision

Viewing changes to debian/patches/03-hide-configuration-partition-12.patch

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt, Michael Biebl, Martin Pitt
  • Date: 2009-11-11 17:42:19 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091111174219-l16vgwcd9oh3okyg
Tags: 009-1ubuntu2
Resynchronize to Debian git head, no remaining Ubuntu changes.

[ Michael Biebl ]
* debian/patches/09-reiserfs-support.patch
  - Add support for ReiserFS.

[ Martin Pitt ]
* Add debian/local/ubuntu.pkla: Allow passwordless file system operations
  for local foreground admin user sessions on Ubuntu. Install it in
  debian/rules. (LP: #465054)
* Add 02-allow-simulated-smart.patch: Allow simulated SMART data on
  non-SMART devices. This is both useful for testing DK-disks itself, as
  well as recreating bugs with SMART handling. (fd.o #24772)
* Add 03-hide-configuration-partition-12.patch: Hide Compaq recovery
  partition type 0x12. (fd.o #24999, LP: #451304)
* Add 04-hide-wd-smartware-partition.patch: Ignore Western Digital SmartWare
  partitions. (fd.o #25009, LP: #474790)
* Add 06-guid-partition-flags.patch: Fix setting flags for GUID partitions.
  (fd.o #25034)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 0ef3c2f2553e3058547962d98ede39592f19ac12 Mon Sep 17 00:00:00 2001
 
2
From: Martin Pitt <martin.pitt@ubuntu.com>
 
3
Date: Mon, 9 Nov 2009 15:00:50 +0100
 
4
Subject: Bug 24999 — Hide Compaq recovery partition type 0x12
 
5
MIME-Version: 1.0
 
6
Content-Type: text/plain; charset=utf-8
 
7
Content-Transfer-Encoding: 8bit
 
8
 
 
9
http://www.win.tue.nl/~aeb/partitions/partition_types-1.html lists MBR type
 
10
0x12 as "configuration/rescue", used by Compaq, IBM, Intel, and NCR.
 
11
 
 
12
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=24999
 
13
Bug-Ubuntu: https://bugs.launchpad.net/bugs/451304
 
14
---
 
15
 data/95-devkit-disks.rules |    2 +-
 
16
 1 files changed, 1 insertions(+), 1 deletions(-)
 
17
 
 
18
diff --git a/data/95-devkit-disks.rules b/data/95-devkit-disks.rules
 
19
index 7f210ad..8059128 100644
 
20
--- a/data/95-devkit-disks.rules
 
21
+++ b/data/95-devkit-disks.rules
 
22
@@ -147,7 +147,7 @@ ENV{DKD_PARTITION_SCHEME}=="apm", ENV{DKD_PARTITION_TYPE}=="Apple_Bootstrap", EN
 
23
 # special MBR partition types (EFI, hidden, etc.)
 
24
 # see http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
 
25
 ENV{DKD_PARTITION_SCHEME}=="mbr", \
 
26
-  ENV{DKD_PARTITION_TYPE}=="0x00|0x11|0x14|0x16|0x17|0x1b|0x1c|0x1e|0x27|0x3d|0x84|0x8d|0x90|0x91|0x92|0x93|0x97|0x98|0x9a|0x9b|0xbb|0xc2|0xc3|0xdd|0xef", \
 
27
+  ENV{DKD_PARTITION_TYPE}=="0x00|0x11|0x12|0x14|0x16|0x17|0x1b|0x1c|0x1e|0x27|0x3d|0x84|0x8d|0x90|0x91|0x92|0x93|0x97|0x98|0x9a|0x9b|0xbb|0xc2|0xc3|0xdd|0xef", \
 
28
   ENV{DKD_PRESENTATION_HIDE}="1"
 
29
 
 
30
 # special GUID-identified partition types
 
31
-- 
 
32
1.6.3.3
 
33