From 128f175c1c7ea98dd5fc7aaee1882c34f94054b3 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 4 Oct 2007 12:31:36 +0000 Subject: - use /dev/cdrom in fstab, but do not write corresponding udev rule (the rules will be generated at boot time otherwise it won't catch the hdX/srX switch) (ID_PATH is something like "pci-0000:00:1f.1-ide-1:0", so it can't catch the ide/scsi device name switch that occurs at first boot on a box with cdrom on pata and harddisk on sata) --- perl-install/fs/any.pm | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) (limited to 'perl-install/fs/any.pm') diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index 08886fde3..e84f572a1 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -50,29 +50,12 @@ sub write_hds { @$fstab = fs::get::fstab($all_hds); } -sub set_cdrom_symlink_udev_rule { +sub set_cdrom_symlink { my ($raw_hds) = @_; - my $cdrom_helper = '/lib/udev/cdrom_helper'; - -x "$::prefix$cdrom_helper" or return; - - my $udev_rule = "$::prefix/etc/udev/rules.d/61-block_config.rules"; - if (-e $udev_rule) { - log::l("cleaning $udev_rule from previous cdrom symlink rules"); - substInFile { $_ = '' if /SYMLINK\+="cdrom/ } $udev_rule; - } - foreach (grep { $_->{media_type} eq 'cdrom' } @$raw_hds) { - my @env = ( - 'SUBSYSTEM=block', - run_program::rooted_get_stdout($::prefix, '/lib/udev/path_id', "/block/$_->{device}"), - run_program::rooted_get_stdout($::prefix, '/lib/udev/cdrom_id', "/dev/$_->{device}"), - ); - local %ENV = (%ENV, map { if_(/(.*?)=(.*)/, $1 => $2) } @env); - - log::l("calling $cdrom_helper with ID_PATH=$ENV{ID_PATH}"); - my ($alias) = run_program::rooted_get_stdout($::prefix, $cdrom_helper) =~ /(\w+)/; - + next if $_->{device_alias}; + my $alias = basename($_->{mntpoint}) or next; log::l("using alias $alias for $_->{device}"); $_->{device_alias} = $alias; symlink($_->{device}, "$::prefix/dev/$alias"); -- cgit v1.2.1