summaryrefslogtreecommitdiff
path: root/usr/src/cmd/boot/installgrub/message.h
diff options
context:
space:
mode:
authorVikram Hegde <Vikram.Hegde@Sun.COM>2009-09-14 21:48:21 -0700
committerVikram Hegde <Vikram.Hegde@Sun.COM>2009-09-14 21:48:21 -0700
commit7fc5d2a453d54fb46bb4a17b2bd1b59b0a711575 (patch)
treeaba4f45a26d8fb3de10736611710ea75c600b94d /usr/src/cmd/boot/installgrub/message.h
parentac48dfe87039078897ed719af26744eca776508c (diff)
downloadillumos-joyent-7fc5d2a453d54fb46bb4a17b2bd1b59b0a711575.tar.gz
6880217 installgrub fails to configure GRUB menu for logical/extended partition
Diffstat (limited to 'usr/src/cmd/boot/installgrub/message.h')
-rw-r--r--usr/src/cmd/boot/installgrub/message.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/usr/src/cmd/boot/installgrub/message.h b/usr/src/cmd/boot/installgrub/message.h
index 594a7da1a1..8bc491f71c 100644
--- a/usr/src/cmd/boot/installgrub/message.h
+++ b/usr/src/cmd/boot/installgrub/message.h
@@ -34,13 +34,20 @@ extern "C" {
#define DRY_RUN gettext("dry run--nothing will be written to disk\n")
-#define BOOTPAR gettext("Solaris partition not found. Abort operation.\n")
+#define NOSOLPAR \
+ gettext("Solaris partition not found. Aborting operation.\n")
-#define BOOTPAR_INACTIVE gettext("Solaris boot partition inactive.\n")
+#define NOBOOTPAR \
+ gettext("Solaris x86 boot partition not found. Aborting operation.\n")
+
+#define SOLPAR_INACTIVE gettext("Solaris fdisk partition is inactive.\n")
#define BOOTPAR_NOTFOUND \
gettext("Solaris boot partition not found on %s\n")
+#define EXTSOLPAR \
+ gettext("Solaris in extended partition. -m (MBR) option required\n")
+
#define NOT_RAW_DEVICE gettext("device %s is not a char special device\n")
#define NOT_ROOT_SLICE gettext("raw device must be a root slice (not s2)\n")
@@ -112,6 +119,8 @@ extern "C" {
#define LIBFDISK_INIT_FAIL gettext("Failed to initialize libfdisk.\n")
+
+
#ifdef __cplusplus
}
#endif