summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakupdate_fstab
Commit message (Collapse)AuthorAgeFilesLines
* kill dead emailsThierry Vignaud2012-01-271-1/+1
|
* - string changes: perl -pi -e 's!Can not!Cannot!'Ahmad Samir2011-04-041-1/+1
|
* drakupdate_fstab: make sure removable disks are not fs-checked on boot ↵Olivier Blin2008-06-121-0/+6
| | | | (regression introduced in 10.6.3)
* remove unused codeOlivier Blin2008-06-051-9/+0
|
* only add formatted partitions in fstab (or else it will make subsequent boot ↵Olivier Blin2008-04-061-1/+1
| | | | fail)
* drakupdate_fstab: do not print added/removed mountpoints with --autoOlivier Blin2008-03-211-4/+5
| | | | | | (when run from harddrake, like in Mandriva One), but add a --verbose option instead
* fix a couple of emailsThierry Vignaud2008-01-231-1/+1
|
* bump copyright yearThierry Vignaud2008-01-231-1/+1
|
* drakupdate_fstab: remove --no-flag option, the "kudzu" option has not been ↵Olivier Blin2008-01-021-13/+2
| | | | written for ages
* never set "sync" option, use default fs options from drakx (#35204)Olivier Blin2008-01-021-4/+1
|
* allow to configure harddisksOlivier Blin2007-09-211-23/+17
|
* drop supermount support (it has been dropped from our kernel)Pascal Rigaux2007-08-021-5/+3
|
* re-sync after the big svn lossPascal Rigaux2007-04-251-14/+4
|
* fsedit::is_same_hd is now fs:get::is_same_hdPascal Rigaux2005-06-131-1/+1
|
* bump copyrigth noticeThierry Vignaud2005-04-251-1/+1
|
* switch from MandrakeSoft to Mandriva in copyright noticesThierry Vignaud2005-04-211-1/+1
|
* better english (writing style rather than spoken one)Thierry Vignaud2004-12-131-1/+1
|
* 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)