summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Begin removing references to anaconda.method and anaconda.methodstr.Chris Lumens2007-12-0510-86/+66
| | | | | | Remove method references from the Anaconda object, along with various support functions that import methods and return instances of methods. This also removes method instances from the backend.
* Remove base InstallMethod class and harddrive.py and urlinstall.py files.Chris Lumens2007-12-054-354/+18
| | | | | | This commit removes the base InstallMethod class without removing the users in other files, so obviously this commit cannot stand alone. installmethod.py and image.py at the very least still need significant changes.
* Add a specfile rule to bump the version.Jeremy Katz2007-12-051-0/+14
|
* Make the tag an annotated tagJeremy Katz2007-12-041-1/+1
|
* Fixup chunk of dwmw2's patch to be cleanerJeremy Katz2007-12-041-5/+1
|
* Update mk-images.ppc for new zImage wrapper (#409691)David Woodhouse2007-12-042-26/+32
|
* update gitignoreJeremy Katz2007-12-041-2/+2
|
* Remove gdb.i386 on upgrade (#407431)Jeremy Katz2007-12-041-1/+1
| | | | gdb.i386 ended up as an update at some point and shouldn't be multilib
* device nodes are in /dev (or, at least, should be)Bill Nottingham2007-12-041-1/+1
|
* Bump versionanaconda-11.4.0.5-1Jeremy Katz2007-12-031-1/+10
|
* Put symlinks into second stage also.Jeremy Katz2007-12-031-1/+2
| | | | This should fix switching to other ttys during the graphical install
* Probe for LVM fstype since we don't get that out of libblkid (#409321)Jeremy Katz2007-12-031-1/+24
|
* Use libblkid instead of custom filesystem probingJeremy Katz2007-12-036-359/+46
| | | | | This patch gets rid of all of our custom filesystem type and label probing and switches it all over to using a simple binding to libblkid instead.
* Merge git://git.infradead.org/~dwmw2/anaconda into topic/efikaPaul Nasrat2007-12-032-0/+9
|\ | | | | | | | | * git://git.infradead.org/~dwmw2/anaconda: put efika.forth on the install media, for booting Efika
| * put efika.forth on the install media, for booting EfikaDavid Woodhouse2007-11-282-0/+9
| |
* | remove duplicate lineBill Nottingham2007-11-301-2/+0
| |
* | Merge branch 'master' of git+ssh://git.fedoraproject.org/git/hosted/anacondaBill Nottingham2007-11-302-1/+2
|\ \
| * | Remove unused SECSTAGE module list.David Lehman2007-11-301-1/+0
| | |
| * | Include more nss libraries that are dlopened (#405921).Chris Lumens2007-11-301-0/+2
| | |
* | | no more floppydevice in instdataBill Nottingham2007-11-301-1/+1
|/ /
* | remove dead codeBill Nottingham2007-11-302-22/+0
| |
* | Merge branch 'master' of git+ssh://git.fedoraproject.org/git/hosted/anacondaBill Nottingham2007-11-301-1/+1
|\ \
| * \ Merge branch 'master' of git+ssh://git.fedoraproject.org/git/hosted/anacondaDavid Lehman2007-11-301-1/+1
| |\ \
| * | | Actually include crypto mods in the initrd, not the non-existent SECSTAGE.David Lehman2007-11-301-1/+1
| | | |
* | | | fix references to point to the device we created earlierBill Nottingham2007-11-301-2/+2
| |/ / |/| |
* | | in test mode, return success when copying anacdump.txtBill Nottingham2007-11-301-1/+1
|/ /
* | Fix tracebacks in exn dialog and in partitioning UI (#405951).Chris Lumens2007-11-302-3/+3
| |
* | Bump versionanaconda-11.4.0.4-1Jeremy Katz2007-11-291-1/+8
| |
* | add support for resizing ntfsJeremy Katz2007-11-291-0/+53
| |
* | set stdin for pulse progress if neededJeremy Katz2007-11-291-0/+2
| |
* | UI for logical volume resizingJeremy Katz2007-11-292-8/+23
| | | | | | | | | | | | NOTE: this has a little bit of a hack in that we abuse lvrequest.getActualSize() somewhat but that's largely due to the fact that lvrequest.getActualSize() was already being abused and updating the size attribute of the request in autopart
* | Backend code for logical volume resizingJeremy Katz2007-11-296-14/+103
| |
* | Give access to partitions when determining min/max size to resize; also keepJeremy Katz2007-11-295-11/+19
| | | | | | | | track of the request being resizable rather than just the filesystem
* | With moving partitioning, we should do a confirmation before we write thingsJeremy Katz2007-11-295-55/+18
| | | | | | | | | | out to disk so do that check in partitioningComplete(). Therefore remove the queryAutoPartOK() which is superfluous
* | If we're formatting the partition, we can resize to 1Jeremy Katz2007-11-291-5/+27
| |
* | Implement resizing UI for graphical mode.Jeremy Katz2007-11-294-116/+76
| | | | | | | | This simplifies the edit partition dialog and adds resizing support
* | Implement resizing methods for ext[23]Jeremy Katz2007-11-292-0/+77
| | | | | | | | | | Determination of the minimum size is a bit of a hack, but until the tools give us something better, it'll have to do
* | Actually do the resizingJeremy Katz2007-11-291-0/+2
| | | | | | | | | | | | We do filesystem shrinking, then commit the partition table, and then filesystem growing so that the container for the filesystem is always as large or larger than the filesystem
* | Add infrastructure for partition resizingJeremy Katz2007-11-294-2/+82
| | | | | | | | | | | | | | | | | | | | We add support to preexisting partitions to be resized by adjusting their partition spec and then acting on the changes within the main partitioning engine. Keep track of what the maximum size for a preexisting partitition is so that we don't have to check in the UI Filesystems can claim to be resizable and implement the resize() method as well as the getMinimumSize() method
* | Add method for finding the available size that a partition can expand intoJeremy Katz2007-11-291-0/+18
| |
* | Apply partitioning changes immediately after the partitioning step.Jeremy Katz2007-11-292-26/+2
| | | | | | | | | | | | | | | | | | With resizing, we're going to want sooner feedback so move the applying of partitioning changes to immediately after the partitioning step. This lets us also remove the early swap-on logic. Still need to put up some scarier warnings about what's going to happen for people
* | add iutil.execWithPulseProgress to do a pulsing progress barJeremy Katz2007-11-291-0/+60
| | | | | | | | | | this is helpful for operations like filesystem checking and resizing when we don't have a good way to do a nice bounded progress bar
* | add pulsing progress bars for gui. noop (no progress bar) for textJeremy Katz2007-11-293-11/+24
| |
* | Add support for ext4dev hidden away behind a command line optionJeremy Katz2007-11-293-3/+23
| |
* | fix traceback at the end of installJeremy Katz2007-11-291-0/+2
| |
* | fix alpha checkJeremy Katz2007-11-291-1/+1
| |
* | Allow multiple LVs to not be mountedJeremy Katz2007-11-281-0/+2
| |
* | This is used for more than partitions; and add a mnemonicJeremy Katz2007-11-281-1/+1
| |
* | Fix circular importJeremy Katz2007-11-281-3/+3
| |
* | ignore translations for the loaderJeremy Katz2007-11-281-0/+1
| |