summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakupdate_fstab
Commit message (Collapse)AuthorAgeFilesLines
* allow SYNC=no option in /etc/sysconfig/dynamicOlivier Blin2004-09-231-4/+6
|
* - add field {part_number} for partitionsPascal Rigaux2004-09-201-0/+1
| | | | | | | | | | | (handle it in subpart_from_wild_device_name(), partition_table::read()) - create migrate_device_names() to handle the change of device names when changing kernel&modules (eg: hde->hda or hda->sda) - change prototype of install_any::use_root_part() (prefix is dropped, optional $in is added) - create fs::type::can_be_this_fs_type() and use it - create devices::part_number() and devices::part_prefix() and use them
* handle options in any orderThierry Vignaud2004-09-081-4/+17
|
* do not use supermount by default for removable devicesOlivier Blin2004-09-021-1/+1
|
* do not restrict "many partitions" test to SCSI devicesOlivier Blin2004-08-301-2/+2
|
* do not mount and add/delete in fstab when many partitions (#11005)Olivier Blin2004-08-301-2/+2
|
* drakupdate_fstab: add debug mode that dumps argv, device list and fstabOlivier Blin2004-08-131-0/+10
| | | | | to make bug reports easier
* (device_name_to_entry) remove unused $variableOlivier Blin2004-08-131-1/+1
|
* (device_name_to_entry) if device looks like a devfs device, setOlivier Blin2004-08-131-1/+1
| | | | | | $e->{devfs_device} to $name even if the device wasn't found in devices list (it helps in case the device has been removed in del mode)
* (device_name_to_entry) remove useless assignmentOlivier Blin2004-08-131-1/+0
|
* (device_name_to_entry) in non devfs case, $e->{device} always equalsOlivier Blin2004-08-131-3/+2
| | | | | to $name, move this test in devfs case
* (device_name_to_entry) don't do brain twisted thingsOlivier Blin2004-08-131-1/+1
| | | | | | ($e->{prefix} || $e->{device}) equals $prefix $prefix . $nb equals $name
* (device_name_to_entry) fix indentationOlivier Blin2004-08-131-1/+1
|
* (device_name_to_entry) define $nb locallyOlivier Blin2004-08-131-6/+4
|
* (device_name_to_entry) recompute $e->{device} only when neededOlivier Blin2004-08-131-3/+1
|
* (device_name_to_entry) do devfs things where they should be doneOlivier Blin2004-08-131-4/+5
|
* (device_name_to_entry) define $e->{devfs_prefix} if entry looks looksOlivier Blin2004-08-131-0/+1
| | | | | | like a devfs one but isn't found in device list (else our computed $e->{devfs_device} will be crappy)
* move mount options related stuff from fs.pm to newly created fs/mount_options.pmPascal Rigaux2004-08-031-3/+3
| | | | | | | | | | | - 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-1/+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
* MandrakeSoft -> MandrakesoftPascal Rigaux2004-07-201-1/+1
|
* use fsedit::is_same_hd in drakupdate_fstab and revert previous change in ↵Olivier Blin2004-06-291-1/+1
| | | | fs::subpart_from_wild_device_name (do not fill both devfs_device and device fields)
* merge floppies support from MDK-10-branchThierry Vignaud2004-06-181-2/+6
|
* really handle LABEL=XXX in fstab (as used by redhat) (no xfs labels yet)Pascal Rigaux2004-05-131-1/+1
|
* don't prefer_devfs_name when reading /proc/mounts (which uses devfs names)Pascal Rigaux2004-05-061-1/+1
|
* fix drakupdate_fstab adding twice an entry in fstab, one with the old name, ↵Pascal Rigaux2004-05-011-1/+5
| | | | one with the devfs name
* - do not pass options is_removable to set_default_options() since it is not ↵Pascal Rigaux2004-03-231-1/+1
| | | | | | | | | a global options - replace it with a flag in the part or raw_hd - set is_removable for part from usb drive - ensure usb partitions are not checked at boot time (freq field in fstab)
* choose wether to use supermount is now based on variable SUPERMOUNT in ↵Pascal Rigaux2004-03-161-1/+1
| | | | /etc/sysconfig/dynamic
* - device_name_to_entry() will not fail anymore so that removing a device worksPascal Rigaux2004-03-031-3/+7
| | | | | | - log calls to drakupdate_fstab - use "find" instead of "grep" where possible
* update copyright noticesThierry Vignaud2004-01-221-1/+1
|
* fix typo (pixel sux)Pascal Rigaux2003-09-151-1/+1
|
* re-enable supermountPascal Rigaux2003-09-091-1/+1
|
* new perl_checker compliancePascal Rigaux2003-04-171-7/+9
|
* have fd0 & fd1 be recognised as known entries, even if we don't probe themPascal Rigaux2003-03-121-0/+1
| | | | | (useful for harddrake)
* allow removing device "non kudzu flagged" (for harddrake)Pascal Rigaux2003-02-271-3/+4
|
* help perl_checkerPascal Rigaux2003-02-131-2/+2
|
* any::get_secure_level() doesn't exist anymore, use security::level::get() ↵Pascal Rigaux2002-12-191-1/+2
| | | | instead (fix titi change)
* fix blind copyright copyThierry Vignaud2002-11-201-1/+1
|
* use flag "kudzu" for entries automatically handled by drakupdate_fstabPascal Rigaux2002-09-111-0/+11
|
* force non-supermount, supermount is too buggyPascal Rigaux2002-09-091-1/+1
|
* do not use standalone (so that no "explaination" are generated)Pascal Rigaux2002-09-041-2/+2
|
* fix check_hard_drivesPascal Rigaux2002-08-291-1/+2
|
* in --auto, print the mount points add/removed for use in hotplugPascal Rigaux2002-08-291-4/+13
|
* - add option --autoPascal Rigaux2002-08-291-1/+19
| | | | | - when --auto, ignore actions on partitions when the drive has extended partitions
* new prog drakupdate_fstabPascal Rigaux2002-08-281-0/+123