summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
Commit message (Collapse)AuthorAgeFilesLines
* One further step towards the ftp supplementary mediaRafael Garcia-Suarez2004-08-131-3/+8
|
* - don't use compssUsers anymore, use compssUsers.plPascal Rigaux2004-08-131-30/+29
| | | | | | | | - 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-92/+97
| | | | | installs.
* First stab at supporting several hdlists on a supplementary CDRafael Garcia-Suarez2004-08-121-20/+24
|
* Support for ftp supplementary mediaRafael Garcia-Suarez2004-08-111-3/+10
|
* Restore ability to have supplementary http media.Rafael Garcia-Suarez2004-08-111-7/+2
|
* Fix http installs.Rafael Garcia-Suarez2004-08-111-3/+2
|
* perl_checker compliancePascal Rigaux2004-08-111-3/+3
|
* Misleading commentRafael Garcia-Suarez2004-08-111-1/+1
|
* URLPREFIX is not set if the main media isn't http, so the prefix must beRafael Garcia-Suarez2004-08-101-3/+3
| | | | | passed manually.
* install_urpmi(): set up the right with_hdlist for urpmi.cfgRafael Garcia-Suarez2004-08-101-1/+4
|
* Back to first medium after having added a supplementary one.Rafael Garcia-Suarez2004-08-101-3/+8
| | | | | Set prefix for http supplementary media, since $URLPREFIX is not defined.
* Select supplementary mediumRafael Garcia-Suarez2004-08-091-0/+6
|
* Begin the support for installations over multiple media.Rafael Garcia-Suarez2004-08-091-42/+85
|
* add hint about ala LaTeX strings for translatorsThierry Vignaud2004-08-091-2/+6
|
* use new ISO images volume name (#10543)Olivier Blin2004-08-091-1/+2
|
* fix regexp (do not strip paths ending in .*iso)Olivier Blin2004-08-091-1/+1
|
* fix typoPascal Rigaux2004-08-091-1/+1
|
* - fix unlockCdrom()Pascal Rigaux2004-08-091-17/+15
| | | | | - ejectCdrom() prototype compliance with perl_checker
* - switch to mdadm (instead of raidtools)Pascal Rigaux2004-08-081-1/+1
| | | | | | | | | - create mdadm.conf instead of raidtab - internal {raids} is no more indexed by X for mdX, and so don't have holes anymore - internal {chunk-size} is now a number in KiB - internal {raid} is the raid device name, not the number - various cleanup for raid detection
* basic code for upgrading from a redhat distributionPascal Rigaux2004-08-051-2/+2
|
* write auto_inst.cfg after making room on the floppy imagePascal Rigaux2004-08-051-6/+6
|
* make room on replay/auto_install floppy image before doing anythingPascal Rigaux2004-08-051-1/+3
|
* when replaying, overwrite boot.msg with an empty message to win some spacePascal Rigaux2004-08-051-2/+2
| | | | | (it was only done in non-replay mode)
* adapt to bootloader functions now using all_hds instead of hdsPascal Rigaux2004-08-051-1/+1
|
* fix backward compatibility {type} field in partitions and manualFstabPascal Rigaux2004-08-051-2/+6
|
* A small variable renaming: use $medium for hashes and $medium_name for stringsRafael Garcia-Suarez2004-08-031-13/+13
|
* many functions in fsedit don't modify anything, they are simply accessors.Pascal Rigaux2004-08-031-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | 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
* - move package_needed_for_partition_type() from fsedit to fs::formatPascal Rigaux2004-08-021-1/+1
| | | | | - create check_package_is_installed() in fs::format and use it
* don't set mount point /mnt/windows for removable devicesPascal Rigaux2004-07-281-1/+1
|
* - 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
* adapt to new directories layout:Pascal Rigaux2004-07-261-11/+11
| | | | | | | | | | | - Mandrake/mdkinst -> install/stage2/live - Mandrake/base/mdkinst_stage2.bz2 -> install/stage2/mdkinst_stage2.bz2 - Mandrake/base/rpmsrate -> media/media_info/rpmsrate - Mandrake/RPMS -> media/main - images -> install/images - isolinux -> install/isolinux - Mandrake/share/advertising -> install/extra/advertising
* replace pt_type2name($part->{pt_type}) with part2name($part)Pascal Rigaux2004-07-231-1/+1
| | | | | (hoisting the dereferencing {pt_type})
* - %modules::conf is no more a global, so many functions need passing ↵Pascal Rigaux2004-07-211-4/+4
| | | | | | | | | | | | | | | $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
* remove unneeded returnOlivier Blin2004-07-141-1/+1
|
* automatically detect which media are available in install from ISO imagesOlivier Blin2004-07-141-7/+15
|
* - create X_options_from_o() and use itPascal Rigaux2004-07-081-0/+8
| | | | | - add freeDriver boot option
* - move configure_pcmcia() and write_pcmcia() out of modules.pm to install_any.pmPascal Rigaux2004-07-071-0/+39
| | | | | | - load pcmcia_core, $pcic and ds in one call to modules::load - don't pass prefix to write_pcmcia()
* allow medium change in nfs-iso installOlivier Blin2004-07-051-1/+1
|
* big renaming of field {type} to {pt_type},Pascal Rigaux2004-07-051-3/+9
| | | | | | this will allow defining {fs_type} which will always be a string whereas {pt_type} will always be a number
* use internal_error() instead of die'ing with no argumentsPascal Rigaux2004-06-251-1/+1
|
* fix blino stage1 change (i think he likes breaking things ;p)Pascal Rigaux2004-06-251-1/+1
|
* Make perl_checker silentRafael Garcia-Suarez2004-06-251-6/+6
|
* - adapt to new bootloader.pmPascal Rigaux2004-06-251-6/+3
| | | | | - simplify
* Make perl_checker happyRafael Garcia-Suarez2004-06-231-3/+3
|
* Support for supplementary CDs during installation (from the 10.0Rafael Garcia-Suarez2004-06-231-13/+96
| | | | | update branch.)
* in disk-iso install, strip old root from ISOPATH and remove iso file from ↵Olivier Blin2004-06-181-1/+5
| | | | path if present
* in iso install, use ISOPATH environment variable instead of loopback device ↵Olivier Blin2004-06-181-6/+1
| | | | filename (limited to 64 chars)
* add and use install_any::method_allows_medium_changeOlivier Blin2004-06-181-1/+5
|
* in disk-iso install, automatically choose and change ISO images, according ↵Olivier Blin2004-06-181-3/+60
| | | | to their volume id and application id