summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-08-27 09:58:43 +0000
committerThierry Vignaud <tv@mandriva.org>2007-08-27 09:58:43 +0000
commitdfdf67465048d060f7f86cd70d55cb78b6da15d9 (patch)
tree421a29bd65b7117bfa0db071ddbb4845b7591b7b /perl-install/install
parent06778644fe639e20bf25eae532dc5b002af3a808 (diff)
downloaddrakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar
drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar.gz
drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar.bz2
drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar.xz
drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.zip
drop Move support (unused for quite a long time and superceeded by Globetrotter
which itself was obsoleted by Mdv One)
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/any.pm4
-rw-r--r--perl-install/install/gtk.pm22
-rw-r--r--perl-install/install/install2.pm11
-rw-r--r--perl-install/install/steps_gtk.pm10
4 files changed, 6 insertions, 41 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index fd93f0fda..95b18964f 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -27,12 +27,8 @@ our @advertising_images;
sub drakx_version {
my ($o) = @_;
- if ($::move) {
- sprintf "DrakX-move v%s", cat_('/usr/bin/stage2/move.pm') =~ /move\.pm,v (\S+ \S+ \S+)/;
- } else {
my $version = cat__(getFile_($o->{stage2_phys_medium}, "install/stage2/VERSION"));
sprintf "DrakX v%s", chomp_($version);
- }
}
#-######################################################################################
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index 6d21e6c23..dcb30f8a4 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -60,20 +60,6 @@ sub load_rc {
if ($f) {
Gtk2::Rc->parse_string($o->{doc} ? $theme_overriding_for_doc : scalar cat_($f));
}
-
- if ($::move) {
- #- override selection color since we will not do inverse-video on the text when it's images
- Gtk2::Rc->parse_string(q(
-style "galaxy-default"
-{
- base[ACTIVE] = "#CECECE"
- base[SELECTED] = "#CECECE"
- text[ACTIVE] = "#000000"
- text[PRELIGHT] = "#000000"
- text[SELECTED] = "#000000"
-}
-));
- }
}
#------------------------------------------------------------------------------
@@ -100,7 +86,6 @@ widget "*" style "default-font"
#------------------------------------------------------------------------------
sub default_theme {
my ($o) = @_;
- $::move ? '' :
$o->{simple_themes} || $o->{vga16} ? 'blue' : 'galaxy';
}
@@ -110,11 +95,9 @@ sub install_theme {
load_rc($o, $o->{theme} ||= default_theme($o));
load_font($o);
- if (!$::move) {
my $win = gtknew('Window', widget_name => 'background');
$win->realize;
mygtk2::set_root_window_background_with_gc($win->style->bg_gc('normal'));
- }
}
#------------------------------------------------------------------------------
@@ -176,7 +159,7 @@ sub update_steps_position {
sub create_logo_window {
my ($o) = @_;
- return if $::logowidth == 0 || $::move;
+ return if $::logowidth == 0;
mygtk2::may_destroy($o->{logo_window});
@@ -216,11 +199,10 @@ q(<fontconfig>
sub init_sizes {
my ($o) = @_;
($::rootwidth, $::rootheight) = (Gtk2::Gdk->screen_width, Gtk2::Gdk->screen_height);
- $::stepswidth = $::rootwidth <= 640 ? 0 : 200 if !$::move;
+ $::stepswidth = $::rootwidth <= 640 ? 0 : 200;
($::logowidth, $::logoheight) = $::rootwidth <= 640 ? (0, 0) : (800, 75);
($o->{windowwidth}, $o->{windowheight}) = ($::rootwidth - $::stepswidth, $::rootheight - $::helpheight - $::logoheight);
($::real_windowwidth, $::real_windowheight) = (576, 418);
- $::move and $o->{windowwidth} -= 100;
}
sub handle_unsafe_mouse {
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 93c0029eb..5d50eae6c 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -377,7 +377,6 @@ sub main {
rpm_dbapi => sub { $o->{rpm_dbapi} = $v },
nomouseprobe => sub { $o->{nomouseprobe} = $v },
updatemodules => sub { $o->{updatemodules} = 1 },
- move => sub { $::move = 1 },
suppl => sub { $o->{supplmedia} = 1 },
askmedia => sub { $o->{askmedia} = 1 },
}}{lc $n}; &$f if $f;
@@ -400,10 +399,6 @@ sub main {
eval { fs::mount::mount('none', '/sys', 'sysfs', 1) };
eval { touch('/root/non-chrooted-marker.DrakX') }; #- helps distinguishing /root and /mnt/root when we don't know if we are chrooted
- if ($::move) {
- require move;
- move::init($o);
- }
if ($::local_install) {
push @auto,
# 'selectLanguage', 'selectKeyboard', 'miscellaneous', 'selectInstallClass',
@@ -413,7 +408,7 @@ sub main {
$o->{mouse} = mouse::fullname2mouse('Universal|Any PS/2 & USB mice');
}
- $o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : $::move ? "" : "/mnt";
+ $o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : "/mnt";
mkdir $::prefix, 0755;
#- make sure we do not pick up any gunk from the outside world
@@ -531,7 +526,7 @@ sub main {
mouse::load_modules($o->{mouse});
}
- lang::set($o->{locale}) if !$::move;
+ lang::set($o->{locale});
# keep the result otherwise monitor-edid does not return good results afterwards
eval { any::monitor_full_edid() };
@@ -540,7 +535,7 @@ sub main {
$o->{allowFB} = listlength(cat_("/proc/fb"));
- if (!$::move && !$::testing) {
+ if (!$::testing) {
my $product_id = cat__(install::any::getFile_($o->{stage2_phys_medium}, "product.id"));
log::l('product_id: ' . chomp_($product_id));
$o->{product_id} = common::parse_LDAP_namespace_structure($product_id);
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index 7f71a359e..6ba5ec39e 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -47,7 +47,7 @@ sub new($$) {
my @options = $wanted_DISPLAY;
if ($server eq 'Xnest') {
push @options, '-ac', '-geometry', $o->{vga} || ($o->{vga16} ? '640x480' : '800x600');
- } elsif (!$::move) {
+ } else {
install::gtk::createXconf($f, @{$o->{mouse}}{'Protocol', 'device'}, $o->{mouse}{wacom}[0], $Driver);
push @options, '-kb', '-allowMouseOpenFail', '-xf86config', $f if arch() !~ /^sparc/;
@@ -106,13 +106,6 @@ sub new($$) {
@servers = map { if_($_, "Driver:$_") } $card && $card->{Driver}, 'fbdev';
}
- if ($::move && !$::testing) {
- require move;
- require run_program;
- move::automatic_xconf($o);
- @servers = qw(X_move);
- }
-
foreach (@servers) {
log::l("Trying with server $_");
my ($prog, $Driver) = /Driver:(.*)/ ? ('Xorg', $1) : /Xsun|Xnest|^X_move$/ ? $_ : "XF86_$_";
@@ -125,7 +118,6 @@ sub new($$) {
$o->{vga16} = 1 if /VGA16/;
&$launchX($prog, $Driver) and goto OK;
}
- $::move and print("can not launch graphical mode :(\n"), c::_exit(1);
}
return undef;
}