~ubuntu-branches/ubuntu/trusty/os-prober/trusty

« back to all changes in this revision

Viewing changes to os-probes/mounted/x86/05efi

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2013-05-21 23:03:55 UTC
  • mfrom: (16.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20130521230355-s4gjirln20ellwit
Tags: 1.61ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Mount btrfs subvolume @ when present to access a btrfs formatted
    rootfs.
  - When called with WINOSDATA, return the list of Windows partitions
    containing the system instead of only listing these containing the
    bootrecord.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
case "$type" in
18
18
        vfat) debug "$1 is a FAT32 partition" ;;
19
19
        msdos) debug "$1 is a FAT16 partition" ;;
 
20
        fat) debug "$1 is a FAT partition (mounted by GRUB)" ;;
20
21
        *) debug "$1 is $type partition: exiting"; exit 1 ;;
21
22
esac
22
23