diff options
author | Francois Pons <fpons@mandriva.com> | 2000-07-19 13:15:15 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-07-19 13:15:15 +0000 |
commit | 59ef5c4f7b0fa1f4fe427f7cc90d90199dfde524 (patch) | |
tree | d756fdd13f1af4e6c6a82274e760904ac92a38b3 /perl-install/any.pm | |
parent | c6697db38742386d84761fb77011ca2f137d554b (diff) | |
download | drakx-59ef5c4f7b0fa1f4fe427f7cc90d90199dfde524.tar drakx-59ef5c4f7b0fa1f4fe427f7cc90d90199dfde524.tar.gz drakx-59ef5c4f7b0fa1f4fe427f7cc90d90199dfde524.tar.bz2 drakx-59ef5c4f7b0fa1f4fe427f7cc90d90199dfde524.tar.xz drakx-59ef5c4f7b0fa1f4fe427f7cc90d90199dfde524.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 23313c5f6..52b33a9ad 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -137,7 +137,9 @@ You can add some more or change the existing ones."), if ($in->ask_from_list_('', _("Which type of entry do you want to add?"), [ __("Linux"), arch() =~ /sparc/ ? __("Other OS (SunOS...)") : __("Other OS (windows...)") ] ) eq "Linux") { - $e = { type => 'image' }; + $e = { type => 'image', + root => '/dev/' . fsedit::get_root($fstab)->{device}, #- assume a good default. + }; $prefix = "linux"; } else { $e = { type => 'other' }; |