summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2003-04-01 13:00:32 +0000
committerFrancois Pons <fpons@mandriva.com>2003-04-01 13:00:32 +0000
commit91fff6b28d6688d49d2a713bf0b38e4962a3cf92 (patch)
tree9330f8532b03eb03762db0b0c644d9e5ab6a1b28
parenta7e15f7d649924377c706fa3da0f15b9a10a7430 (diff)
downloaddrakx-backup-do-not-use-91fff6b28d6688d49d2a713bf0b38e4962a3cf92.tar
drakx-backup-do-not-use-91fff6b28d6688d49d2a713bf0b38e4962a3cf92.tar.gz
drakx-backup-do-not-use-91fff6b28d6688d49d2a713bf0b38e4962a3cf92.tar.bz2
drakx-backup-do-not-use-91fff6b28d6688d49d2a713bf0b38e4962a3cf92.tar.xz
drakx-backup-do-not-use-91fff6b28d6688d49d2a713bf0b38e4962a3cf92.zip
added restore into boot_entries default value, increased hd install size from
1500 MB to 2500 MB to include current ackbar cooker repository.
-rwxr-xr-xrescue/tree/etc/oem-all5
1 files changed, 3 insertions, 2 deletions
diff --git a/rescue/tree/etc/oem-all b/rescue/tree/etc/oem-all
index 431185158..bd2f571a8 100755
--- a/rescue/tree/etc/oem-all
+++ b/rescue/tree/etc/oem-all
@@ -121,7 +121,7 @@ unless (-e "/cdrom/VERSION") {
$options{free_size} = 500;
$options{free_primary} = 1;
$options{free_fs} = 'fat32';
-$options{boot_entries} = 'linux,linux-nonfb,failsafe,floppy';
+$options{boot_entries} = 'linux,linux-nonfb,restore,failsafe,floppy';
$options{kernel} = "acpi=off";
open F, "/cdrom/VERSION" or die "no installation cdrom found on $cd";
@@ -203,7 +203,8 @@ Type \`\`yes'' and [enter] to go on\n"
my $min_size = $options{min_size} || 4000;
my $def_size = $options{def_size} || 3500;
my $trigger_size = $options{trigger_size} || 4000;
-my $inst_size = $options{inst_size} || 1500;
+#my $inst_size = $options{inst_size} || 1500;
+my $inst_size = $options{inst_size} || 2500;
my $swap_size = $options{swap_size} || 128;
$hd_size > $min_size or die "hard disk is too small to contain oem install (${hd_size}MB found, need $min_size at least)";