From: Vladimir 'phcoder' Serbinenko Date: Sun, 14 Nov 2010 15:15:41 +0000 (+0100) Subject: * util/grub-install.in: Ignore empty partition table detection X-Git-Tag: 1.99~333 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65e93f6b846c2fa12e10a9000c744b2904ba4713;p=thirdparty%2Fgrub.git * util/grub-install.in: Ignore empty partition table detection instead of trying to include part_ module. --- diff --git a/ChangeLog b/ChangeLog index b0ee0d012..c56720a15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-11-14 Vladimir Serbinenko + + * util/grub-install.in: Ignore empty partition table detection + instead of trying to include part_ module. + 2010-11-14 Vladimir Serbinenko * grub-core/disk/lvm.c (GRUB_MOD_FINI): Reset the vg_list. Fixes diff --git a/util/grub-install.in b/util/grub-install.in index 52f17bfa2..00ad3fde4 100644 --- a/util/grub-install.in +++ b/util/grub-install.in @@ -477,6 +477,7 @@ for x in "`"$grub_probe" --device-map="${device_map}" --target=partmap --device case "$x" in netbsd | openbsd) partmap_module="$partmap_module part_bsd";; + "") ;; *) partmap_module="$partmap_module part_$x";; esac