diff options
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/service_harddrake | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index ec0cec734..46d57b320 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -7,6 +7,7 @@ use standalone; #- warning, standalone must be loaded very first, for 'expla use common; use interactive; use harddrake::data; +use modules; use Storable qw(store retrieve); my $invert_do_it = $ARGV[0] eq 'X11' ? 1 : 0; @@ -15,6 +16,8 @@ my $last_boot_config = $hw_sysconfdir."/previous_hw"; $last_boot_config .= '_X11' if $invert_do_it; +modules::mergein_conf('/etc/modules.conf'); + # first run ? if not read old hw config my $previous_config = -f $last_boot_config && -s $last_boot_config ? Storable::retrieve($last_boot_config) : {}; $previous_config = $$previous_config if ref($previous_config) !~ /HASH/; @@ -72,4 +75,9 @@ foreach (@harddrake::data::tree) { # output new hw config log::explanations("created file $last_boot_config"); Storable::store(\%config, $last_boot_config); + +# automatic sound slots configuration +harddrake::sound::configure_sound_slots(); +modules::write_conf(); + $in->exit(0); |