summaryrefslogtreecommitdiffstats
path: root/autopart.py
Commit message (Collapse)AuthorAgeFilesLines
* if autopartitioning fails, we must unskip the partitioning screen to avoid a ↵Jeremy Katz2002-01-211-1/+4
| | | | traceback from the bootloader stuff
* kickstart harddrive wont work w/o this, since protected partitions dont get ↵Mike Fulbright2001-10-251-0/+2
| | | | set\!
* merge from 7-2-branchanaconda-gtk-2-0-baseJeremy Katz2001-09-181-0/+1
|
* merge changes from 7-2-branchJeremy Katz2001-09-181-5/+21
|
* avoid integer overflow (#53258)Jeremy Katz2001-09-051-1/+1
|
* attempt to converge quickly leaves free space sometimesMike Fulbright2001-08-291-5/+5
|
* fix for leaving a free cylinder at end of drive when imposing a fs max size ↵Mike Fulbright2001-08-271-7/+19
| | | | or user growing max size limit
* be consistent on failures between matt partitioning and dr mike partitioningJeremy Katz2001-08-241-1/+2
|
* if the flag isn't available, remove the partition from the disk so we don't ↵Jeremy Katz2001-08-241-0/+2
| | | | try to read it in populate()
* fix typobfox2001-08-221-1/+1
|
* going back and doing autopartitioning on a hard drive install more than once ↵Jeremy Katz2001-08-151-1/+2
| | | | was horked because we didn't reset the protected partitions
* fix using by-cylinder partitioning for bootable requestsJeremy Katz2001-08-151-1/+3
|
* bootable requests need to be fit at roughly the same priority as primary ↵Jeremy Katz2001-08-131-1/+1
| | | | only partitions so they meet their constraints
* use ALL space on the drive when growing. We were failing to use last little ↵Mike Fulbright2001-08-101-3/+8
| | | | bit if weighted amount to use was < # of sectors in a cylinder
* use the freespace prior to allocating any partitions to determine whatJeremy Katz2001-08-091-2/+4
| | | | we should try to get percentage wise (51146)
* i18n fixesMike Fulbright2001-08-081-4/+4
|
* fix creation of partitions which extend beyond the disk (50826)Jeremy Katz2001-08-061-0/+3
|
* fix formatting of warning screenMike Fulbright2001-08-021-6/+6
|
* make some constant strings get translatedMike Fulbright2001-08-021-1/+1
|
* why yes, we should raise an error here so we get a nice dialog instead of a ↵Jeremy Katz2001-08-011-2/+1
| | | | traceback (50620)
* oops, how was this ever expected to work?Jeremy Katz2001-08-011-0/+1
|
* copy the request before changing it so we can go back and do ↵Jeremy Katz2001-07-311-3/+5
| | | | autopartitioning again (50479)
* fix up the case where /boot wouldn't go to the second drive if there wasJeremy Katz2001-07-301-9/+13
| | | | | no space for it to go on the first requested drive (like if you left the existing partitions on the first drive)
* request sizes are megabytes... using the same units in comparisons is a ↵Jeremy Katz2001-07-251-1/+1
| | | | good thing (tm)
* set flags, then part typeMike Fulbright2001-07-251-1/+3
|
* set or clear the PARTITION_RAID flag appropriately with preexisting partitionsJeremy Katz2001-07-231-0/+4
|
* sanity checks for sizes need to actually look at the partition sinceJeremy Katz2001-07-231-1/+1
| | | | we could be a growable partition. so, now we need the diskset here too
* move definitions of CLEARPART_TYPE_* to partitioning.py to avoid circularJeremy Katz2001-07-231-4/+0
| | | | | import madness and fix everywhere that refers to the CLEARPART_TYPE_* to ensure that they import from partitioning and don't try to do so from autopart
* handling of the kickstart case where people want their partitions on a ↵Jeremy Katz2001-07-231-3/+28
| | | | specific preexisting partition
* catch parts of the bootable raid array in our aggressively placing bootJeremy Katz2001-07-221-1/+1
| | | | partitions at the beginning of disks
* check the installclass in doAutoPartition so that we don't raise dialogsJeremy Katz2001-07-221-3/+18
| | | | during kickstart for warnings and exit if there's an error partitioning
* grammar fixJeremy Katz2001-07-221-1/+1
|
* use the first available free space that's large enough for the bootableJeremy Katz2001-07-201-0/+2
| | | | partition
* don't reset the drives we want to use if there's already a drive on theJeremy Katz2001-07-201-1/+2
| | | | request
* do sanity checking for autopart and therefore, sanity check kickstart.Jeremy Katz2001-07-201-0/+15
| | | | critical errors don't allow you to continue, warnings to log
* also delete type 0x82, 0x83, and 0xfd partition types with no filesystem on ↵Mike Fulbright2001-07-201-2/+7
| | | | them for CLEARPART_TYPE_LINUX
* default to no to clearpartMike Fulbright2001-07-191-1/+1
|
* don't remove protected partitions in auto partitioning (48622)Jeremy Katz2001-07-131-1/+5
|
* /boot/efi must be vfat (48779)Jeremy Katz2001-07-131-2/+4
|
* how did this ever work?Jeremy Katz2001-07-111-1/+3
|
* ia64 autopartitioning voodooJeremy Katz2001-07-111-0/+17
| | | | | | if linuxonly and have an msdos partition and it has the bootable flag set, do not delete it and make it our /boot/efi. could contain system utils. if not linuxonly, just do as normal and blow everything away
* not all partition tables are limited to only 4 primary partitions...Jeremy Katz2001-07-111-2/+3
|
* warn user if we're going to blow away data to autopartitionMike Fulbright2001-07-101-0/+45
|
* when we create an extended partition, need to find free space now remaining ↵Mike Fulbright2001-07-091-6/+36
| | | | for the logical we are making
* fixed off by one sector bug when setting the starting sector of a partition. ↵Matt Wilson2001-07-091-1/+1
| | | | We need to start on a partition boundary
* weird things happen when you remove from a list you at iterating over - ↵Mike Fulbright2001-07-091-1/+10
| | | | rewrote to avoid this behavior
* fix device setting for raid devicesJeremy Katz2001-07-071-3/+2
| | | | | move partitioningComplete into partitioning.py make raidmembers be a list of uniqueIDs instead of list of parts
* typoMike Fulbright2001-07-061-1/+1
|
* typoMike Fulbright2001-07-061-1/+1
|
* fix the add one, get many caseJeremy Katz2001-07-061-10/+11
|