diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-28 16:49:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-28 16:49:40 +0000 |
commit | 0a88a897a03e16387cb34c987a732d7d48114cd8 (patch) | |
tree | 6aecc63af6f8b449adc6f754ea20182d237353d4 /perl-install | |
parent | ab2280fbe8e79373628db732bf8c2a75828155b8 (diff) | |
download | drakx-0a88a897a03e16387cb34c987a732d7d48114cd8.tar drakx-0a88a897a03e16387cb34c987a732d7d48114cd8.tar.gz drakx-0a88a897a03e16387cb34c987a732d7d48114cd8.tar.bz2 drakx-0a88a897a03e16387cb34c987a732d7d48114cd8.tar.xz drakx-0a88a897a03e16387cb34c987a732d7d48114cd8.zip |
- fix ensuring X is launched on tty7 (cf #37087)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6a05e333e..c6c20e3cc 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- fix ensuring X is launched on tty7 (cf #37087) - fix handling LVM VGs with "-" in the name (#37267) - call X with -nolisten tcp to avoid "security" issues (#18320) (nb: this implies "xhost+" helper prog is not useful anymore) diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 8d18c4d06..933b2c313 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -52,7 +52,7 @@ sub new($$) { install::gtk::createXconf($f, @{$o->{mouse}}{'Protocol', 'device'}, $o->{mouse}{wacom}[0], $Driver); push @options, '-allowMouseOpenFail', '-xf86config', $f if arch() !~ /^sparc/; - push @options, 'tty7', '-s', '240'; + push @options, 'vt7', '-s', '240'; push @options, '-nolisten', 'tcp'; #- old weird servers: Xsun |