diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | docs/README | 15 | ||||
-rw-r--r-- | docs/TODO | 4 | ||||
-rw-r--r-- | perl-install/Makefile | 2 | ||||
-rw-r--r-- | perl-install/fs.pm | 7 | ||||
-rw-r--r-- | perl-install/install2.pm | 27 | ||||
-rw-r--r-- | perl-install/install_any.pm | 40 | ||||
-rw-r--r-- | perl-install/install_steps.pm | 5 | ||||
-rw-r--r-- | perl-install/lang.pm | 2 | ||||
-rw-r--r-- | perl-install/partition_table_raw.pm | 1 | ||||
-rw-r--r-- | perl-install/pkgs.pm | 2 | ||||
-rw-r--r-- | perl-install/share/compssList | 10 |
12 files changed, 90 insertions, 29 deletions
@@ -11,12 +11,12 @@ install: build cp -f $(BOOT_IMG) $(ROOTDEST)/images ; rm $(ROOTDEST)/images/*_ks.img make -C perl-install full_stage2 -build: dirs $(BOOT_IMG) +build: $(BOOT_IMG) dirs: for i in $(DIRS); do make -C $$i; done -$(BOOT_IMG): modules +$(BOOT_IMG): modules dirs make dirs ./make_boot_img $@ $(@:gi_%.img=%) diff --git a/docs/README b/docs/README index 1846cb03a..92248f63f 100644 --- a/docs/README +++ b/docs/README @@ -1,10 +1,10 @@ -Well here is a little description of what panoramix needs to work in comparison +Well here is a little description of what DrakX needs to work in comparison to the standard newt install. ******************************************************************************** * CVS ************************************************************************** ******************************************************************************** -Like all good free software, panoramix is in CVS :) +Like all good free software, DrakX is in CVS :) You can access it using: % export CVSROOT=:pserver:anoncvs@linux-mandrake.com:/home/cvs/cooker @@ -40,12 +40,13 @@ First he are the different things needed : Mandrake/base/hdlist table of rpm's headers. - ! Need to be remade when Mandrake/RPMS changes ! + ! Need to be remade when Mandrake/RPMS changes (with ``misc/genhdlist .'') ! Mandrake/base/depslist for each packages, tell which package it depends on. Also contains the size for some (obscure) bloody reasons. ! Need to be remade when Mandrake/RPMS changes ! + (with ``misc/gendepslist -h Mandrake/base/depslist Mandrake/base/hdlist'') Mandrake/base/compss obsoletes comps. It store packages in different categories, a bit like @@ -70,7 +71,7 @@ Mandrake/base/mdkinst_stage2.gz See ``Ramdisk or not'' below for more. images/gi_*.img - boot images to use with panoramix. Use: + boot images to use with DrakX. Use: - gi_hd for hard-disk install - gi_cdrom for cdrom install - gi_network for ftp/nfs install @@ -116,7 +117,7 @@ set to developer (!)... * po translation files ********************************************************* ******************************************************************************** DrakX uses .po files for its translation. A script takes the different -strings out of the .pm files. It generates the panoramix.pot file which contains +strings out of the .pm files. It generates the DrakX.pot file which contains all the english strings to translate. To add a new language, you just have to add it to lang.pm (if it's not there already) and put the .po in the perl-install/po directory (see ``Ramdisk or @@ -134,11 +135,11 @@ gi_pcmcia disk. ******************************************************************************** * Ramdisk or not *************************************************************** ******************************************************************************** -The panoramix install is much bigger than the newt one. So the ramdisk which was +The DrakX install is much bigger than the newt one. So the ramdisk which was used is getting big, and costs a lot in memory (eg: the mdkinst_stage2 is 14MB - 23/09/99) -| | newt | panoramix +| | newt | DrakX |-------+---------+---------------------------------------------------------- | nfs | live | live | ftp | ramdisk | ramdisk @@ -2,6 +2,10 @@ bug: if u choose mouse usb != found mouse, it fails at X config i18n +wizard for partitioning in case of one full vfat + +update devices.c from modules.pm + diskdrake in text mode standalone applications for configuration diff --git a/perl-install/Makefile b/perl-install/Makefile index af5c289a3..f0dc744d9 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -153,4 +153,4 @@ full_stage2: stage2: $(MAKE) install_pms - ../make_mdkinst_stage2 $(DEST) $(ROOTDEST)/Mandrake/base/mdkinst_stage2 + $(ROOTDEST)/misc/make_mdkinst_stage2 $(DEST) $(ROOTDEST)/Mandrake/base/mdkinst_stage2 diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 1a81a238a..1bf3293a1 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -186,8 +186,9 @@ sub umount_all($;$) { } #- do some stuff before calling write_fstab -sub write($$) { - my ($prefix, $fstab) = @_; +sub write($$$) { + my ($prefix, $fstab, $manualFstab) = @_; + $fstab = [ @{$fstab||[]}, @{$manualFstab||[]} ]; log::l("resetting /etc/mtab"); local *F; @@ -228,7 +229,7 @@ sub write_fstab($;$$) { $options ||= $_->{options}; isExt2($_) and ($freq, $passno) = (1, ($_->{mntpoint} eq '/') ? 1 : 2); - isNfs($_) and ($dir, $options) = ('', 'ro'); + isNfs($_) and $dir = '', $options ||= 'ro,rsize=8192,wsize=8192'; #- keep in mind the new line for fstab. @new{($_->{mntpoint}, $_->{"$dir$_->{device}"})} = undef; diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 0a7328e26..ec7d0a666 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -308,6 +308,10 @@ sub partitionDisks { } $o->{fstab} = [ fsedit::get_fstab(@{$o->{hds}}, $o->{raid}) ]; fsedit::get_root($o->{fstab}) or die _("Partitioning failed: no root filesystem"); + + cat_("/proc/mounts") =~ m|(\S+)\s+/tmp/rhimage nfs| && + !grep { $_->{mntpoint} eq "/mnt/nfs" } @{$o->{manualFstab} || []} and + push @{$o->{manualFstab}}, { type => "nfs", mntpoint => "/mnt/nfs", device => $1, options => "noauto,ro,rsize=8192,wsize=8192" }; } sub formatPartitions { @@ -345,7 +349,7 @@ sub doInstallStep { #- some packages need such files for proper installation. install_any::write_ldsoconf($o->{prefix}); - fs::write($o->{prefix}, $o->{fstab}); + fs::write($o->{prefix}, $o->{fstab}, $o->{manualFstab}); $o->beforeInstallPackages; $o->installPackages($o->{packages}); @@ -480,15 +484,20 @@ sub main { newt => sub { $o->{interactive} = "newt" }, text => sub { $o->{interactive} = "newt" }, stdio => sub { $o->{interactive} = "stdio"}, -# ks => sub { $::auto_install = 1; $cfg = $v; }, -# kickstart => sub { $::auto_install = 1; $cfg = $v; }, - auto_install => sub { $::auto_install = 1; $cfg = $v; }, + ks => sub { $::auto_install = 1 }, + kickstart => sub { $::auto_install = 1 }, + auto_install => sub { $::auto_install = 1 }, simple_themes => sub { $o->{simple_themes} = 1 }, alawindows => sub { $o->{security} = 0; $o->{partitioning}{clearall} = 1; $o->{bootloader}{crushMbr} = 1 }, g_auto_install => sub { $::testing = $::g_auto_install = 1; $o->{partitioning}{auto_allocate} = 1 }, }}{lc $n}; &$f if $f; } %cmdline; + if ($::g_auto_install) { + (my $root = `/bin/pwd`) =~ s|(/[^/]*){5}$||; + symlinkf $root, "/tmp/rhimage" or die "unable to create link /tmp/rhimage"; + } + unlink "/sbin/insmod" unless $::testing; unlink "/modules/pcmcia_core.o" unless $::testing; #- always use module from archive. unlink "/modules/i82365.o" unless $::testing; @@ -518,7 +527,13 @@ sub main { if ($::auto_install) { require 'install_steps_auto_install.pm'; - } else { + eval { $o = $::o = install_any::loadO($o, "floppy") }; + if ($@) { + log::l("error using auto_install, continuing"); + $::auto_install = undef; + } + } + unless ($::auto_install) { $o->{interactive} ||= 'gtk'; require"install_steps_$o->{interactive}.pm"; } @@ -588,7 +603,7 @@ sub main { } substInFile { s|/sbin/mingetty tty1.*|/bin/bash --login| } "$o->{prefix}/etc/inittab" if $o->{security} < 1; - fs::write($o->{prefix}, $o->{fstab}); + fs::write($o->{prefix}, $o->{fstab}, $o->{manualFstab}); modules::write_conf("$o->{prefix}/etc/conf.modules", 'append'); install_any::lnx4win_postinstall($o->{prefix}) if $o->{lnx4win}; diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index e1883aa06..38ee82099 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -375,7 +375,7 @@ sub setupFB { 1; } -sub auto_inst_file() { "$::o->{prefix}/root/auto_inst.cfg.pl" } +sub auto_inst_file() { ($::g_auto_install ? "/tmp" : "$::o->{prefix}/root") . "/auto_inst.cfg.pl" } sub g_auto_install(;$) { my ($f) = @_; $f ||= auto_inst_file; @@ -386,7 +386,7 @@ sub g_auto_install(;$) { my @fields = qw(mntpoint type size); $o->{partitions} = [ map { my %l; @l{@fields} = @$_{@fields}; \%l } grep { $_->{mntpoint} } @{$::o->{fstab}} ]; - exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(lang autoSCSI authentification printer mouse netc timezone superuser intf keyboard mkbootdisk base users installClass partitioning); #- TODO modules bootloader + exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(lang autoSCSI authentification printer mouse netc timezone superuser intf keyboard mkbootdisk base users installClass partitioning isUpgrade X manualFstab); #- TODO modules bootloader #- local $o->{partitioning}{clearall} = 1; @@ -407,9 +407,12 @@ sub loadO { $f = "/mnt/$f"; } -e $f or $f .= ".pl"; + + my $b = before_leaving { + fs::umount("/mnt") unless $::testing; + modules::unload($_) foreach qw(vfat fat); + }; $o = loadO($O, $f); - fs::umount("/mnt") unless $::testing; - modules::unload($_) foreach qw(vfat fat); } else { -e $f or $f .= ".pl"; { @@ -436,3 +439,32 @@ sub fsck_option() { my $y = $::o->{security} < 3 && $::beginner ? "-y " : ""; substInFile { s/^(\s*fsckoptions="?)(-y )?/$1$y/ } "$::o->{prefix}/etc/rc.d/rc.sysinit"; } + +sub install_urpmi { + my ($prefix, $method) = @_; + + (my $name = _("installation_cd")) =~ s/\s/_/g; #- in case translators are too good :-/ + + my $f = "$prefix/etc/urpmi/hdlist.$name"; + { + my $fd = getFile("hdlist") or return; + local *OUT; + open OUT, ">$f" or log::l("failed to write $f"), return; + local $/ = \ (16 * 1024); + print OUT foreach <$fd>; + } + { + local *LIST; + open LIST, ">$prefix/etc/urpmi/list.$name" or log::l("failed to write list.$name"), return; + + my $dir = ${{ nfs => "file://mnt/nfs", + ftp => $ENV{URLPREFIX}, + cdrom => "removable_cdrom_1://mnt/cdrom" }}{$method}; + local *FILES; open FILES, "hdlist2files $f|"; + chop, print LIST "$dir/Mandrake/RPMS/$_\n" foreach <FILES>; + close FILES or die "hdlist2files failed"; + } + run_program::rooted($prefix, "urpmi.update"); +} + +1; diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index afc872b6b..0f58aacc8 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -228,6 +228,9 @@ sub afterInstallPackages($) { run_program::rooted($o->{prefix}, "kudzu", "-q"); # -q <=> fermetagueuleconnard $o->pcmciaConfig(); + + my $p = $o->{packages}{urpmi}; + install_any::install_urpmi($o->{prefix}, $o->{method}) if $p && $p->{selected}; } #------------------------------------------------------------------------------ @@ -412,6 +415,8 @@ sub addUser($) { } commands::chown_("-r", "$_->{uid}.$_->{gid}", "$p$_->{home}") if $_->{uid} != $_->{oldu} || $_->{gid} != $_->{oldg}; + + run_program::rooted($p, "usermod", "-G", "urpmi", $_->{name}) if $o->{security} < 3; } } diff --git a/perl-install/lang.pm b/perl-install/lang.pm index aa2bf1e3c..b019cd747 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -97,7 +97,7 @@ my %charsets = ( "jisx0208" => [ "????", "????", "-*-*-*-*-*-*-*-*-*-*-*-*-jisx*.*-0" ], "koi8-r" => [ "Cyr_a8x16", "koi2alt", std("koi8-r") ], - "koi8-u" => [ "ruscii_8x16", "koi2alt", std("koi2-u") ], + "koi8-u" => [ "ruscii_8x16", "koi2alt", std("koi8-u") ], #- korean needs special console driver for text mode "ksc5601" => [ "?????", "?????", "-*-*-*-*-*-*-*-*-*-*-*-*-ksc5601.1987-*" ], diff --git a/perl-install/partition_table_raw.pm b/perl-install/partition_table_raw.pm index fc9bf1648..74b9b6036 100644 --- a/perl-install/partition_table_raw.pm +++ b/perl-install/partition_table_raw.pm @@ -22,6 +22,7 @@ my @MBR_signatures = ( [ 'BootStar', 0x130, "BootStar:" ], [ 'DocsBoot', 0x148, 'DocsBoot' ], [ 'system_commander', 0x1ad, "SYSCMNDRSYS" ], + [ 'os2', 0x1c2, "\xA" ], [ 'dos', 0xa0, "\x25\x03\x4E\x02\xCD\x13" ], [ 'dos', 0x60, "\xBB\x00\x7C\xB8\x01\x02\x57\xCD\x13\x5F\x73\x0C\x33\xC0\xCD\x13" ], #- nt's [ 'freebsd', 0xC0, "\x00\x30\xE4\xCD\x16\xCD\x19\xBB\x07\x00\xB4" ], diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 55fcb1caf..60ccfcf43 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -18,7 +18,7 @@ XFree86-P9000 XFree86-S3 XFree86-S3V XFree86-SVGA XFree86-W32 XFree86-I128 XFree86-Sun XFree86-SunMono XFree86-Sun24 XFree86-3DLabs kernel-BOOT MySQL MySQL_GPL mod_php3 midgard postfix metroess metrotmpl hackkernel hackkernel-BOOT hackkernel-fb hackkernel-headers -hackkernel-pcmcia-cs hackkernel-smp hackkernel-smp-fb +hackkernel-pcmcia-cs hackkernel-smp hackkernel-smp-fb autoirpm ); my @preferred = qw( diff --git a/perl-install/share/compssList b/perl-install/share/compssList index eda20824f..ecb55123d 100644 --- a/perl-install/share/compssList +++ b/perl-install/share/compssList @@ -132,7 +132,11 @@ gaddr 45 0 40 gated 1 99 0 gatos 55 0 49 gawk 1 0 87 +gcc 35 0 90 +gcc-c++ 35 0 84 gcc-fr 0 0 0 +gcc-g77 32 0 67 +gcc-objc 31 0 75 gd 25 0 71 gdb 25 0 94 gdbm 25 0 72 @@ -213,6 +217,7 @@ gtkglarea 1 0 0 gtkzip 70 0 58 gtop 70 0 58 guavac 1 0 80 +gurpmi 86 0 86 guile 1 0 75 guile-devel 1 0 75 gv 55 0 49 @@ -470,10 +475,6 @@ perl-GTK 1 0 72 perl-MD5 1 99 75 perl-Parse-RecDescent 1 0 75 perl-PDL 1 0 75 -pgcc 35 0 90 -pgcc-c++ 35 0 84 -pgcc-g77 32 0 67 -pgcc-objc 31 0 75 pidentd 25 99 87 pilot-link 30 0 27 pilot-link-devel 28 0 25 @@ -608,6 +609,7 @@ unarj 18 0 16 units 12 0 10 unzip 70 99 91 urlview 53 0 47 +urpmi 95 0 95 urw-fonts 38 0 34 usermode 71 0 58 usernet 42 0 37 |