diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-08-29 15:49:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-08-29 15:49:24 +0000 |
commit | b1571b8edcb5cf79dc47b33d7c7f717398f1fa1e (patch) | |
tree | 676088a6ecdfb073c252596a47c048aa3a251b3d | |
parent | 8820baae5bc6c0facf987be483342dbbd40e5597 (diff) | |
download | drakx-b1571b8edcb5cf79dc47b33d7c7f717398f1fa1e.tar drakx-b1571b8edcb5cf79dc47b33d7c7f717398f1fa1e.tar.gz drakx-b1571b8edcb5cf79dc47b33d7c7f717398f1fa1e.tar.bz2 drakx-b1571b8edcb5cf79dc47b33d7c7f717398f1fa1e.tar.xz drakx-b1571b8edcb5cf79dc47b33d7c7f717398f1fa1e.zip |
25mdk
-rw-r--r-- | perl-install/drakxtools.spec | 9 | ||||
-rw-r--r-- | perl-install/harddrake/TODO | 7 | ||||
-rwxr-xr-x | perl-install/standalone/service_harddrake | 4 |
3 files changed, 14 insertions, 6 deletions
diff --git a/perl-install/drakxtools.spec b/perl-install/drakxtools.spec index 282fdd468..a8a912d5b 100644 --- a/perl-install/drakxtools.spec +++ b/perl-install/drakxtools.spec @@ -1,7 +1,7 @@ Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...) Name: drakxtools Version: 1.1.9 -Release: 24mdk +Release: 25mdk Url: http://www.linux-mandrake.com/en/drakx.php3 Source0: %name-%version.tar.bz2 License: GPL @@ -262,6 +262,13 @@ file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && \ %config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http %changelog +* Thu Aug 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-25mdk +- harddrake: + o quit button really work in embedded mode + o move so called eide raid controllers from unknown to ata + controllers +- logdrake: add a scrollbar when embedded in mcc + * Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-24mdk - snapshot for display_info availability in ask_browse for rpmdrake diff --git a/perl-install/harddrake/TODO b/perl-install/harddrake/TODO index 2c7654c75..1dc4434f5 100644 --- a/perl-install/harddrake/TODO +++ b/perl-install/harddrake/TODO @@ -14,10 +14,13 @@ **** isapnp devices *** print "NOT LOADED" if module isn't loaded -** soundrake +** drakesoun *** add a dialog so that the user choose its wavetable. *** package'n patch alsaconf to prevent "alias sound-slot-0 snd-card-0" - +*** blacklist cs4236 and cs46xx +*** list all availlables drivers, defaulting to first alternative, prepending old one with '*' +*** add 'ALSA/OSS': tag to modules list +*** black list cs4281 and cs46xx ** validation: *** see dadou (GUI) diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index b0da37509..6c46720d4 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -62,9 +62,7 @@ foreach (@harddrake::data::tree) { if (my $pid = fork) { require POSIX; POSIX::wait(); - } else { - exec("$configurator 2>/dev/null") or die "$configurator missing\n"; - } + } else { exec("$configurator 2>/dev/null") or die "$configurator missing\n" } } # output new hw config |