summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2010-03-24 16:32:32 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2010-03-24 16:32:32 +0100
commitf3ec30f0e0fa7e27a1bffd86fa806f877251e03b (patch)
treef40757de24e9a816c262947a7ac1279165540751
parent0e60088d33ae1fc2552fc904dc3ecb0072dc3c0a (diff)
make the label/uuid/devicefile options more clear to the user
-rw-r--r--src/core/libs/lib-ui-interactive.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh
index 4be0625..8e5b90e 100644
--- a/src/core/libs/lib-ui-interactive.sh
+++ b/src/core/libs/lib-ui-interactive.sh
@@ -186,10 +186,10 @@ interactive_prepare_disks ()
DISK_CONFIG_TYPE=
[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && show_warning "Rollback may be needed" "It seems you already went here. You should probably rollback previous changes before reformatting, otherwise stuff will probably fail"
[ -z "$PART_ACCESS" ] && PART_ACCESS=dev
- ask_option $PART_ACCESS 'Disk Access Method' 'How do you want your partitions to be accessed?' '' \
- "dev" "directly by /dev/sd??" \
- "label" "by Disk-Label" \
- "uuid" "by Universally Unique Identifier" || return 1
+ ask_option $PART_ACCESS 'Partition Access Method' 'How do you want your partitions to be accessed in grubs menu.lst and /etc/fstab?' '' \
+ "dev" "directly by /dev/* (most intuitive but devicefile names can change on kernel updates)" \
+ "label" "by Disk-Label (Will use the filesystem labels where you give them, and fall back on 'dev' otherwise)" \
+ "uuid" "by Universally Unique Identifier (You don't need to do anything, but doesn't look pretty)" || return 1
PART_ACCESS=$ANSWER_OPTION
while [ "$DONE" = "0" ]
do