diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/harddrake/sound.pm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 616d38390..e1e72d482 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,8 @@ - add support for snd-aw2 - drakboot --boot: o fix dropping grub "configfile" entries when switching to lilo +- draksound: + o move all driver list & troubleshooting in an advanced expander Version 10.6.20 - 18 February 2008 diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index 8ce19880a..55751e42e 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -275,6 +275,7 @@ To use alsa, one can either use: } }, { + advanced => 1, val => N("Trouble shooting"), disabled => sub {}, clicked => sub { &trouble($in) } }, @@ -340,6 +341,7 @@ sub get_any_driver_entry { my ($in, $modules_conf, $driver, $device) = @_; return () if $::isInstall; +{ + advanced => 1, val => N("Let me pick any driver"), disabled => sub {}, clicked => sub { my $old_driver = $driver; |