~ubuntu-branches/debian/sid/grub2/sid-200907171840

« back to all changes in this revision

Viewing changes to util/grub-probe.c

  • Committer: Bazaar Package Importer
  • Author(s): Albin Tonnerre
  • Date: 2007-06-06 12:45:39 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070606124539-1mke05d4jw60fsjn
Tags: 1.95+20070604-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - Disable stack protector.
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
  grub_util_biosdisk_init (dev_map ? : DEFAULT_DEVICE_MAP);
262
262
  grub_pc_partition_map_init ();
263
263
  grub_gpt_partition_map_init ();
 
264
  grub_apple_partition_map_init ();
264
265
  grub_raid_init ();
265
266
  grub_lvm_init ();
266
267
  
286
287
  grub_lvm_fini ();
287
288
  grub_raid_fini ();
288
289
  grub_gpt_partition_map_fini ();
 
290
  grub_apple_partition_map_fini ();
289
291
  grub_pc_partition_map_fini ();
290
292
  grub_util_biosdisk_fini ();
291
293