From 984c025734e1ac79a5b1556be3420941cda7c751 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 3 Aug 2004 02:28:51 +0000 Subject: - add a warning before formatting the key (in the "formatkey" case) - if no key is found, go on --- move/move.pm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'move/move.pm') diff --git a/move/move.pm b/move/move.pm index 1b9ecf61e..093a56165 100644 --- a/move/move.pm +++ b/move/move.pm @@ -288,10 +288,15 @@ sub handleI18NClp { sub clean_partition_table_and_format_key { my ($in) = @_; - my @keys = grep { detect_devices::isKeyUsb($_) } detect_devices::getSCSI(); + my @keys = grep { detect_devices::isKeyUsb($_) } detect_devices::getSCSI() or return; my $key = $in->ask_from_listf('', N("Which USB key do you want to format?"), sub { "$_->{usb_description} ($_->{device})" }, \@keys); + + $in->ask_warn('', N("You are about to format a USB device \"%s\". This will delete all data on it. +Make sure that the selected device is the USB key you want to format. +We advise you to unplug all other USB storage devices while doing this operation.", $key->{usb_description})); + $key->{prefix} ||= $key->{device}; add2hash_($key, partition_table::raw::get_geometry($key->{file} = devices::make($key->{device}))); partition_table::raw::zero_MBR($key); -- cgit v1.2.1