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
|
package harddrake::autoconf;
use common;
use any;
sub xconf {
my ($modules_conf, $o) = @_;
log::l('automatic XFree configuration');
require Xconfig::default;
$o->{raw_X} = Xconfig::default::configure(do_pkgs_standalone->new);
require Xconfig::main;
require do_pkgs;
Xconfig::main::configure_everything_auto_install($o->{raw_X}, do_pkgs_standalone->new, {}, { allowFB => 1 });
modules::load_category($modules_conf, 'various/agpgart');
}
sub network_conf {
my ($obj) = @_;
require network::network;
network::network::easy_dhcp($obj->{modules_conf}, $obj->{netc}, $obj->{intf}) and $obj->{netcnx}{type} = 'lan';
}
sub mouse_conf {
my ($modules_conf) = @_;
require do_pkgs;
require mouse;
mouse::write_conf(do_pkgs_standalone->new, $modules_conf, mouse::detect($modules_conf), 1);
}
sub pcmcia {
my ($pcic) = @_;
#- should be set after installing the package above otherwise the file will be renamed.
setVarsInSh("$::prefix/etc/sysconfig/pcmcia", {
PCMCIA => bool2yesno($pcic),
PCIC => $pcic,
PCIC_OPTS => "",
CORE_OPTS => "",
});
}
1;
|