summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
Commit message (Collapse)AuthorAgeFilesLines
...
* changed interface of detect_devices::install_addons.Francois Pons2003-01-091-1/+1
|
* - configureNetwork step now only does easy_dhcp()Pascal Rigaux2003-01-091-1/+1
| | | | | - added full network configuration to summary
* removed perl_checker warning.Francois Pons2003-01-081-2/+2
|
* added install_addons before leaving.Francois Pons2003-01-081-0/+1
|
* UGLY TEMPORARY FIX: create an /etc/passwd for fontconfigPascal Rigaux2003-01-081-0/+1
|
* - remove help (which was at the bottom)Pascal Rigaux2003-01-071-0/+1
| | | | | | | - wizard style - focus "Next" button by default (this is rough, some dialog boxes *need* changes before being able to complete (think root password dialog))
* cleanupPascal Rigaux2003-01-071-1/+1
|
* - adapt to new setupBootloaderPascal Rigaux2003-01-071-1/+1
| | | | | | - add bootloader configuration in summary (still rough) - various cleanup
* (selectKeyboard): read existing keyboard config even if not upgrading (itPascal Rigaux2003-01-061-4/+2
| | | | | | | | | | | | won't do anything when not upgrading :) (selectInstallClass): do not move step doPartitionDisks after setupSCSI on upgrade (since the "upgrade" part of the job of doPartitionDisks is now done in selectInstallClass) (selectMouse): "addToBeDone mouse::write()" was done only on upgrade, replace it with an "addToBeDone" done in any case which only does "mouse::write()" if $o->{isUpgrade} is set (since isUpgrade *will* be set correctly but is not set at this step)
* - move any::choose_security_level() to security::level::level_choose()Pascal Rigaux2002-12-291-2/+3
| | | | | | - move any::config_security_user() to security::various::config_security_user() - move any::config_libsafe() and security::libsafe::config_libsafe() to security::various::config_libsafe()
* enumerate the various required packages when requiring a package dynamically ↵Pascal Rigaux2002-12-181-0/+3
| | | | known
* drop options "fexpert" and "fbeginner" which used to skip the choice ↵Pascal Rigaux2002-12-121-2/+0
| | | | expert/beginner
* remove code handling setstepPascal Rigaux2002-12-091-11/+0
|
* remove unused code (installCrypto)Pascal Rigaux2002-12-041-5/+0
|
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-17/+17
|
* perl_checker adaptationsPascal Rigaux2002-11-271-2/+2
|
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-2/+2
|
* add/remove some spaces to make perl_checker happyPascal Rigaux2002-11-121-1/+1
|
* add or remove spaces where need to please perl_checkerPascal Rigaux2002-11-111-5/+5
|
* replace availableMemory with availableMemory()Pascal Rigaux2002-11-111-1/+1
|
* make perl_checker happyPascal Rigaux2002-11-061-2/+2
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-2/+2
| | | | | | | | | | | | | | | | | | | rationale: - currently, we use _("xxx") as a shorthand for gettext("xxx"). It also used to call xgettext with --keyword=_ - alas, function &_ is global and not by package (notice esp. that _ is not exported in common.pm) - this lead to big ugly pb with packages defining their own &_, overriding common.pm's &_ - a fix is to set @::textdomains to add a new domain (the default being "libDrakX") but relying on the global "_" is still dangerous!
* basic uml_install support (thanks to Brian Murrell)Pascal Rigaux2002-11-051-2/+3
|
* use each_index instead of map_index when the return value is not usedPascal Rigaux2002-11-051-1/+1
|
* try to fix my fix for blankGuillaume Cottenceau2002-10-021-1/+1
|
* revertGuillaume Cottenceau2002-09-191-3/+0
|
* try to workaround strange situations when mkinitrd fail becauseGuillaume Cottenceau2002-09-191-0/+3
| | | | | | loop is not loaded (we don't know who calls mkinitrd), by loading the loop module right after format-mount'ing the partitions
* do something with "Security Administrator (login or email)"Pascal Rigaux2002-09-121-0/+1
|
* - use variable $::no_ugtk_init in ugtk.pm instead of using $::isInstallPascal Rigaux2002-09-091-0/+1
| | | | | - that way, the X test can be made to work both at install and standalone
* now allow meta_class option on command line to be taken into account instead ofFrancois Pons2002-09-021-2/+1
| | | | | previous options desktop and firewall.
* (formatPartitions): create /dev/null as soon as possible on to be installed ↵Pascal Rigaux2002-08-291-0/+3
| | | | system
* :xPascal Rigaux2002-08-271-1/+1
|
* adapt to mouse::write prototype changePascal Rigaux2002-08-221-1/+1
|
* - fix reading previous keyboard config on upgrade (for displaying in summary)Pascal Rigaux2002-08-121-7/+8
| | | | | | - ensure keyboard and mouse configuration are not overwritten if not explictly modified on upgrade - propagate pci=xxx at install to bootloader (since "pci=bios,biosirq" is needed on some box, see http://islay.dyndns.org/taz/index.html for more)
* use $::prefixPascal Rigaux2002-08-121-1/+1
|
* - remove buttons to change themePascal Rigaux2002-08-081-2/+6
| | | | | | - add F5 to change the theme to the 'white' theme - cleanup the theme code
* allow automatic oem patch. add log if successfull patching.Francois Pons2002-08-071-2/+4
|
* s/__END__/1;Thierry Vignaud2002-08-051-1/+1
|
* kill "wonderful perl"Thierry Vignaud2002-08-051-4/+1
|
* - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}Pascal Rigaux2002-08-011-4/+5
| | | | | | | | - KBCHARSET is $o->{keyboard}{KBCHARSET} - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in sysconfig/keyboard) - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE" - add dialog box to choose GRP_TOGGLE
* allow acceptLicence to be automaticPascal Rigaux2002-07-311-2/+1
|
* make new perl_checker happyPascal Rigaux2002-07-311-1/+0
|
* make new perl_checker happy (and that's not easy!)Pascal Rigaux2002-07-311-1/+1
|
* ensure choosing install-or-upgrade can't be done twicePascal Rigaux2002-07-291-4/+1
| | | | | (since it's badly handled and hard to handle nicely)
* wacom is now inside $mousePascal Rigaux2002-07-281-1/+1
|
* when $::noauto, hardwire no probing in detect_devices::probeall to ensure no ↵Pascal Rigaux2002-07-221-1/+1
| | | | probing is never done
* - set $::prefixPascal Rigaux2002-07-181-3/+1
| | | | | - drop $o->{root} (was "/tmp/root-perl-install" when testing but completly unused)
* fixed reference to step 'selectPackagesToUpgrade'.Francois Pons2002-07-161-2/+1
|
* synced.Francois Pons2002-07-151-5/+3
|
* use perl-URPM instead of rpmtools.Francois Pons2002-07-101-2/+2
|