From d0fb319e82169386748d327dbe6490864e30df02 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 25 Oct 2007 15:21:26 +0000 Subject: do not uppercase label anymore for vfat partitions, nash with vol_id seems to handle it fine --- draklive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draklive b/draklive index b647aa6..e708180 100755 --- a/draklive +++ b/draklive @@ -942,7 +942,7 @@ sub get_media_source_for_nash { my $label = get_media_label($media); #- strip vfat labels to 11 chars and upper-case it $label && get_media_setting($media, 'fs') eq 'vfat' ? - 'LABEL=' . uc(substr($label, 0, 11)) : + 'LABEL=' . substr($label, 0, 11) : get_media_setting($media, 'source'); } -- cgit v1.2.1