1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
2000-02-21 Pixel <pixel@mandrakesoft.com>
* interactive.pm: add ask_many_from_list_with_help and
ask_many_from_list_with_help_ref
* services.pm: creation, it handles what was in
standalone/drakxservices
2000-02-18 Pixel <pixel@mandrakesoft.com>
* install_steps_gtk.pm (createXconf): added /dev/ (X wants
"/dev/psaux" and not "psaux")
* diskdrake.pm (Create): show start sector even for non-expert on
non-i386
2000-02-16 Pixel <pixel@mandrakesoft.com>
* mouse.pm (detect): add defaults to serial mouse
* install_steps_gtk.pm (createXconf): remove the defaults to
serial mouse
2000-02-15 Pixel <pixel@mandrakesoft.com>
* diskdrake.pm: "After %s partition %s," inlined otherwise does
not please pablo and translators...
2000-02-14 Pixel <pixel@mandrakesoft.com>
* diskdrake.pm (Create): hide start sector choice for non-expert
2000-02-11 Pixel <pixel@mandrakesoft.com>
* partition_table_raw.pm (get_geometry): do not use the cylinder
number given by HDIO_GETGEO cuz limited to 16bits. Compute using
the total_sectors using HDIO_GET_IDENTITY
* c/stuff.xs.pm: added total_sectors (gives the number of sector
of a drive)
* modules.pm (load): ignore error in loading prereq's
* modules.pm (@drivers_by_category): rcpci instead of rcpci45,
z85230 added
* commands.pm (mount): add modules::load_deps otherwise the
fs::mount won't succeed insmoding vfat if needed
2000-02-11 François Pons <fpons@mandrakesoft.com>
* fixed diskdrake to handle limit case when creating and resizing
partition table, address size limit and start sector limit.
2000-02-11 Pixel <pixel@mandrakesoft.com>
* install2.pm (main): add a callback on SEGV
-> message printed
-> that way, ENDs are called (otherwise skipped)
* install_steps_interactive.pm (setup_thiskind): handles the undef
value returned by load_thiskind
* install_steps_interactive.pm (exitInstall): do not call
install_steps::exitInstall
* install_steps (exitInstall): removed
* install_steps (END): added (it does ejectCdrom)
* install_steps_interactive.pm (load_thiskind): returns undef if
error loading a module
* fs.pm (format_part): changed the prototype from $;$@ to $;@
otherwise, @options always have a value (mostly undef) and mkdosfs
fails (with "mkdosfs", "/dev/hdXX", undef, "-F", 32)
* install_steps_interactive.pm (setup_thiskind):
add a $auto_probe_pci that overrules $o->{auto_probe_pci}
(that way no pci probe the second time)
2000-02-10 François Pons <fpons@mandrakesoft.com>
* heavy modification of build_archive and extract_archive to manage
a TOC directly in archive file, handle bzip2 or gzip compression,
extract_archive can extract multiple files a time, with minimal
invocation of uncompress program and follow symlink and expand
directory contents.
* use build_archive/extract_archive for locales.
* fixed a min/max in install_steps_gtk for Resize/Create partition.
* fixed adjustEnd with dos partition table, take care of magic 63
sectors at beginning of partitions, a more solid method should be
used for that.
2000-02-10 Pixel <pixel@mandrakesoft.com>
* modules.pm (load_thiskind): skip modules "unknown" and "ignore"
2000-02-09 Pixel <pixel@mandrakesoft.com>
* partition_table.pm (add): cdie if maximum number of partitions
handled by linux is reached
* Xconfigurator.pm (chooseResolutionsGtk): display the graphic
card or server found
* install_any.pm (relGetFile): for mdkinst files, take care not to
have a double '/' (see debbugs #591)
* install_steps_interactive.pm (configureNetwork):
purpose: add ability to configure both modem and lan
clean up the behaviour
* fs.pm (write_fstab):
purpose: sort the fstab per mount point (cuz /usr must be before /usr/local)
also: rewrite of the part writing the fstab.
|