diff options
author | Francois Pons <fpons@mandriva.com> | 2003-04-01 13:00:32 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-04-01 13:00:32 +0000 |
commit | 91fff6b28d6688d49d2a713bf0b38e4962a3cf92 (patch) | |
tree | 9330f8532b03eb03762db0b0c644d9e5ab6a1b28 /rescue | |
parent | a7e15f7d649924377c706fa3da0f15b9a10a7430 (diff) | |
download | drakx-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.
Diffstat (limited to 'rescue')
-rwxr-xr-x | rescue/tree/etc/oem-all | 5 |
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)"; |