summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* New version.anaconda-12.0-1Chris Lumens2009-07-022-2/+143
|
* Fix "make bumpver" for two digit version numbers.Chris Lumens2009-07-021-2/+2
|
* network --bootproto no longer implies DHCP.Chris Lumens2009-07-021-5/+3
|
* Don't unconditionally skip the network config screen in kickstart.Chris Lumens2009-07-021-4/+2
| | | | | | This means you have to provide a network line in the kickstart file if you want the network to be automatically configured, therefore bringing the network command in line with how all the other kickstart commands work.
* Allow creating new groups through kickstart.Chris Lumens2009-07-023-0/+42
| | | | | This is executed before users are created, so new users may be added to the new groups immediately.
* Set focus on hostname entry in network UI screen (#494135)Radek Vykydal2009-07-021-1/+4
|
* Fix upgrade selected in UI after storage reset (#503302)Radek Vykydal2009-07-022-0/+8
| | | | | | | Fix of this UI flow: doing storage reset after root partitions discovery (e.g. in partitioning step) and then going back and selecting upgrade. In place of using root partition device objects obsoleted by storage reset, find root partition devices of new device tree.
* Add support for specifying upgrade partition in ks (#471232)Radek Vykydal2009-07-021-8/+14
| | | | | | | | The support was removed during storage rewrite (commit e1a7fe9887886044b07587b3ec2caa2ff53ebfb2), perhaps because it didn't work before removing anyway (both branches of added if clause did the same thing - see commit 130f1e6ca2b3f46166a302ca21b1df53062383be)
* Add missing liveinst/* files.David Cantrell2009-07-013-2/+90
| | | | | Add back missing liveinst/liveinst and liveinst/zz-liveinst.sh. Make sure they are not listed in the .gitignore file.
* Update code that checks for devices that contain install media.David Lehman2009-07-015-18/+13
|
* Rework tracking of devices containing installation media. (#497087)David Lehman2009-07-013-21/+36
| | | | | | | | | | In storage.Storage we keep the device specifications as provided to us. In the devicetree, during population, we use udev to resolve the user- provided specs to device names. As we create StorageDevice instances for the devices, we set a new attribute ("protected") as appropriate. Once the DeviceTree is populated, we use the devices' protected attribute to determine whether or not they contain installation media. This way we can track protected devices even when their names change.
* Add function storage.udev.udev_resolve_devspec.David Lehman2009-07-011-0/+23
| | | | | This function resolves an arbitrary device specification (name, path, uuid, or label) to a device name. It returns None if there is a failure.
* Prevent false positives in devtree's device lookup methods.David Lehman2009-07-011-0/+12
|
* Skip exceptionDisks if exception originated in devtree.populate. (#497240)David Lehman2009-07-013-10/+28
| | | | | | | Set a flag in the DeviceTree to indicate when we are in the process of populating the tree. In the UI exception handlers we only collect save-to-disk targets if the exception did not originate in DeviceTree.populate.
* Stop using rhpl.arch in writeRpmPlatform()Jeremy Katz2009-07-011-4/+3
| | | | | yum's rpmUtils.arch has the same bits as rhpl.arch, so use those instead for writing out /etc/rpm/platform
* Move simpleconfig (back) into anaconda from rhplJeremy Katz2009-07-015-8/+92
|
* Use iutil arch specifiers rather than rhplJeremy Katz2009-07-015-24/+17
| | | | | Switch to using iutil.isFoo() methods rather than checking the value of rhpl.getArch()
* Remove unused rhpl importsJeremy Katz2009-07-011-3/+0
|
* Switch to using iutil.isS390 instead of rhpl.getArchJeremy Katz2009-07-011-2/+1
|
* Stop using rhpl.translateJeremy Katz2009-07-012-2/+7
| | | | Use python's gettext module instead of rhpl.translate
* Merge branch 'master' of ssh://git.fedoraproject.org/git/anacondaBill Nottingham2009-06-307-22/+9
|\
| * Default to /boot on ext4Jeremy Katz2009-06-301-1/+1
| |
| * Allow /boot on ext4 now that we have a grub that allows itJeremy Katz2009-06-301-16/+0
| |
| * Write out "MAILADDR root" into mdadm.conf (#508321)Radek Vykydal2009-06-301-1/+2
| |
| * Do not install grub more times than needed.Radek Vykydal2009-06-301-1/+1
| |
| * Ensure we set the SELinux context correctly on symlinks (#505054)Jeremy Katz2009-06-261-0/+2
| |
| * udev dropped vol_id (#506360)Jeremy Katz2009-06-262-3/+3
| | | | | | | | | | | | udev no longer ships a vol_id binary, so we have to use blkid instead. Require a new enough util-linux-ng that this does what we want
* | Make sure the library directory is always setBill Nottingham2009-06-301-0/+1
| | | | | | | | | | mk-images calls get_dso_deps as well, without a library argument. Since everything there should be of the primary arch, just set a default.
* | Handle installing multilib into the installer intramfs correctly.Bill Nottingham2009-06-261-6/+20
| | | | | | | | | | | | | | - Call get_file_deps with a an argument that specifies the libdir based on whether the binary is 32-bit or 64-bit. - Check whether the currently cached $LDSO actually works for the binary passed - if not, look for a new one in the passed libdir
* | Set LIBDIR appropriately on PPC64.Bill Nottingham2009-06-262-2/+2
|/
* Fix grub upgrade (#505966)Radek Vykydal2009-06-251-5/+5
| | | | | We need to run grub 'root' and 'install' commands in one grub shell session when upgrading grub.
* Include yum.log in anacdump.txt too.Radek Vykydal2009-06-242-1/+2
| | | | | | Also decrease yum debug log detail. Related commit introducing yum.log is 96999a5ba329b41bf555ab945a4749755b97c974.
* Access format options property instead of mountopts attr. (#506219)David Lehman2009-06-221-1/+1
|
* Be more careful about identifying NFS fstab entries.David Lehman2009-06-221-1/+1
|
* Don't add leading directory for files twice. (#503830)David Lehman2009-06-221-1/+4
|
* booty changes for iswmdJacek Danecki2009-06-222-7/+15
| | | | This patch adds support for iswmd kernel parameter in booty.
* Support for MD containers.Jacek Danecki2009-06-224-6/+115
| | | | This patch adds new class MDRaidContainerDevice.
* New iswmd parameter for kernel cmdlineJacek Danecki2009-06-222-0/+9
|
* New udev rule for using mdadm for isw_raid_memberJacek Danecki2009-06-221-0/+1
|
* Use isohybrid to make boot.iso a hybrid imageJeremy Katz2009-06-191-0/+3
| | | | | | | isohybrid in newer syslinux makes an iso image bootable off of CD or able to be dd'd onto a USB stick for booting that way. To make this really nice, we need to change the second stage finding so that it gets found on the USB stick, but one step at a time
* Log yum messages.Radek Vykydal2009-06-182-2/+29
| | | | | Overrides base class function: sets handlers for "yum" and "yum.verbose" - loggers that yum is using. Logs into tty3 and with more detail into yum.log.
* Tell booty to rescan for bootable drivers when an extra disks get addedHans de Goede2009-06-182-0/+2
| | | | | When manually adding an iscsi disk it will not show up in the where to install the bootloader dropdown, this patch fixes this.
* Do not encourage VNC when doing kickstart text installs (#506534)David Cantrell2009-06-171-2/+1
| | | | | | Users expect kickstart installs to proceed as indicated in the ks file. If the user has selected text, we should just continue rather than stopping to encourage VNC use.
* Rename bootstrap to autogen.shDavid Cantrell2009-06-171-0/+0
|
* Include the contents of /proc/cmdline in exception reportsJeremy Katz2009-06-161-1/+2
| | | | | | Include /proc/cmdline in exception dumps so that we can see what arguments people are trying to pass without having to ask every single time.
* Include libwrap library for sshd and telnet in s390 installsJoel Granados Moreno2009-06-162-0/+2
| | | | | | This is a port from the RHEL5 patch to make sure that this lib is present so sshd and telnet can work properly in s390. RHEL5 reference bug (#473955).
* Sending translation for Spanishdennistobar2009-06-131-77/+77
|
* Enforcing matching rootfs type on LVs as well as for partitions (#504743)Jeremy Katz2009-06-101-0/+5
| | | | We do two loops through, so we need this check twice.
* Remove problem packages before attempting a re-download (#501887).Chris Lumens2009-06-101-0/+3
|
* Be more explicit about what's lacking on EFI systems (#501341).Chris Lumens2009-06-101-1/+4
|