| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
The storage instance contains a platform instance, so there's no need
to pass one in explicitly.
Also, setDefaultPartitioning seems to be a good place to set fstype
for boot requests only once.
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
Makefile.am
anaconda
data/systemd/anaconda.target
pyanaconda/bootloader.py
pyanaconda/constants.py
pyanaconda/iutil.py
pyanaconda/kickstart.py
pyanaconda/network.py
pyanaconda/vnc.py
scripts/makeupdates
|
| |
| |
| |
| | |
This is related to commit 43715e5db831893edcfc2b289a1e575b0ba19403
|
|\|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
Makefile.am
anaconda
anaconda.spec.in
loader/loader.c
loader/net.c
loader/unpack.c
po/POTFILES.in
pyanaconda/__init__.py
pyanaconda/bootloader.py
pyanaconda/cmdline.py
pyanaconda/constants.py
pyanaconda/dispatch.py
pyanaconda/errors.py
pyanaconda/flags.py
pyanaconda/iutil.py
pyanaconda/kickstart.py
pyanaconda/platform.py
pyanaconda/storage/__init__.py
pyanaconda/storage/devicetree.py
pyanaconda/storage/fcoe.py
pyanaconda/storage/formats/swap.py
pyanaconda/storage/iscsi.py
pyanaconda/storage/partitioning.py
pyanaconda/yuminstall.py
scripts/makeupdates
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Instead of us knowing about crashkernel stuff in our code, let the
crashkernel guys own that policy.
rhcrashkernel-param comes from the following url, though I'm told
they're updating it not to end in .sh there:
http://pkgs.fedoraproject.org/gitweb/?p=kexec-tools.git;a=commitdiff;h=ca94c80a91400e9ce95bb56023ca4391d5b41d85
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
I've first removed the definitions of getBackend from our standard install
classes. The base class returns None. For other products with their own
install classes, they can have getBackend return something. For our
products, we will fall back to looking up the payload class based on flags.
Note that payload.setup() still needs to be called, but this should be done
intentionally when it's needed since it must happen after the network is up
and storage is populated.
Note also that this adds more crud to Anaconda, but we're going to be removing
most of this object later so hopefully it won't be so bad. We'll also need
to better document install classes.
|
|
|
|
|
|
|
|
|
|
|
| |
This step is not scheduled by default, it is skipped for any text
installation and many kickstart commands (like autopart), it is requested
if the user selects "review partitioning layout" on the parttype screen.
There is a mechanism in autopartitioning that enables manual partitioning
screen (if available) when autopartitioning fails. Instead of checking the
availability this just tries to request the manual partitioning step and
catches DispatcherError for those cases where this is not possible.
|
| |
|
|
|
|
|
|
|
|
|
| |
In Fedora, for instance, there's no comps localization file (there's
neither a product.img).
This patch should make the installation tasks look translated
Related: rhbz#681404
|
| |
|
|
a real Python package.
Also updates the build and autotools stuff to work with the new structure
|