summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
Commit message (Collapse)AuthorAgeFilesLines
* we can't stop raid until after we've looked for lvm root partsJeremy Katz2002-06-211-2/+3
|
* pychecker is my friendanaconda-s390-tag4Jeremy Katz2002-06-121-2/+2
|
* only try to unmount if we find a fs typeJeremy Katz2002-06-101-6/+12
|
* rescue mode/upgrades don't actually work with lvm, yet, but this is the ↵Jeremy Katz2002-06-091-2/+28
| | | | start. fsset.py's readFstab() still needs work
* add sniffFilesystemType functionJeremy Katz2002-06-071-1/+59
|
* need to import thisJeremy Katz2002-05-291-0/+1
|
* migrate to using rhpl log functionMike Fulbright2002-05-231-1/+2
|
* 1) Fix all copyrights 2) move everything to use rhpl.translate instead of ↵Mike Fulbright2002-05-231-1/+1
| | | | our own translate.py
* new function, get all partitions on the diskJeremy Katz2002-05-061-0/+5
|
* partitioning bits merged into their new, improved, moved locationsJeremy Katz2002-04-191-8/+3
|
* merge from branchJeremy Katz2002-02-261-1/+2
|
* move a lot more out of partitioning.py... a lot of the functions are nowJeremy Katz2002-02-141-0/+10
| | | | methods of request classes or the Partitions class
* fix for #59756, anaconda doesn't tell kernel to reread partition tables when ↵Matt Wilson2002-02-131-0/+3
| | | | doing anything but autopartitioning in GUI mode. This patch requires parted 1.4.24
* diskset moves to partedUtilsJeremy Katz2002-02-121-1/+474
|
* stage 1 of the partitioning.py cleanup effort --Jeremy Katz2002-02-061-0/+272
1) move the following functions from partitioning.py -> partedUtils.py get_flags, start_sector_to_cyl, end_sector_to_cyl, start_cyl_to_sector, end_cyl_to_sector, getPartSize, getPartSizeMB, getDeviceSizeMB, get_partition_by_name, get_partition_name, get_partition_file_system_type, set_partition_file_system_type, get_partition_drive, map_foreign_to_fsname, filter_partitions, get_logical_partitions, get_primary_partitions, get_raid_partitions, get_lvm_partitions, 2) move PartitioningError and PartitioningWarning classes from partitioning.py -> partErrors.py Change everything that depends on these functions to use the new location