diff options
author | Francois Pons <fpons@mandriva.com> | 2000-05-16 13:18:31 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-05-16 13:18:31 +0000 |
commit | 4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce (patch) | |
tree | 28974a4161d8a464d59781d76ebe52f98a8bc210 /perl-install/install2.pm | |
parent | 70800fea4199313a755c9dda383941f30c3a572a (diff) | |
download | drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar.gz drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar.bz2 drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar.xz drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 721240715..086eeaa3f 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -143,6 +143,33 @@ $o = $::o = { #- packages => [ qw() ], partitioning => { clearall => 0, eraseBadPartitions => 0, auto_allocate => 0 }, #-, readonly => 0 }, #- security => 2, +#arch() =~ /^sparc/ ? ( +# partitions => [ +# { mntpoint => "/", size => 600 << 11, type => 0x83, ratio => 5, maxsize =>1000 << 11 }, +# { mntpoint => "swap", size => 128 << 11, type => 0x82, ratio => 1, maxsize => 400 << 11 }, +# { mntpoint => "/usr", size => 300 << 11, type => 0x83, ratio => 3, maxsize =>1500 << 11 }, +# { mntpoint => "/home", size => 300 << 11, type => 0x83, ratio => 5 }, +# ], +#) : ( +# partitions => [ +# { mntpoint => "/boot", size => 10 << 11, type => 0x83, maxsize => 30 << 11 }, +# { mntpoint => "/", size => 300 << 11, type => 0x83, ratio => 5, maxsize => 1500 << 11 }, +# { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, +# { mntpoint => "/home", size => 300 << 11, type => 0x83, ratio => 5 }, +# ], +#), +#- partitions => [ +#- { mntpoint => "/boot", size => 16 << 11, type => 0x83 }, +#- { mntpoint => "/", size => 256 << 11, type => 0x83 }, +#- { mntpoint => "/usr", size => 512 << 11, type => 0x83, growable => 1 }, +#- { mntpoint => "/var", size => 256 << 11, type => 0x83 }, +#- { mntpoint => "/home", size => 512 << 11, type => 0x83, growable => 1 }, +#- { mntpoint => "swap", size => 64 << 11, type => 0x82 } +#- { mntpoint => "/boot", size => 16 << 11, type => 0x83 }, +#- { mntpoint => "/", size => 300 << 11, type => 0x83 }, +#- { mntpoint => "swap", size => 64 << 11, type => 0x82 }, +#- { mntpoint => "/usr", size => 400 << 11, type => 0x83, growable => 1 }, +#- ], shells => [ map { "/bin/$_" } qw(bash tcsh zsh ash ksh) ], authentication => { md5 => 1, shadow => 1 }, lang => 'en', |