summaryrefslogtreecommitdiffstats
path: root/perl-install/ChangeLog
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-05-04 10:56:24 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-05-04 10:56:24 +0000
commit59b4f44effc1651c0b6cd67d477449931817aedb (patch)
treeb38c8f0b6d674cc42a6e517f4be6071314d2902d /perl-install/ChangeLog
parent602031f419d1dc6db0e0fae7d8519176483f0fde (diff)
downloaddrakx-59b4f44effc1651c0b6cd67d477449931817aedb.tar
drakx-59b4f44effc1651c0b6cd67d477449931817aedb.tar.gz
drakx-59b4f44effc1651c0b6cd67d477449931817aedb.tar.bz2
drakx-59b4f44effc1651c0b6cd67d477449931817aedb.tar.xz
drakx-59b4f44effc1651c0b6cd67d477449931817aedb.zip
*** empty log message ***
Diffstat (limited to 'perl-install/ChangeLog')
-rw-r--r--perl-install/ChangeLog60
1 files changed, 60 insertions, 0 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
index d44de5686..18b48300f 100644
--- a/perl-install/ChangeLog
+++ b/perl-install/ChangeLog
@@ -1,3 +1,63 @@
+2001/04/30 Guillaume Cottenceau <gc@mandrakesoft.com>
+
+ * mdk-stage1/stdio-frontend.c: nicer layout for progressbar and
+ statusreport, when update_progression
+ Provide some description of the drivers
+
+ * docs/HACKING: fix
+ pserver -> ext
+
+ * mdk-stage1/tools.c, mdk-stage1/Makefile, mdk-stage1/tools.h,
+ mdk-stage1/newt-frontend.c, mdk-stage1/modules_descr.h,
+ mdk-stage1/modules.c: Provide some description of the drivers
+
+2001/04/30 Pixel <pixel@mandrakesoft.com>
+
+ * docs/README: s/gi.tar.bz2/DrakX-*.src.rpm/
+
+ * docs/advocacy: fuck'em all
+
+2001/04/26 François Pons <fpons@mandrakesoft.com>
+
+ * docs/README.devel, docs/README: added some more comments for DrakX code
+ source and usage.
+
+2001/04/25 François Pons <fpons@mandrakesoft.com>
+
+ * tools/oem-prepare: fixed use of VERSION file to find language.
+ prepare a oem disk to be used by moving all files that will not be
+ installed by oem (oem-master disk preparation).
+
+ * rescue/tree/etc/closurepkgs, rescue/tree/etc/part_and_bootloader: fixed
+ usage of free space on disk, added NVIDIA packages to install.
+
+ * rescue/tree/etc/oem-server: added missing VERSION file.
+ fixed usage of free space on disk, added NVIDIA packages to install.
+
+ * rescue/tree/etc/oem: added missing autologin package.
+ added option to enable oem mode.
+ added missing VERSION file.
+ fixed usage of free space on disk, added NVIDIA packages to install.
+
+2001/04/24 Guillaume Cottenceau <gc@mandrakesoft.com>
+
+ * mdk-stage1/Makefile: version is labelled "cooker"
+
+2001/04/19 Guillaume Cottenceau <gc@mandrakesoft.com>
+
+ * tools/serial_probe/serial.c, tools/serial_probe/serial_probe.c:
+ integrate fg's fixes for includes
+
+2001/04/19 Stew Benedict <sbenedict@mandrakesoft.com>
+
+ * rescue/list.sparc, rescue/list.i386, rescue/list.ppc, rescue/list.alpha,
+ rescue/list: move /sbin/sfdisk to list.arch, update both list.ppc
+
+2001/04/18 Guillaume Cottenceau <gc@mandrakesoft.com>
+
+ * mdk-stage1/network.c: fix bug that trashes the network config of stage1
+ during stage2, when no DNS is provided
+
2001/04/18 dam's <damien@mandrakesoft.com>
* standalone/net_monitor: last corrections
es::pci_probe(); } sub find_pci_device { my (@devices) = @_; any { my $dev = $_; any { $_->{vendor} == $dev->[0] && $_->{id} == $dev->[1] } pci_probe() } @devices; } sub probe_acpi_cpufreq() { any { get_vendor($_) eq "Intel" && $_->{'cpu family'} == 6 && ( has_flag($_, 'est') || $_->{model} == 11 ); } get_cpus(); } # see cpuid.c (from cpuid package) for a list of family/models sub probe_centrino() { any { get_vendor($_) eq "Intel" && has_flag($_, 'est') && ( ($_->{'cpu family'} == 6 && $_->{model} == 9 && $_->{stepping} == 5 && $_->{'model name'} =~ /^Intel\(R\) Pentium\(R\) M processor ( 900|1[0-7]00)MHz$/) || ($_->{'cpu family'} == 6 && $_->{model} == 13 && member($_->{stepping}, 1, 2, 6)) || ($_->{'cpu family'} == 15 && $_->{model} == 3 && $_->{stepping} == 4) || ($_->{'cpu family'} == 15 && $_->{model} == 4 && $_->{stepping} == 1) ); } get_cpus(); } sub probe_ich() { find_pci_device([ 0x8086, 0x244c ], [ 0x8086, 0x24cc ], [ 0x8086, 0x248c ]) } sub probe_smi() { find_pci_device([ 0x8086, 0x7190 ]) } sub probe_nforce2() { find_pci_device([ 0x10de, 0x01e0 ]) } sub probe_gsx() { (any { member(get_vendor($_), "Cyrix", "NSC") } get_cpus()) && find_pci_device([ 0x1078, 0x0100 ], [ 0x1078, 0x0002 ], [ 0x1078, 0x0000 ]); } sub probe_powerpc() { arch() =~ /ppc/ && any { member($_->{motherboard}, ('PowerBook3,4', 'PowerBook3,5', 'PowerBook4,1', 'PowerBook3,2', 'MacRISC3')) && # Kernel contains a special case for the supported 750FX, # not sure if the cpu name can be used, so use same test as kernel first($_->{revision} =~ /\bpvr\s+(\d+)\b/) == 7000; } get_cpus(); } sub probe_p4() { any { get_vendor($_) eq "Intel" && ( $_->{'cpu family'} == 15 || ($_->{'cpu family'} == 6 && !has_flag($_, 'est') && member($_->{model}, 9, 13, 14, 15)) ); } get_cpus(); } sub probe_powernow_k6() { any { get_vendor($_) eq "AMD" && $_->{'cpu family'} == 5 && member($_->{model}, 12, 13); } get_cpus(); } sub probe_powernow_k7() { any { get_vendor($_) eq "AMD" && $_->{'cpu family'} == 6; } get_cpus(); } sub probe_powernow_k8() { any { get_vendor($_) eq "AMD" && $_->{'cpu family'} == 15 && ($_->{'power management'} =~ /\bfid\b/ || has_flag($_, 'fid')); # frequency ID control } get_cpus(); } sub probe_longhaul() { any { get_vendor($_) eq "Centaur" && $_->{'cpu family'} == 6 && member($_->{model}, 6, 7, 8, 9); } get_cpus(); } sub probe_longrun() { any { get_vendor($_) eq "Transmeta" && has_flag($_, 'longrun'); } get_cpus(); } my @modules = ( # probe centrino first, it will get detected on ICH chipset and # speedstep-ich doesn't work with it [ "speedstep-centrino", \&probe_centrino ], [ "acpi-cpufreq", \&probe_acpi_cpufreq ], # try to find cpufreq compliant northbridge [ "speedstep-ich", \&probe_ich ], [ "speedstep-smi", \&probe_smi ], [ "cpufreq-nforce2", \&probe_nforce2 ], [ "gsx-suspmod", \&probe_gsx ], # try to find a cpufreq compliant processor [ "p4-clockmod", \&probe_p4 ], [ "powernow-k6", \&probe_powernow_k6 ], [ "powernow-k7", \&probe_powernow_k7 ], [ "powernow-k8", \&probe_powernow_k8 ], [ "longhaul", \&probe_longhaul ], [ "longrun", \&probe_longrun ], ); sub find_driver() { my $m = find { $_->[1]->() } @modules; $m && $m->[0]; } my @governor_modules = map { "cpufreq_$_" } qw(performance powersave conservative ondemand); sub get_modules() { my $module; if (probe_powerpc() || ($module = find_driver())) { return if_($module, $module), @governor_modules; } (); } 1;