diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-03-03 00:16:02 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-03-03 00:16:02 +0000 |
commit | 348d706236d2bf7e09bc8214b657faef0b0a30c5 (patch) | |
tree | e043ef50e51de81b1fc2c670dae47865f272f812 /perl-install/fs.pm | |
parent | ca30149eca5c7153676f70f8546736646a4343b9 (diff) | |
download | drakx-348d706236d2bf7e09bc8214b657faef0b0a30c5.tar drakx-348d706236d2bf7e09bc8214b657faef0b0a30c5.tar.gz drakx-348d706236d2bf7e09bc8214b657faef0b0a30c5.tar.bz2 drakx-348d706236d2bf7e09bc8214b657faef0b0a30c5.tar.xz drakx-348d706236d2bf7e09bc8214b657faef0b0a30c5.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 460631607..d3773a430 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -126,6 +126,8 @@ sub real_format_part { format_dos($part->{device}, @options, '-F', 32); } elsif (isHFS($part)) { format_hfs($part->{device}, @options, '-l', "Untitled"); + } elsif (isBootstrap($part)) { + format_hfs($part->{device}, @options, '-l', "bootstrap"); } elsif (isSwap($part)) { my $check_blocks = grep { /^-c$/ } @options; swap::make($part->{device}, $check_blocks); |