~ubuntu-branches/ubuntu/quantal/grub2/quantal-proposed

« back to all changes in this revision

Viewing changes to debian/patches/ubuntu_lvm_raid_probe.patch

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-04-03 18:15:58 UTC
  • Revision ID: package-import@ubuntu.com-20120403181558-lgozxphywuov7ne8
Tags: 1.99-21ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Adjust for default Ubuntu boot options ("quiet splash").
  - Default to hiding the menu; holding down Shift at boot will show it.
  - Set a monochromatic theme and an appropriate background for Ubuntu.
  - Apply Ubuntu GRUB Legacy changes to legacy update-grub script.
  - Fix backslash-escaping in merge_debconf_into_conf.
  - Remove "GNU/Linux" from default distributor string.
  - Add crashkernel option.
  - Bypass menu unless other OSes are installed or Shift is pressed.
  - Allow Shift to interrupt 'sleep --interruptible'.
  - Reduce visual clutter in normal mode.
  - Remove verbose messages printed before reading configuration.
  - Suppress kernel/initrd progress messages, except in recovery mode.
  - Show the boot menu if the previous boot failed.
  - Don't generate device.map during grub-install or grub-mkconfig.
  - Adjust upgrade version checks for Ubuntu.
  - Suppress "GRUB loading" message unless Shift is held down.
  - Adjust versions of grub-doc and grub-legacy-doc conflicts.
  - Fix LVM/RAID probing in the absence of /boot/grub/device.map.
  - Look for .mo files in /usr/share/locale-langpack first.
  - Build-depend on qemu-kvm rather than qemu-system for grub-pc tests.
  - Check hardware support before using gfxpayload=keep.
  - Put second and subsequent Linux menu entries in a submenu.
  - Preferred resolution detection for VBE.
  - Set vt.handoff=7 for smooth handoff to kernel graphical mode.
  - Update default/grub.md5sum to include maverick's default md5sum.
  - In recovery mode, add nomodeset to the Linux kernel arguments, and
    remove the 'set gfxpayload=keep' command.
  - Skip Windows os-prober entries on Wubi systems, and suppress the menu
    by default if those are the only other-OS entries.
  - Handle probing striped DM-RAID devices.
  - Replace 'single' by 'recovery' when friendly-recovery is installed.
  - Use qemu -no-kvm in tests for now to work around LP #947597.
  - Disable cursor as early as possible in grub_main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
===================================================================
46
46
--- a/grub-core/kern/emu/hostdisk.c
47
47
+++ b/grub-core/kern/emu/hostdisk.c
48
 
@@ -1023,6 +1023,24 @@
 
48
@@ -1027,6 +1027,24 @@
49
49
     .next = 0
50
50
   };
51
51
 
70
70
 static void
71
71
 read_device_map (const char *dev_map)
72
72
 {
73
 
@@ -1117,19 +1135,7 @@
 
73
@@ -1121,19 +1139,7 @@
74
74
            }
75
75
        }
76
76
 
91
91
     }
92
92
 
93
93
   fclose (fp);
94
 
@@ -1638,7 +1644,7 @@
 
94
@@ -1642,7 +1648,7 @@
95
95
   if (convert)
96
96
     os_disk = convert_system_partition_to_system_disk (os_dev, st);
97
97
   else
100
100
   if (! os_disk)
101
101
     return -1;
102
102
 
103
 
@@ -1674,6 +1680,51 @@
 
103
@@ -1678,6 +1684,51 @@
104
104
   return find_system_device (os_dev, &st, 1, 0) != -1;
105
105
 }
106
106