summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
Commit message (Collapse)AuthorAgeFilesLines
* (configureNetwork) load all network modules before networkOlivier Blin2004-09-141-0/+1
| | | | | | auto-configuration, so that all interfaces will be available and written in iftab
* The "choose an update mirror" screen was launched without notice whenRafael Garcia-Suarez2004-09-131-0/+1
| | | | | a supplementary ftp media was selected.
* Ability to choose from the mirror list when assing an ftp supplementaryRafael Garcia-Suarez2004-09-131-1/+31
| | | | | media. Fix download of hdlists file for ftp supplementary media.
* add button "Release Notes" in the acceptLicense dialog boxPascal Rigaux2004-09-101-0/+1
|
* minor fix in last patchRafael Garcia-Suarez2004-09-091-1/+3
|
* Re-read all hdlists in reverse order when there are supplementary media.Rafael Garcia-Suarez2004-09-091-1/+1
| | | | | Don't unselect every single media when doing an installation from iso images.
* Fix regexpRafael Garcia-Suarez2004-09-091-1/+1
|
* Don't suggest lost+found as a user name (bug #11298)Rafael Garcia-Suarez2004-09-081-1/+1
|
* drop lang::write()'s prefix parameter in favor of $::prefix (which was ↵Thierry Vignaud2004-09-061-1/+1
| | | | already partially done)
* - don't prompt package groups selection when the available size is 200MB ↵Pascal Rigaux2004-09-061-2/+2
| | | | | | | (instead of 140MB) - when user unselect every groups (ie. the special minimal install case), allow the available size to be lower than needed size
* (setupSCSI) load modularized PATA drivers tooThierry Vignaud2004-09-031-2/+2
|
* Support for unselecting some media before the install (begin.)Rafael Garcia-Suarez2004-08-311-0/+4
|
* no space before a question mark in EnglishPablo Saratxaga2004-08-231-1/+1
|
* - any::setupBootloader() used to call bootloader::install() whereas ↵Pascal Rigaux2004-08-181-17/+5
| | | | | | | install_steps_interactive::setupBootloader() could call it once again (but this code seems dead though) - create any::installBootloader() out of what was done in the end of any::setupBootloader() but also in install_steps_interactive and drakboot (which handled the error that could occur in bootloader::install())
* $::corporate is deadPascal Rigaux2004-08-171-2/+2
|
* get release_notes at beginning of ↵Pascal Rigaux2004-08-171-0/+7
| | | | install_steps_interactive::acceptLicense(), even when useless_thing_accepted
* alsaconf is in alsa-utils package (bug 10358)Olivier Blin2004-08-161-1/+1
|
* - don't use compssUsers anymore, use compssUsers.plPascal Rigaux2004-08-131-32/+27
| | | | | | | | - code to display compssUsers choices is now in compssUsers.pl - {compssUsers} is now a list instead of a hash, and so drop {compssUsersSorted} - rename {compssUsersChoice} to {rpmsrate_flags_chosen} (better name) - i18n_compssUsers is no more needed, add share/compssUsers.pl* to ALLPMS
* Don't ask for the selection of supplementary media in non-interactiveRafael Garcia-Suarez2004-08-131-0/+5
| | | | | installs.
* basic code for upgrading from a redhat distributionPascal Rigaux2004-08-051-1/+1
|
* move mount options related stuff from fs.pm to newly created fs/mount_options.pmPascal Rigaux2004-08-031-1/+1
| | | | | | | | | | | - fs::set_all_default_options() -> fs::mount_options::set_all_default() - fs::mount_options_pack() -> fs::mount_options::pack() - fs::mount_options_unpack() -> fs::mount_options::unpack() - fs::rationalize_options() -> fs::mount_options::rationalize() - fs::set_default_options() -> fs::mount_options::set_default() - fs::mount_options() -> fs::mount_options::list() - fs::mount_options_help() -> fs::mount_options::help()
* many functions in fsedit don't modify anything, they are simply accessors.Pascal Rigaux2004-08-031-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | create fs::get and move them into it - device2part(), up_mount_point() moved from fs to fs::get - part2hd(), file2part(), has_mntpoint(), mntpoint2part(), empty_all_hds() moved from fsedit to fs::get - fsedit::get_root() -> fs::get::root() - fsedit::get_root_() -> fs::get::root_() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes() - fsedit::get_all_fstab() -> fs::get::fstab() - fsedit::get_all_holes() -> fs::get::holes() - fsedit::all_free_space -> fs::get::free_space() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes() - fsedit::get_holes() -> fs::get::hds_holes() - fsedit::get_fstab() -> fs::get::hds_fstab() - fsedit::free_space() -> fs::get::hds_free_space() - fsedit::get_visible_fstab() unused, removed
* authentication::kind2description() has changed and its name is missleading :-(Pascal Rigaux2004-08-031-1/+2
| | | | | keeping it for now and adapt install_steps_interactive::setRootPassword along what's done in drakauth
* - add field {fs_type} partially replacing {pt_type}Pascal Rigaux2004-07-271-6/+8
| | | | | | | | | | | | | | | | | | | | {pt_type} is always a number, {fs_type} is always a string - introduce set_isFormatted() (to ensure {notFormatted} but also {fs_type_from_magic} and {bad_fs_type_magic} are updated) - don't use 0x483 for ext3 anymore (same for reiserfs...), the type_name gives both a pt_type and a fs_type - many accessors from partition_table removed (type2fs(), fs2pt_type()) - remove isThisFs() (not useful anymore since we can use directly {fs_type}) - remove isFat() (inline the function) - other isXXX() from partition_table are moved to fs::type - part2name() is now fs::type::part2type_name - name2pt_type() is now fs::type::type_name2subpart() - partition_table::important_types() is now fs::type::type_names() - fsedit::typeOfPart() is now fs::type::fs_type_from_magic() - no need to truncate type_name since they are shorter
* - %modules::conf is no more a global, so many functions need passing ↵Pascal Rigaux2004-07-211-11/+11
| | | | | | | | | | | | | | | $modules_conf - $modules_conf is a class choosing modules.conf or modprobe.conf (esp. useful after install) (but not working yet!) - modules::load() doesn't use $modules_conf, use modules::load_and_configure() - modules::load() doesn't allow options, use either modules::load_raw() or modules::load_and_configure() - some functions used to want an array ref for modules options and some a string, now every functions use a string - many functions (like modules::get_alias()) are now methods on $modules_conf - some functions in mouse.pm needed a $in where a $do_pkgs is enough - some perl_checker compliance - small fixes
* use correct method variable in chooseCD (even if this code is used only in ↵Olivier Blin2004-07-201-1/+1
| | | | | | | expert mode which isn't anymore supported)
* to_bool is what I was looking for, thanks PixelOlivier Blin2004-07-141-1/+1
|
* perl_checker fix, I should have done it before ...Olivier Blin2004-07-141-1/+1
|
* automatically detect which media are available in install from ISO imagesOlivier Blin2004-07-141-6/+10
|
* - create X_options_from_o() and use itPascal Rigaux2004-07-081-5/+1
| | | | | - add freeDriver boot option
* when adding users during install, suggest the user names found in /homePascal Rigaux2004-07-081-1/+2
|
* - move configure_pcmcia() and write_pcmcia() out of modules.pm to install_any.pmPascal Rigaux2004-07-071-1/+1
| | | | | | - load pcmcia_core, $pcic and ds in one call to modules::load - don't pass prefix to write_pcmcia()
* big renaming of field {type} to {pt_type},Pascal Rigaux2004-07-051-1/+1
| | | | | | this will allow defining {fs_type} which will always be a string whereas {pt_type} will always be a number
* (acceptLicense) just reboot when one cancel the globetrotter first time wizardThierry Vignaud2004-06-241-0/+4
|
* fix method_allows_medium_change calls (I suck)Olivier Blin2004-06-181-1/+1
|
* add and use install_any::method_allows_medium_changeOlivier Blin2004-06-181-2/+2
|
* in disk-iso install, automatically choose and change ISO images, according ↵Olivier Blin2004-06-181-9/+12
| | | | to their volume id and application id
* switch to xorgPascal Rigaux2004-06-081-1/+1
|
* fix typoPascal Rigaux2004-05-121-1/+1
|
* use lang::analyse_locale_name() and lang::analyse_locale_name()Pascal Rigaux2004-05-111-1/+1
|
* fix ugly typo (thanks to perl_checker)Pascal Rigaux2004-05-111-1/+1
|
* blank.img has been removed, so remove special code handling itPascal Rigaux2004-05-031-6/+0
|
* (summary) install alsaconf too for isapnp sound cards (it better handle someThierry Vignaud2004-04-221-2/+2
| | | | | isapnp sound cards)
* typo fixThierry Vignaud2004-04-061-1/+1
|
* perl now handle cleanly utf8 string in exceptions, no need to die \N("...")Pascal Rigaux2004-04-051-2/+2
|
* LSB doesn't need kernel 2.4 anymorePascal Rigaux2004-03-231-7/+0
|
* nice fix for installing locales-XX corresponding the chosen country (using ↵Pascal Rigaux2004-03-111-2/+2
| | | | packagesProviding())
* workaround code trying to install locales-nb (bugzilla #8287)Pascal Rigaux2004-03-111-1/+5
|
* spell Mandrakelinux in one wordThierry Vignaud2004-03-101-1/+1
|
* fix & cleanup generating replay & auto_install imagesPascal Rigaux2004-03-041-6/+10
| | | | | (thanks to David Eastcott)