diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-18 08:48:29 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-18 08:48:29 +0000 |
commit | b7e849ece2d8641de9c0ab9012df534173bcfaf4 (patch) | |
tree | 2ab94dd0e3fb22bfb2f6c361ebefc145233ee79d /perl-install/fs | |
parent | fee51ddb8fec1601c139a107ab3dcf9d6074e77e (diff) | |
download | drakx-b7e849ece2d8641de9c0ab9012df534173bcfaf4.tar drakx-b7e849ece2d8641de9c0ab9012df534173bcfaf4.tar.gz drakx-b7e849ece2d8641de9c0ab9012df534173bcfaf4.tar.bz2 drakx-b7e849ece2d8641de9c0ab9012df534173bcfaf4.tar.xz drakx-b7e849ece2d8641de9c0ab9012df534173bcfaf4.zip |
- create /dev/cdrom symlink for installer (#36703)
do create the symlink to have it during install
(otherwise fs::wild_device::from_part will give a non accessible device)
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/any.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index e84f572a1..a3277131b 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -58,6 +58,7 @@ sub set_cdrom_symlink { my $alias = basename($_->{mntpoint}) or next; log::l("using alias $alias for $_->{device}"); $_->{device_alias} = $alias; + symlink($_->{device}, "/dev/$alias") if $::prefix; # do create the symlink to have it during install (otherwise fs::wild_device::from_part will give a non accessible device) symlink($_->{device}, "$::prefix/dev/$alias"); } } |