From a3912a424feb65f9379fa85e387a8dc6a0467bee Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Tue, 3 Oct 2000 15:13:44 +0000 Subject: *** empty log message *** --- Makefile | 1 + perl-install/ChangeLog | 6 ++++++ perl-install/fs.pm | 2 +- perl-install/install2.pm | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fdb5f2971..9e24d212c 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ install: build autoboot rescue ifeq (alpha,$(ARCH)) cp -f $(BOOT_RDZ) $(ROOTDEST)/boot cp -f vmlinux.gz $(ROOTDEST)/boot/instboot.gz + install -m 0755 live_update $(ROOTDEST)/live_update # sudo install -d /mnt/loop # for i in $(ROOTDEST)/images/disks/*; do \ # sudo mount $$i /mnt/loop -o loop ;\ diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog index a645c39c4..9c7aa998e 100644 --- a/perl-install/ChangeLog +++ b/perl-install/ChangeLog @@ -1,3 +1,9 @@ +2000-10-03 François Pons + + * fs.pm: removed no more used log. + + * install2.pm: add exit button if live upgrade. + 2000-10-03 DrakX * snapshot uploaded diff --git a/perl-install/fs.pm b/perl-install/fs.pm index d29d9d095..83f4676d5 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -54,7 +54,7 @@ sub check_mounted($) { open H, "/proc/swaps"; foreach (, , ) { foreach my $p (@$fstab) { - /$p->{device}\s+([^\s]*)\s+/ and $p->{mntpoint} = $1, $p->{isMounted} = $p->{isFormatted} = 1, print STDERR "ok for $p->{mntpoint} with mounted=$p->{isMounted}\n"; + /$p->{device}\s+([^\s]*)\s+/ and $p->{mntpoint} = $1, $p->{isMounted} = $p->{isFormatted} = 1; } } } diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 533d9fd51..2f3fd70f0 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -62,7 +62,7 @@ arch() !~ /alpha/ ? ( arch() !~ /alpha/ ? ( generateAutoInstFloppy => [ __("Auto install floppy"), 1, 1, '!$::expert || $o->{lnx4win}', "installPackages" ], ) : (), - exitInstall => [ __("Exit install"), 0, 0, '$::beginner' ], + exitInstall => [ __("Exit install"), 0, 0, '$::beginner && !$::live' ], ); for (my $i = 0; $i < @installSteps; $i += 2) { my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] }; -- cgit v1.2.1