From 65e93f6b846c2fa12e10a9000c744b2904ba4713 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Sun, 14 Nov 2010 16:15:41 +0100 Subject: [PATCH] * util/grub-install.in: Ignore empty partition table detection instead of trying to include part_ module. --- ChangeLog | 5 +++++ util/grub-install.in | 1 + 2 files changed, 6 insertions(+) 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