From 8ec4a6d0e050f99053c2d0236f6cb5daa1a2d79b Mon Sep 17 00:00:00 2001 From: fzielcke Date: Tue, 9 Jun 2009 13:22:31 +0000 Subject: [PATCH] 2009-06-09 Felix Zielcke * util/i386/pc/grub-install.in: Change the error message if UUIDs aren't avaible if ata.mod gets used. --- ChangeLog | 9 +++++++-- util/i386/pc/grub-install.in | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 34c5bc18f..5262635b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,13 @@ +2009-06-09 Felix Zielcke + + * util/i386/pc/grub-install.in: Change the error message if UUIDs + aren't avaible if ata.mod gets used. + 2009-06-09 Oliver Henshaw - * bus/usb/ohci.c (grub_ohci_pci_iter): Link struct only after + * bus/usb/ohci.c (grub_ohci_pci_iter): Link struct only after initialising controller. - * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise. + * bus/usb/uhci.c (grub_uhci_pci_iter): Likewise. 2009-06-08 Felix Zielcke diff --git a/util/i386/pc/grub-install.in b/util/i386/pc/grub-install.in index 5f6e55676..5c3ffcdde 100644 --- a/util/i386/pc/grub-install.in +++ b/util/i386/pc/grub-install.in @@ -286,7 +286,7 @@ if [ "x${devabstraction_module}" = "x" ] ; then # generic method (used on coreboot and ata mod) uuid="`$grub_probe --target=fs_uuid --device ${grub_device}`" if [ "x${uuid}" = "x" ] ; then - echo "UUID needed on this platform and with ata mod, but the filesystem containing ${grubdir} does not support UUIDs." 1>&2 + echo "UUID needed with ata mod, but the filesystem containing ${grubdir} does not support UUIDs." 1>&2 exit 1 fi prefix_drive="(UUID=${uuid})"