Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Fix subtraction for Size. | David Lehman | 2012-08-13 | 1 | -11/+13 | |
| | | ||||||
| * | Add support for creating device based on a top-down specification. | David Lehman | 2012-08-13 | 2 | -14/+351 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | General Approach: Instead of an all-or-nothing approach, the goal is to come as close as possible to satisfying the new device specification. Once the container has been allocated, we simply adjust the new device's size as needed to fit in the container. This uses growable partition requests, but it then fixes their size as soon as they have been allocated. It also changes doPartitioning to reallocate container member devices each time instead of fixing them on disk once the container is defined. Since the members are not growable anymore once the container is defined, this is less disruptive than it would otherwise be. It allows for maximum flexibility to allocate the set of requests while still preserving already-defined containers' sizes. Notes: Creation of md devices is completely untested. Creation any device (md, lvm, btrfs) with striping, mirroring, or any other RAID-like features is completely untested. There is no support for container members of any type other than normal partitions. | |||||
| * | Add size-set managers to keep a set of growable requests in sync. | David Lehman | 2012-08-13 | 2 | -14/+175 | |
| | | | | | | | | | | | | | | | | SameSizeSet is for mirrored container devices, and ensures that all members in the set end up the same size. TotalSizeSet is for non-mirrored container devices, and tries to achieve a target combined size for devices in the set. | |||||
| * | Add a function to estimate required disk space for an md array. | David Lehman | 2012-08-13 | 1 | -0/+38 | |
| | | ||||||
| * | Add a method to estimate disk space needs for a new logical volume. | David Lehman | 2012-08-13 | 3 | -2/+17 | |
| | | | | | | | | | | | | Also moves default extent size and default pv metadata size to a constant defined in devicelibs.lvm until we get a way to query lvm for this stuff. | |||||
| * | Add a convenience method for new btrfs subvols and drop subvol size args. | David Lehman | 2012-08-13 | 1 | -0/+5 | |
| | | ||||||
| * | Use the UEFI shim to load grub. | Peter Jones | 2012-08-13 | 1 | -2/+2 | |
| | | | | | | | | | | For UEFI Secure Boot support, we need to install the shim pre-boot loader, and use it to load grub2. | |||||
| * | Check that Gtk.main is not already running before starting another one | Vratislav Podzimek | 2012-08-13 | 1 | -1/+16 | |
| | | | | | | | | | | | | | | If python-meh catches an exception from a different thread before GraphicalUserInterface's Gtk main loop is running, it runs its own loop. Running another one from a different thread would cause Gtk crash. So lets juts wait for the reboot. | |||||
* | | Remove the base_tests file for now | Jesse Keating | 2012-08-13 | 1 | -122/+0 | |
| | | | | | | | | | | Ongoing discussion on where tests should live, so remove the test for now to get the rest of the code pushed. | |||||
* | | Remove unused import of UIObject | Jesse Keating | 2012-08-13 | 1 | -1/+1 | |
| | | ||||||
* | | Fix up detailederror for new common UI code | Jesse Keating | 2012-08-13 | 1 | -3/+3 | |
| | | ||||||
* | | Translate the base text hub class | Jesse Keating | 2012-08-13 | 1 | -1/+4 | |
| | | ||||||
* | | Translate the base tui class strings | Jesse Keating | 2012-08-13 | 1 | -6/+9 | |
| | | ||||||
* | | Remove unncessary __init__ definition. (clumens) | Jesse Keating | 2012-08-13 | 1 | -3/+0 | |
| | | ||||||
* | | Translate some strings in the base tui spokes classes | Jesse Keating | 2012-08-13 | 1 | -2/+5 | |
| | | ||||||
* | | Always use collect directly from common | Jesse Keating | 2012-08-13 | 4 | -5/+6 | |
| | | | | | | | | | | | | It kinda worked to indirectly access collect through another module, but it is non-obvious what is going on. This makes sure we just use it directly from the module where the code lives. | |||||
* | | Add comment headers to the new files | Jesse Keating | 2012-08-10 | 4 | -0/+84 | |
| | | ||||||
* | | Ad source files to POTFILES.innewtui | Martin Sivak | 2012-08-10 | 1 | -0/+16 | |
| | | ||||||
* | | Merge remote-tracking branch 'origin/master' into newtui | Martin Sivak | 2012-08-10 | 32 | -674/+374 | |
|\| | ||||||
| * | With tmux, we no longer need to start up a shell during VNC installs. | Chris Lumens | 2012-08-09 | 1 | -25/+1 | |
| | | ||||||
| * | We no longer need getkeymaps, mapshdr, or readmap. | Chris Lumens | 2012-08-09 | 5 | -255/+1 | |
| | | ||||||
| * | Remove the last references to isysLoadKeymap. | Chris Lumens | 2012-08-09 | 1 | -18/+0 | |
| | | ||||||
| * | remove Security class | Brian C. Lane | 2012-08-09 | 2 | -66/+1 | |
| | | ||||||
| * | replace lokkit for selinux settings (#815540) | Brian C. Lane | 2012-08-09 | 2 | -0/+21 | |
| | | | | | | | | | | | | lokkit is going to be going away, all it did was edit the selinux config file, so do that ourselves with SimpleConfigFile. Also add selinux kickstart execute method | |||||
| * | tests: Add tests for new SimpleConfigFile features | Brian C. Lane | 2012-08-09 | 1 | -7/+41 | |
| | | ||||||
| * | tests: cleanup whitespace in simpleconfig_test.py | Brian C. Lane | 2012-08-09 | 1 | -21/+21 | |
| | | ||||||
| * | simpleconfig: rewrite to better support commented config files | Brian C. Lane | 2012-08-09 | 1 | -79/+143 | |
| | | | | | | | | | | | | | | This takes some of my code, and some of wwoods' code and rewrites SimpleConfigFile to support a wider range of uses. It can now preserve comments and whitespaces in config files and can quote (or not) values when reading and writing them. | |||||
| * | If the anaconda process crashes, don't delete its window. | Chris Lumens | 2012-08-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | We need this to see tracebacks that happen before exception handling is set up. This includes a fair number of tracebacks, as we are very sloppy with our importing. | |||||
| * | On interactive installs, default the root account to locked. | Chris Lumens | 2012-08-08 | 3 | -2/+3 | |
| | | | | | | | | | | | | | | | | | | It's up to firstboot to set up the first user as the admin. Or, the user can go through with a kickstart install. This requires an updated version of pykickstart that understands the rootpw command doesn't need a password argument if it's just going to lock the account. | |||||
| * | Make the keyboard layout test a big text area instead of a single line. | Chris Lumens | 2012-08-08 | 2 | -5/+25 | |
| | | ||||||
| * | Remove our loadKeymap code from isys | Vratislav Podzimek | 2012-08-08 | 4 | -133/+0 | |
| | | | | | | | | | | It is used only in the text mode and it should be possible to replace it with calling 'loadkeys' command in the new text mode. | |||||
| * | Replace system-config-keyboard with our methods using ksdata.keyboard | Vratislav Podzimek | 2012-08-08 | 6 | -53/+74 | |
| | | | | | | | | | | | | | | The only thing we were using from the system-config-keyboard was the activate method that basically just calls loadkeys command. This can be easily replaced with our own method using data from ksdata.keyboard allowing us to remove anaconda.keyboard object. | |||||
| * | A little fix of newui -> master merge (iscsi offload devices) | Radek Vykydal | 2012-08-08 | 1 | -2/+2 | |
| | | ||||||
| * | Require new version of python-meh | Vratislav Podzimek | 2012-08-08 | 1 | -1/+1 | |
| | | ||||||
| * | Modify kernelPackages to select the right kernel for ARM systems. | d.marlin | 2012-08-07 | 1 | -0/+6 | |
| | | | | | | | | Signed-off-by: Brian C. Lane <bcl@redhat.com> | |||||
| * | ARM: clean up the kernel selection to be consistent with the rest of the code | Dennis Gilmore | 2012-08-06 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: Brian C. Lane <bcl@redhat.com> | |||||
| * | add command line option to set the arm platform. | Dennis Gilmore | 2012-08-06 | 3 | -0/+8 | |
| | | | | | | | | | | | | | | Use case is to create images using livemedia-creator where we wont be running on the target platform. Signed-off-by: Brian C. Lane <bcl@redhat.com> | |||||
| * | Add support to determine the ARM processor variety and select the correct ↵ | d.marlin | 2012-08-06 | 3 | -0/+24 | |
| | | | | | | | | | | | | kernel to install. Signed-off-by: Brian C. Lane <bcl@redhat.com> | |||||
| * | TODO list updates. | Chris Lumens | 2012-08-06 | 1 | -5/+0 | |
| | | ||||||
| * | Sent pot file updates to the master branch in transifex, not f17. | Chris Lumens | 2012-08-06 | 1 | -1/+1 | |
| | | ||||||
* | | import localization stuff and use it to translate more strings | Martin Sivak | 2012-08-10 | 5 | -2/+21 | |
| | | ||||||
* | | finish renaming _mainloop | Martin Sivak | 2012-08-10 | 2 | -2/+2 | |
| | | ||||||
* | | Fix naming for data attribute and move the NormalSpoke.__init__ under the ↵ | Martin Sivak | 2012-08-10 | 4 | -25/+26 | |
| | | | | | | | | proper class | |||||
* | | Improve documentation and add licensing headers | Martin Sivak | 2012-08-10 | 6 | -15/+111 | |
| | | ||||||
* | | Add translations to the simpleline framework | Martin Sivak | 2012-08-09 | 1 | -4/+4 | |
| | | ||||||
* | | Add translations to Password Spoke | Martin Sivak | 2012-08-09 | 1 | -7/+7 | |
| | | ||||||
* | | Add elementary timezone spoke | Martin Sivak | 2012-08-06 | 1 | -0/+110 | |
| | | ||||||
* | | Pass screen args argument to prompt and input methods + fix for run-text-spoke | Martin Sivak | 2012-08-06 | 6 | -16/+25 | |
| | | ||||||
* | | Merge master into newtui | Martin Sivak | 2012-08-06 | 127 | -15063/+2788 | |
|\| | ||||||
| * | New version. | Chris Lumens | 2012-08-03 | 3 | -44/+48 | |
| | |