summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-08-01 21:19:32 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-08-01 21:19:32 +0000
commit33c087e17525157acca480a418027ea48e74d9dc (patch)
treece22b929563ca342dfd16f1d871faafdcbc7590f
parent26085d70c812256e153b7e952b9c76fd422dbc71 (diff)
downloaddrakx-backup-do-not-use-33c087e17525157acca480a418027ea48e74d9dc.tar
drakx-backup-do-not-use-33c087e17525157acca480a418027ea48e74d9dc.tar.gz
drakx-backup-do-not-use-33c087e17525157acca480a418027ea48e74d9dc.tar.bz2
drakx-backup-do-not-use-33c087e17525157acca480a418027ea48e74d9dc.tar.xz
drakx-backup-do-not-use-33c087e17525157acca480a418027ea48e74d9dc.zip
finish tvout configuration
-rw-r--r--perl-install/Xconfig/various.pm17
1 files changed, 17 insertions, 0 deletions
diff --git a/perl-install/Xconfig/various.pm b/perl-install/Xconfig/various.pm
index e24416e01..de356c0e3 100644
--- a/perl-install/Xconfig/various.pm
+++ b/perl-install/Xconfig/various.pm
@@ -95,9 +95,26 @@ sub configure_FB_TVOUT {
my ($monitor) = $xfree4->get_monitors;
$xfree4->set_screens({ Device => $device->{Identifier}, Monitor => $monitor->{Identifier} });
+ my $Screen = $xfree4->get_default_screen;
+ $Screen->{Display} = [ map { { l => { Depth => { val => $_ } } } } 8, 16 ];
+
$xfree4->write("$::prefix/etc/X11/XF86Config-4.tvout");
check_XF86Config_symlink();
+
+ {
+ require bootloader;
+ require fsedit;
+ require detect_devices;
+ my ($bootloader, $all_hds) =
+ $::isInstall ? ($::o->{bootloader}, $::o->{all_hds}) :
+ (bootloader::read(), fsedit::hds([ detect_devices::hds() ], {}));
+
+ if (my $tvout = bootloader::duplicate_kernel_entry($bootloader, 'TVout')) {
+ $tvout->{append} .= " XFree=tvout";
+ bootloader::install($bootloader, [ fsedit::get_all_fstab($all_hds) ], $all_hds->{hds});
+ }
+ }
}
sub check_XF86Config_symlink {