From a10b755ff188942c9def7228006abb55fb587a08 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: May 05 2009 01:52:20 +0000 Subject: * Mon May 04 2009 David Cantrell - 11.5.0.49-1 - Collect network interfaces from NetworkManager (#493995) (dcantrell) - Handle fstab entries whose filesystem we don't recognize.(#498120) (dlehman) - Add an error signifying an unrecognized entry in /etc/fstab. (dlehman) - Don't drop discovered format with unknown devices when parsing fstab. (dlehman) - Fix display of paths for device-mapper device in bootloader widget. (dlehman) - Don't call udevDeviceFormat if we're just going to clear the device (#497323). (clumens) - Pass clearPartType to the devicetree as well. (clumens) - Break the complex should-clear logic out of clearPartitions. (clumens) - Handle clearpart in the early kickstart pass too. (clumens) - Correct setting the SELinux context on mountpoints (#494995). (clumens) - make resetFileContext return the context set (wwoods) - Allow editing of the hdiso source partition so it can be mounted (#498591). (clumens) - Add a ignoreProtected= parameter to deviceImmutable that does the obvious. (clumens) - Be more aggressive unmounting before install starts (#498260) (katzj) - Add %{?dist} to the release number in the spec file. (dcantrell) - Configure network in kickstartNetworkUp() iff NM is not connected (#490518) (dcantrell) - Don't segfault with "ks someotherparam" (#498307). (clumens) - Fix the arch upgrade check in yuminstall.py, too (#498280). (clumens) - Move _resetRpmDb into iutil so we can access it everywhere. (clumens) - Don't mount bind mounts last, that makes /dev break. (pjones) - Pass anaconda to storage.FSSet.turnOnSwap. (dlehman) - Ignore spurious formatting on partitioned devices. (dlehman) - Revert "DeviceError only returns a message, not (message, device) tuple (#496343)." (dlehman) - Fix action sorting for partitions on the same disk. (#498064) (dlehman) - Fix traceback in second editing of existing raid dev (#497234). (rvykydal) - Allow existing LVs with filesystems to be resized (#490913) (dcantrell) - Rate limit pulse() calls to ProgressWindow. (pjones) - Don't populate flags.cmdline with "True" values when no = is used. (pjones) - Add "nomodeset" to the list of command line arguments copied to grub.conf (pjones) - Use device.format.mountType insead of device.format.type for fstab. (pjones) - Initialize x86 class variables before efiBootloaderInfo.__init__() (pjones) - Fix a segfault on nfs+kickstart (pjones) - Fix an error when raising FormatCreateException. (clumens) - Add more windows to the rescue interface class (#498014). (clumens) - Remove requirement for EFI machines to be x86, since IA64 is too (#497934). (clumens) - Fix the kernel package selection on ppc64 machines (#497264). (clumens) - Include fsck.ext4 and mkfs.ext4 in the images (#497996). (clumens) - Properly restore SIGCHLD if X startup fails (wwoods) - Fix kickstart PV references handling for lvm on raid (#497352). (rvykydal) --- diff --git a/.cvsignore b/.cvsignore index 3a138e9..0ae29f3 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,3 +1 @@ -clog -anaconda-11.5.0.46.tar.bz2 -anaconda-11.5.0.48.tar.bz2 +anaconda-11.5.0.49.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index d0a29d8..7c97636 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -2,8 +2,8 @@ Summary: Graphical system installer Name: anaconda -Version: 11.5.0.48 -Release: 1 +Version: 11.5.0.49 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: http://fedoraproject.org/wiki/Anaconda @@ -213,6 +213,58 @@ update-desktop-database &> /dev/null || : %endif %changelog +* Mon May 04 2009 David Cantrell - 11.5.0.49-1 +- Collect network interfaces from NetworkManager (#493995) (dcantrell) +- Handle fstab entries whose filesystem we don't recognize.(#498120) + (dlehman) +- Add an error signifying an unrecognized entry in /etc/fstab. (dlehman) +- Don't drop discovered format with unknown devices when parsing fstab. + (dlehman) +- Fix display of paths for device-mapper device in bootloader widget. + (dlehman) +- Don't call udevDeviceFormat if we're just going to clear the device + (#497323). (clumens) +- Pass clearPartType to the devicetree as well. (clumens) +- Break the complex should-clear logic out of clearPartitions. (clumens) +- Handle clearpart in the early kickstart pass too. (clumens) +- Correct setting the SELinux context on mountpoints (#494995). (clumens) +- make resetFileContext return the context set (wwoods) +- Allow editing of the hdiso source partition so it can be mounted + (#498591). (clumens) +- Add a ignoreProtected= parameter to deviceImmutable that does the obvious. + (clumens) +- Be more aggressive unmounting before install starts (#498260) (katzj) +- Add %%{?dist} to the release number in the spec file. (dcantrell) +- Configure network in kickstartNetworkUp() iff NM is not connected + (#490518) (dcantrell) +- Don't segfault with "ks someotherparam" (#498307). (clumens) +- Fix the arch upgrade check in yuminstall.py, too (#498280). (clumens) +- Move _resetRpmDb into iutil so we can access it everywhere. (clumens) +- Don't mount bind mounts last, that makes /dev break. (pjones) +- Pass anaconda to storage.FSSet.turnOnSwap. (dlehman) +- Ignore spurious formatting on partitioned devices. (dlehman) +- Revert "DeviceError only returns a message, not (message, device) tuple + (#496343)." (dlehman) +- Fix action sorting for partitions on the same disk. (#498064) (dlehman) +- Fix traceback in second editing of existing raid dev (#497234). (rvykydal) +- Allow existing LVs with filesystems to be resized (#490913) (dcantrell) +- Rate limit pulse() calls to ProgressWindow. (pjones) +- Don't populate flags.cmdline with "True" values when no = is used. (pjones) +- Add "nomodeset" to the list of command line arguments copied to grub.conf + (pjones) +- Use device.format.mountType insead of device.format.type for fstab. + (pjones) +- Initialize x86 class variables before efiBootloaderInfo.__init__() (pjones) +- Fix a segfault on nfs+kickstart (pjones) +- Fix an error when raising FormatCreateException. (clumens) +- Add more windows to the rescue interface class (#498014). (clumens) +- Remove requirement for EFI machines to be x86, since IA64 is too + (#497934). (clumens) +- Fix the kernel package selection on ppc64 machines (#497264). (clumens) +- Include fsck.ext4 and mkfs.ext4 in the images (#497996). (clumens) +- Properly restore SIGCHLD if X startup fails (wwoods) +- Fix kickstart PV references handling for lvm on raid (#497352). (rvykydal) + * Fri Apr 24 2009 Chris Lumens - 11.5.0.48-1 - Fix handling of swap files. (#496529) (dlehman) - Pass anaconda to turnOnSwap so we can use swap files. (dlehman) diff --git a/sources b/sources index f6d0996..4671a9a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -934d124c37c45d6ac04e43c692d5fce8 anaconda-11.5.0.48.tar.bz2 +13414124ca22903979310067aea1cfd8 anaconda-11.5.0.49.tar.bz2