/[smeserver]/rpms/anaconda/sme8/anaconda.spec
ViewVC logotype

Annotation of /rpms/anaconda/sme8/anaconda.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.9 - (hide annotations) (download)
Tue Apr 14 19:26:04 2009 UTC (15 years, 2 months ago) by slords
Branch: MAIN
Changes since 1.8: +1 -1 lines
Fix date

1 slords 1.1 Name: anaconda
2 slords 1.7 Version: 11.1.2.168
3 slords 1.8 Release: 1%{?dist}.1
4 slords 1.1 License: GPL
5     Summary: Graphical system installer
6     Group: Applications/System
7     Source: anaconda-%{PACKAGE_VERSION}.tar.bz2
8 slords 1.7 BuildPreReq: kudzu-devel >= 1.2.57.1.18, pciutils-devel
9 slords 1.1 BuildPreReq: bzip2-devel, e2fsprogs-devel, python-devel, gtk2-devel
10     BuildPreReq: rpm-python >= 4.2-0.61, newt-devel, rpm-devel, gettext >= 0.11
11     BuildPreReq: rhpl, booty, libxml2-python, zlib-devel, elfutils-devel
12     BuildPreReq: beecrypt-devel, libselinux-devel >= 1.6, libX11-devel
13     BuildPreReq: libXxf86misc-devel, intltool >= 0.31.2-3, python-urlgrabber
14     BuildPreReq: pykickstart, yum >= 2.9.2, device-mapper >= 1.01.05-3,
15     BuildPreReq: libsepol-devel
16     BuildPreReq: pango-devel, pirut, libXt-devel, slang-devel >= 2.0.6-2
17 slords 1.5 BuildPreReq: libdhcp-devel >= 1.20-5, mkinitrd-devel >= 5.1.2-1
18     BuildPreReq: audit-libs-devel, libnl-devel >= 1.0-0.10.pre5.5
19 slords 1.7 %ifnarch s390 s390x
20     BuildPreReq: iscsi-initiator-utils >= 6.2.0.868-0.9
21     %endif
22 slords 1.1 Requires: rpm-python >= 4.2-0.61, rhpl >= 0.170, booty
23     Requires: parted >= 1.7.1, pyparted >= 1.7.2
24 slords 1.7 Requires: kudzu >= 1.2.57.1.18, yum >= 2.9.2, pirut >= 1.1.0
25 slords 1.1 Requires: libxml2-python, python-urlgrabber
26     Requires: system-logos, pykickstart, system-config-date
27     Requires: device-mapper >= 1.01.05-3
28     Requires: dosfstools >= 2.11-6.2 e2fsprogs
29 slords 1.7 Requires: e4fsprogs
30 slords 1.2 Requires: python-pyblock >= 0.26-1
31 slords 1.1 Requires: libbdevid >= 5.1.2-1, libbdevid-python
32     Requires: audit-libs
33     %ifnarch s390 s390x ppc64
34     Requires: rhpxl >= 0.25
35     %endif
36     Obsoletes: anaconda-images <= 10
37     Url: http://fedora.redhat.com/projects/anaconda-installer/
38 slords 1.5 Patch1: anaconda-centos-syslinux-msg.patch
39     Patch2: anaconda-centos-installclasses-2.patch
40     Patch3: anaconda-centos-regkey.patch
41 slords 1.7 Patch4: anaconda-centos-centos-branding-po_files_5.3.patch
42 slords 1.5 Patch5: anaconda-centos-inst-type.patch
43     Patch6: anaconda-centos-task.patch
44     Patch7: anaconda-centos-removeStatusText.patch
45     Patch8: anaconda-centos-splittree_allow_missing_RPMSdir.patch
46     Patch9: anaconda-centos-pkgorder.patch
47     Patch10: anaconda-centos-additional-repos.patch
48 slords 1.8 Patch100: anaconda-11.1.2.168-smepatches.patch
49 slords 1.5
50 slords 1.1
51     BuildRoot: %{_tmppath}/anaconda-%{PACKAGE_VERSION}
52    
53     %description
54     The anaconda package contains the program which was used to install your
55     system. These files are of little use on an already installed system.
56    
57     %package runtime
58     Summary: Graphical system installer portions needed only for fresh installs.
59     Group: Applications/System
60     AutoReqProv: false
61     Requires: libxml2-python, python, rpm-python >= 4.2-0.61
62     Requires: anaconda = %{version}-%{release}
63     Requires: createrepo >= 0.4.3-3.1, squashfs-tools, mkisofs
64     %ifarch %{ix86} x86_64
65     Requires: syslinux
66     %endif
67     %ifarch s390 s390x
68     Requires: openssh
69     %endif
70     Requires: /usr/bin/strip, xorg-x11-font-utils, netpbm-progs
71 slords 1.7 Requires: xml-common
72     Requires: libxml2
73     Requires(post): /usr/bin/xmlcatalog
74     Requires(postun): /usr/bin/xmlcatalog
75 slords 1.1
76     %description runtime
77     The anaconda-runtime package contains parts of the installation system which
78     are needed for installing new systems. These files are used to build media
79     sets, but are not meant for use on already installed systems.
80    
81     %prep
82    
83     %setup -q
84 slords 1.5
85 slords 1.1 %patch1 -p1
86     %patch2 -p1
87     %patch3 -p1
88     %patch4 -p1
89     %patch5 -p1
90     %patch6 -p1
91     %patch7 -p1
92     %patch8 -p1
93 slords 1.2 #%patch9 -p1
94 slords 1.1 %patch10 -p1
95 slords 1.8 %patch100 -p1
96 slords 1.7
97    
98 slords 1.2
99 slords 1.1 %build
100     make depend
101     make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
102    
103     %install
104     rm -rf $RPM_BUILD_ROOT
105     make DESTDIR=$RPM_BUILD_ROOT install
106     #strip $RPM_BUILD_ROOT/usr/sbin/ddcprobe
107    
108     strip $RPM_BUILD_ROOT/usr/lib/anaconda/*.so
109    
110     %clean
111     rm -rf $RPM_BUILD_ROOT
112    
113 slords 1.7 %post runtime
114     CATALOG=/etc/xml/catalog
115     /usr/bin/xmlcatalog --noout --add "rewriteSystem" \
116     "comps.dtd" \
117     "/usr/share/xml/comps/1.0/comps.dtd" $CATALOG || :
118     /usr/bin/xmlcatalog --noout --add "rewriteURI" \
119     "comps.dtd" \
120     "/usr/share/xml/comps/1.0/comps.dtd" $CATALOG || :
121    
122     %postun runtime
123     if [ $1 = 0 ]; then
124     CATALOG=/etc/xml/catalog
125     /usr/bin/xmlcatalog --noout --del \
126     "/usr/share/xml/comps/1.0/comps.dtd" $CATALOG || :
127     fi
128    
129 slords 1.1 %files
130     %defattr(-,root,root)
131     %doc COPYING
132     %doc ChangeLog
133     %doc docs/command-line.txt
134     %doc docs/install-methods.txt
135     %doc docs/kickstart-docs.txt
136     %doc docs/mediacheck.txt
137     %doc docs/anaconda-release-notes.txt
138     /usr/bin/mini-wm
139     /usr/sbin/anaconda
140     %ifarch i386
141     /usr/sbin/gptsync
142     %endif
143     /usr/share/anaconda
144     /usr/share/locale/*/*/*
145     /usr/lib/anaconda
146    
147     %files runtime
148     %defattr(-,root,root)
149     /usr/lib/anaconda-runtime
150 slords 1.7 /usr/share/xml/comps
151 slords 1.1
152     %triggerun -- anaconda < 8.0-1
153     /sbin/chkconfig --del reconfig >/dev/null 2>&1 || :
154    
155     %changelog
156 slords 1.9 * Tue Apr 14 2009 Shad L. Lords <slords@mail.com> 11.1.2.168-1.el5.sme.1
157 slords 1.8 - Apply SME patches
158     - Make progress box wider
159     - Fix titlebar spacing
160     - Force UTC for time settings
161     - Automate bootloader upgrades
162     - Change erase disks to upgrade dialog
163     - Make install headless
164     - Don't warn if no kernels were installed
165     - Add format warning (default to no)
166     - Always upgrade to best arch version of package
167     - Remove mail to root in mdadm
168     - Allow grub to be installed on raid device
169     - Allow creating degraded raid arrays
170     - Set/write keyboard config in headless mode
171     - Display window and run post-install script when using kickstart file
172     - Update supported languages
173     - Allow language updates to be part of updates image
174     - Start boot raid device first so it will sync first
175     - Check e-smith-release instead of redhat-release
176     - Log info about degraded arrays instead of not starting them
177     - Don't crash if you can't go back to previous screen
178     - Only recreate initrd if kernel was installed
179     - Don't display warning about no being able to remove rpmdb files
180    
181 slords 1.7 * Sun Mar 1 2009 Karanbir Singh <kbsingh@centos.org>
182     - Roll in CentOS Branding
183 slords 1.6
184 slords 1.7 * Thu Dec 18 2008 Joel Granados <jgranado@redhat.com> 11.1.2.168-1
185     - Make anaconda work with new API change in YUM (jgranado)
186     Resolves: rhbz:#476957
187    
188     * Wed Dec 17 2008 Joel Granados <jgranado@redhat.com> 11.1.2.167-1
189     - Fix anaconda build (hdegoede).
190     Related: rhbz:#476739
191    
192     * Tue Dec 16 2008 Joel Granados <jgranado@redhat.com> 11.1.2.166-1
193     - Load the raid45 modules at init time (jgranado).
194     Related: rhbz#475385
195     - Make sure the raid45 modules are in the images (jgranado).
196     Related: rhbz#475385
197    
198     * Mon Dec 15 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.165-1
199     - Final translations for instnum text (clumens)
200     Related: rhbz#474375
201    
202     * Fri Dec 12 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.164-1
203     - Fix non-CHAP iBFT install cases (hdegoede)
204     Resolves: rhbz#432819
205     - More translations for the instnum text (clumens)
206     Related: rhbz#474375
207    
208     * Wed Dec 10 2008 Chris Lumens <clumens@redhat.com> 11.1.2.163-1
209     - Mark some new translations as fuzzy to fix the build.
210     Related: rhbz#474375
211    
212     * Wed Dec 10 2008 Chris Lumens <clumens@redhat.com> 11.1.2.162-1
213     - Update translation files for the instnum text change.
214     Related: rhbz#474375
215    
216     * Wed Dec 3 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.161-1
217     - Include the libwrap in the initrd image
218     Resolves: rhbz#473955
219    
220     * Mon Dec 1 2008 Joel Granados <jgranado@redhat.com> 11.1.2.160-1
221     - Allow ssh and telnet to the install (jgranado).
222     Resolves: rhbz:#473955
223    
224     * Mon Dec 1 2008 Joel Granados <jgranado@redhat.com> 11.1.2.159-1
225     - The LV size is smaller than the totall sum of the partitions that make it up (jgranado).
226     Resolves: rhbz:#468944
227    
228     * Tue Nov 25 2008 Chris Lumens <clumens@redhat.com> 11.1.2.158-1
229     - Fix up ibft use cases (pjones).
230     - Partition requests can be None when populating the tree (dlehman).
231     Resolves: rhbz#472788
232     - Remove the name check on driver disk packages.
233     Resolves: rhbz#472951
234     - Remove missing PVs before removing obsolete VG (rvykydal).
235     Resolves: rhbz#468431
236     - Make the driverdisc label uppercase (msivak).
237     Related: rhbz#316481
238    
239     * Wed Nov 19 2008 Chris Lumens <clumens@redhat.com> 11.1.2.157-1
240     - Include ide-cs module into initrd (msivak).
241     Related: rhbz#448009
242    
243     * Wed Nov 12 2008 Chris Lumens <clumens@redhat.com> 11.1.2.156-1
244     - Fix a variety of pychecker errors (clumens, dcantrell, dlehman, rvykydal).
245     Resolves: rhbz#469734
246     - Remove defunct VG before creating new one of the same name (rvykydal).
247     Resolves: rhbz#469700
248     - Fix detection of ext4 on raid in rescue and upgrade (rvykydal).
249     Resolves: rhbz#470221
250    
251     * Tue Nov 11 2008 Joel Granados <jgranado@redhat.com> 11.1.2.155-1
252     - Enable the DD repository if the DD autodetection feature was used (msivak).
253     Related: rhbz:#316631
254     - Call insmod in linuxrc.s390, not insert_module (dcantrell).
255     Related: rhbz:#184648
256     - Load FCP modules early for CD/DVD install (dcantrell).
257     Related: rhbz:#184648
258     - Update mk-s390-cdboot.c to work with large kernel images (dcantrell).
259     Related: rhbz:#184648
260     - Fix all trivial (1 liner fixes) errors found by pychecker (hdegoede).
261     Related: rhbz:#469730
262    
263     * Wed Nov 05 2008 Chris Lumens <clumens@redhat.com> 11.1.2.154-1
264     - Include the new fnic driver (jgranado).
265     Related: rhbz#462387
266     - Run the busProbe after we have all driver disks loaded (msivak).
267     Related: rhbz#316481
268    
269     * Wed Nov 5 2008 Joel Granados <jgranado@redhat.com> 11.1.2.153-1
270     - Use struct audit_reply instead of struct auditd_reply_list (hdegoede).
271     Resolves: rhbz:#469873
272     - The Encryption button was missing in one migrate case (msivak).
273     Resolves:#469849
274     - kickstart expects --dhcpclass instead of --class (clumens).
275     Resolves: rhbz:#468972
276     - Fix the mounting procedure for autodetected driverdiscs (msivak).
277     Resolves: rhbz:#316481
278    
279     * Fri Oct 31 2008 Joel Granados <jgranado@redhat.com> 11.1.2.152-1
280     - Prepare environemnt so the AutoDD is properly detected (msivak).
281     Resolves: rhbz:#316481
282     - Don't write luks passphrases to anaconda-ks.cfg (dlehman).
283     Resolves: rhbz:#468907
284     - Write zeros to remove metadata before running luksFormat (dlehman).
285     Resolves: rhbz:#469177
286    
287     * Wed Oct 29 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.151-1
288     - Write correct OPTIONS line to ifcfg files on s390 for layer2 (dcantrell)
289     Resolves: rhbz#468755
290    
291     * Wed Oct 29 2008 Joel Granados <jgranado@redhat.com> 11.1.2.150-1
292     - Call createrepo in buildinstall only if --pkgorder is present (rvykydal).
293     Resolves: rhbz:#467341
294    
295     * Tue Oct 28 2008 Joel Granados <jgranado@redhat.com> 11.1.2.149-1
296     - Actually use the stderr parameter instead of duping to stdout (dlehman).
297     Resolves: rhbz:#467289
298     - Revert "Specify a default cio_ignore parameter for s390x (#253075)" (dcantrell).
299     Related: rhbz:#253075
300     - Revert "Enable CCW devices used for installation (#253075)" (dcantrell).
301     Related: rhbz:#253075
302     - Revert "Correctly enable ignored CCW devices in linuxrc.s390 (#253075)" (dcantrell).
303     Related: rhbz:#253075
304    
305     * Fri Oct 24 2008 Joel Granados <jgranado@redhat.com> 11.1.2.148-1
306     - Probe the devices to populate cache for DD routines (msivak).
307     Resolves: rhbz:#316481
308    
309     * Thu Oct 23 2008 Joel Granados <jgranado@redhat.com> 11.1.2.147-1
310     - Dont execute the extra information message for all the devices (jgranado).
311     Resolves: rhbz:#466291
312    
313     * Tue Oct 21 2008 David Cantrell <dcnatrell@redhat.com> 11.1.2.146-1
314     - Fix up CCW device enabling on s390x (dcantrell)
315     Resolves: rhbz#253075
316    
317     * Mon Oct 20 2008 Dave Lehman <dlehman@redhat.com> 11.1.2.145-1
318     - Handle device names containing "/" in LUKS name fixup
319     Related: rhbz#464769
320    
321     * Thu Oct 16 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.144-1
322     - Enable CCW devices used for installation (dcantrell)
323     Resolves: rhbz#253075
324    
325     * Wed Oct 15 2008 Joel Granados <jgranado@redhat.com> 11.1.2.143-1
326     - Change order when calling dasdFmt to avoid race condition while formating dasd drives (jgranado).
327     Resolves: rhbz:#466474
328    
329     * Tue Oct 14 2008 Joel Granados <jgranado@redhat.com> 11.1.2.142-1
330     - Add the enic driver (jgranado).
331     Resolves: rhbz:#462387
332     - Get the right list elements for the iscsi text interface (clumens).
333     Resolves: rhbz:#466902
334     - Fix detection of ext4/ext4dev root partitions in rescue (rvykydal).
335     Resolves: rhbz:#466868
336    
337     * Mon Oct 13 2008 Joel Granados <jgranado@redhat.com> 11.1.2.141-1
338     - Prevent creation of encrypted swraid partitions (dlehman).
339     Resolves: rhbz:#456283
340     - Enable the iBFT by default and set the fallbacks to mimic the w/o iBFT behaviour (msivak).
341     Resolves: rhbz:#445721
342    
343     * Fri Oct 10 2008 Peter Jones <pjones@redhat.com> - 11.1.2.140-1
344     - Don't display errors from nl_set_device_mtu() (dcantrell)
345     Resolves: rhbz#466305
346     - Use a correct path for addnote, since the one in the original patch
347     wasn't what the kernel group thought they were telling me.
348     Related: rhbz#462663
349    
350     * Thu Oct 09 2008 Chris Lumens <clumens@redhat.com> 11.1.2.139-1
351     - Handle None in luks device name rectification (pjones).
352     Resolves: rhbz#466348
353    
354     * Wed Oct 08 2008 Peter Jones <pjones@redhat.com> - 11.1.2.138-2
355     - Start the iBFT configured drives during iSCSI startup (msivak)
356     Resolves: rhbz#445721
357    
358     * Wed Oct 08 2008 Peter Jones <pjones@redhat.com> - 11.1.2.138-1
359     - Add note to bootable kernel image on ppc64 (dhowells)
360     Related: rhbz#462663
361    
362     * Mon Oct 06 2008 Chris Lumens <clumens@redhat.com> 11.1.2.137-2
363     - Better error checking when retrieveing info from iBFT (msivak).
364     Related: rhbz#445721
365     - Fix a typo in the anaconda-runtime %post scriptlets.
366     Resolves: rhbz#465441
367    
368     * Fri Oct 3 2008 Joel Granados <jgranado@redhat.com> 11.1.2.136-2
369     - Fix build.
370     Related: rhbz:#445721
371    
372     * Fri Oct 3 2008 Joel Granados <jgranado@redhat.com> 11.1.2.136-1
373     - Rebuild to make brew happy.
374     Related: rhbz:#445721
375    
376     * Fri Oct 3 2008 Joel Granados <jgranado@redhat.com> 11.1.2.135-1
377     - iBFT has MAC addresses with wrong case, use strcasecmp to compare them (msivak).
378     Resolves: rhbz:#445721
379     - Look up correct luks name before trying to decide on our boot device (pjones).
380     Resolves: rhbz:#464769
381     - Add new LUKS devices to partitions.encryptedDevices (dlehman).
382     Resolves: rhbz:#464769
383     - Add a workaround for lvm-on-raid size miscomputation (clumens).
384     Resolves: rhbz:#463431
385     - Do not use labels to specifiy LUKS devices in /etc/fstab (dlehman).
386     Resolves: rhbz:#461702
387    
388     * Thu Oct 2 2008 Joel Granados <jgranado@redhat.com> 11.1.2.134-1
389     - Fix traceback when using kickstart and device encryption (pjones).
390     Resolves: rhbz:#461700
391     - Fix traceback when using encryption with kickstart (pjones).
392     Resolves: rhbz:#461700
393     - Fix ext4/ext4dev detection on existing partitions (rvykydal).
394     Resolves: rhbz:#465248
395    
396     * Tue Sep 30 2008 Joel Granados <jgranado@redhat.com> 11.1.2.133-1
397     - Set a label on /etc/sysconfig/keyboard (clumens).
398     Resolves: rhbz:#463785
399     - Add comps.dtd to anaconda-runtime package (dcantrell).
400     Resolves: rhbz:#442138
401     - Make sure /etc/xml/catalog is updated on package removal (dcantrell).
402     Resolves: rhbz:#442138
403     - Fix a logging traceback in the encryption code (clumens).
404     Resolves: rhbz:#464771
405     - Fix lvm partitioning in gui that was broken (rvykydal).
406     Resolves: rhbz:#415871
407     - Fix computing of lvm partition sizes wrt physical extent size in gui (rvykydal).
408     Resolves: rhbz:463780
409     - Add pointer initialization (rvykydal).
410     Resolves: rhbz#439461
411    
412     * Fri Sep 26 2008 Joel Granados <jgranado@redhat.com> 11.1.2.132-1
413     - When we use kickstart with specified UI mode, do not prompt for VNC (msivak).
414     Resolves: rhbz##453551
415    
416     * Thu Sep 25 2008 Chris Lumens <clumens@redhat.com> 11.1.2.131-1
417     - Fix rescue mode typo.
418     Resolves: rhbz#463920
419     - Fix traceback accessing obsolete data member (dlehman).
420     Resolves: rhbz#463778
421    
422     * Tue Sep 23 2008 Chris Lumens <clumens@redhat.com> 11.1.2.130-1
423     - Fix the test for if we should remove the Virt group.
424     Resolves: rhbz#462907.
425    
426     * Mon Sep 22 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.129-1
427     - Fix mk-s390-cdboot so it doesn't SIGSEGV when generating images (dcantrell)
428     Related: rhbz#184648
429     - Add libfipscheck to initrd for sshd on s390x (clumens)
430     Resolves: rhbz#463273
431    
432     * Fri Sep 19 2008 Chris Lumens <clumens@redhat.com> 11.1.2.128-1
433     - Include the correct version of the spec file in the source archive.
434     Related: rhbz#461700
435    
436     * Fri Sep 19 2008 Chris Lumens <clumens@redhat.com> 11.1.2.127-1
437     - Support for system-wide passphrase for encrypted block devices (dlehman).
438     Resolves: rhbz#461700
439    
440     * Wed Sep 17 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.126-1
441     - Add a stub to cmdline UI for getLuksPassphrase (dlehman)
442     Resolves: rhbz#462491
443     - Don't add a LUKSDevice to autopart PVs unless we're encrypting (dlehman)
444     Resolves: rhbz#462640
445     - Support upgrade of systems that use encrypted block devices (dlehman)
446     Resolves: rhbz#461696
447     - Disallow use or creation of encrypted software RAID partitions (dlehman)
448     Resolves: rhbz#456283
449     - Use UUIDs instead of device nodes in crypttab (dlehman)
450     Resolves: rhbz#461702
451     - Add support for OSA Express 2 ports per CHPID (rvykydal)
452     Resolves: rhbz#439461
453     - Fix kickstart timezone value checking (rvykydal)
454     Resolves: rhbz#462595
455     Resolves: rhbz#404321
456    
457     * Tue Sep 16 2008 Chris Lumens <clumens@redhat.com> 11.1.2.125-1
458     - Include the programs needed to manage ext4 filesystems (clumens).
459     Resolves: rhbz#462476
460     - Fix a reference to a variable before it exists in network.py (clumens).
461     Resolves: rhbz#462480
462    
463     * Mon Sep 15 2008 Chris Lumens <clumens@redhat.com> 11.1.2.124-1
464     - Fix blkid_dev_next return value checking (rvykydal).
465     Resolves: rhbz#462175
466     - Add the reverse chap bits for kickstart as well (pjones).
467     Related: rhbz#432819
468     - Make iBFT reading explicit from a higher level (pjones).
469     - Fix device nodes creating for more than 8 cciss devices (rvykydal).
470     Resolves: rhbz#445765
471     - Disable iBFT support for s390 and s390x (dcantrell).
472    
473     * Thu Sep 11 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.123-1
474     - Disable iBFT support on s390 and s390x (dcantrell)
475     Related: rhbz#445721
476    
477     * Thu Sep 11 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.122-1
478     - Add full CHAP support to iSCSI (pjones)
479     Resolves: rhbz#432819
480     - Don't set iscsi devices to autostart (pjones)
481     Resolves: rhbz#437891
482     - Support iSCSI CHAP and Reverse CHAP authentication (pjones)
483     Resolves: rhbz#402431
484     Resolves: rhbz#432819
485     - Partitions growing fixed (rvykydal)
486     Resolves: rhbz#442628
487     - Do not traceback when no root partitions are found in upgrade (rvykydal)
488     Resolves: rhbz#444527
489     - Add support for ext4dev/ext4 filesystem (rvykydal)
490     Resolves: rhbz#444527
491     - Add support for reading NIC setup from the iBFT table (msivak)
492     Resolves: rhbz#445721
493     - Add 802.1q driver (rvykydal)
494     Resolves: rhbz#431915
495     - Add libfipscheck to the images (clumens)
496     Resolves: rhbz#461923
497     - Display drive model and size in MB in partitioning UI (dcantrell)
498     Resolves: rhbz#460697
499    
500     * Wed Sep 03 2008 Chris Lumens <clumens@redhat.com> 11.1.2.121-1
501     - Enable the dlabel=on for RHEL by default (msivak).
502     Related: rhbz#316481.
503    
504     * Thu Aug 28 2008 Chris Lumens <clumens@redhat.com> 11.1.2.120-2
505     - libuuid is provided by e2fsprogs-devel.
506     Related: rhbz#316481.
507    
508     * Thu Aug 28 2008 Chris Lumens <clumens@redhat.com> 11.1.2.120-1
509     - Include the nss libraries that the new RPM is linked against.
510     Resolves: rhbz#460375.
511     - Add automatic driver disk detection (msivak).
512     Resolves: rhbz#316481.
513    
514     * Wed Aug 6 2008 Joel Granados <jgranado@redhat.com> 11.1.2.119-1
515     - Support VDSK devices on s390x (dcantrell).
516     Resolves: rhbz#264061
517    
518     * Wed Jul 30 2008 Joel Granados <jgranado@redhat.com> 11.1.2.118-1
519     - Use fedorakmod.py plugin from yum-utils package, don't pack it in anaconda (rvykydal).
520     Resolves: rhbz#434804
521     - Make sure bootproto=query settings carry over to stage2 (clumens).
522     Resolves: rhbz#453863
523     - Probe BUS_VIRTIO again after probing BUS_PCI (markmc).
524     Resolves: rhbz#446232
525     - Add virtio drives to multipath blacklist (markmc).
526     Resolves: rhbz#446232
527     - Add virtio max partition count (markmc).
528     Resolves: rhbz#446232
529     - Sort virtio devices first (markmc).
530     Resolves: rhbz#446232
531     - Probe on BUS_VIRTIO for devices (markmc).
532     Resolves: rhbz#446232
533     - Explicitly include virtio_pci in the initrd (markmc).
534     Resolves: rhbz#446232
535     - Add virtio to module-info (markmc).
536     Resolves: rhbz#446232
537     - Add virtio support to devMakeInode() (markmc).
538     Resolves: rhbz#446232
539     - Offer physical NIC identification in stage 1 (dcantrell).
540     Resolves: rhbz:#261101
541     - Suspend the curses interface before calling scripts and resume afterwards (msivak).
542     Resolves: rhbz#435314
543    
544     * Wed Jul 23 2008 Joel Granados <jgranado@redhat.com> 11.1.2.117-1
545     - Fix the build.
546     - Change the Makefile so it doesn't replace tags.
547    
548     * Wed Jul 23 2008 Joel Granados <jgranado@redhat.com> 11.1.2.116-1
549     - Specify a default cio_ignore parameter for s390x (dcantrell).
550     Resolves: rhbz#253075
551     - Call dhcpNetDevice() instead of removed pumpNetDevice() (rvykydal).
552     Resolves: rhbz#452664
553     - Add support for the --only-use argument to RHEL5 (rvykydal).
554     Resolves: rhbz#318351
555     - Log a message informing about the critical upgrade error (jgranado).
556     Resolves: rhbz#436865
557     - Support booting from FCP-attached CD/DVD drive on s390 (dcantrell).
558     Resolves: rhbz#184648
559     - The actual size of a logical volume must be rounted down (jgranado).
560     Resolves: rhbz#415871
561     - Set network device MTU if user specified mtu= (dcantrell).
562     Resolves: rhbz#435874
563    
564     * Wed Jul 16 2008 Joel Granados <jgranado@redhat.com> 11.1.2.115-1
565     - Pass the cmdline options to the nfs structure (jgranado).
566     Resolves: rhbz#432603
567     - Remove hicolor-icon-theme>gtk2 from whiteout.py (msivak).
568     Resolves: rhbz#369251
569     - Ask the user if he wants to use VNC instead of text mode (msivak).
570     Resolves: rhbz#453551
571     - Leftover bits of encrypted block device support (dlehman).
572     Resolves: rhbz#229865
573     - Rescue of systems containing encrypted block devices (dlehman).
574     Resolves: rhbz#229865
575     - Support preexisting encrypted block devices (dlehman).
576     Resolves: rhbz#229865
577     - Kickstart support for encrypted block devices (dlehman).
578     Resolves: rhbz#229865
579     - User interface for manipulating encrypted block devices (dlehman).
580     Resolves: rhbz#229865
581     - Partitioning with encrypted block devices (dlehman).
582     Resolves: rhbz#229865
583     - Device-level support for encrypted block devices (dlehman).
584     Resolves: rhbz#229865
585    
586     * Wed Jul 9 2008 Joel Granados <jgranado@redhat.com> 11.1.2.114-1
587     - Enable upgrades for mayor version in rhel5 only (jgranado).
588     Resolves: rhbz#436865
589     - Handling of invalid timezone value in kickstart added (rvykydal).
590     Resolves: rhbz#404321
591     - GCC is complaining about unchecked return value from read call (msivak).
592     Resolves: rhbz#448009
593     - Enable re-IPL on s390x after installation (dcantrell).
594     Resolves: rhbz#432416
595     - Change the maximum recommended swap size to "2000 + (current ram)" (jgranado).
596     Resolves: rhbz#447372
597     - Don't show the virtualization option if we are in Xen or in Vmware (jgranado).
598     Resolves: rhbz#258441
599     - Prepare the system a little before initializing the pcmcia devices (msivak).
600     Resolves: rhbz#448009
601     - Change the total number of processed packages/files/.. to avoid negative counter in remaining packages (msivak).
602     Resolves: rhbz#436103
603     - Create additional /dev/xvda device nodes (clumens).
604     Resolves: rhbz#437752
605     - Don't use error messages from dosfslabel as the label (clumens)
606     Resolves: rhbz#427457
607     - Add nui driver (jgranado).
608     Resolves: rhbz#444820
609     - Allow the use of the "-" character in lvm names (jgranado).
610     Resolves: rhbz#430907
611     - yum.remove removes installed packages, not to be installed packages (msivak).
612     Resolves: rhbz#442325
613     - Allow removing packages by glob now that yum supports it (msivak).
614     Resolves: rhbz#442325
615 slords 1.3
616 slords 1.5 * Wed Apr 16 2008 Chris Lumens <clumens@redhat.com> 11.1.2.113-1
617     - Require the latest version of libnl-devel.
618     Resolves: rhbz#441922
619     - Fix definition of __libc_setlocale_lock for new glibc.
620     Resolves: rhbz#441940
621     - Add support for the bcm5710 driver.
622     Resolves: rhbz#442553
623     - Require the latest libdhcp (dcantrell).
624     Resolves: rhbz#435978
625     - Fix networking tracebacks (pjones, clumens).
626     Resolves: rhbz#442020
627    
628     * Tue Apr 08 2008 Chris Lumens <clumens@redhat.com> 11.1.2.112-1
629     - Make isys.dhcpNetDevice() work in rescue mode (dcantrell).
630     Related: rhbz#435978
631    
632     * Wed Apr 02 2008 Chris Lumens <clumens@redhat.com> 11.1.2.111-1
633     - Don't rebuild the initrds if no modules were installed.
634     Resolves: rhbz#439379
635     - Bootable requests can not be on logical volumes.
636     Resolves: rhbz#439270
637     - Name the xen images for ia64 in the .treeinfo file (jgranado).
638     - Fix reporting on transaction errors (jgranado).
639     Resolves: rhbz#437813
640     - Fix loop iteration in nl_ip2str (dcantrell).
641     Resolves: rhbz#437773
642     - Allow GPT on ppc or ppc64 (dcantrell).
643     Resolves: rhbz#438683
644    
645     * Tue Mar 25 2008 Chris Lumens <clumens@redhat.com> 11.1.2.110-1
646     - Don't try to initialize iSCSI when the portal cannot be detected (msivak).
647     Resolves: rhbz#435173
648    
649     * Tue Mar 25 2008 Chris Lumens <clumens@redhat.com> 11.1.2.109-1
650     - Make sure DHCP works in rescue mode (dcantrell).
651     Resolves: rhbz#435978
652    
653     * Mon Mar 17 2008 Chris Lumens <clumens@redhat.com> 11.1.2.108-1
654     - Avoid SIGSEGV on s390x in netlink loop (dcantrell).
655     Resolves: rhbz#436377
656    
657     * Thu Mar 6 2008 Jeremy Katz <katzj@redhat.com> - 11.1.2.107-1
658     - Fix another case which could have None options
659     Resolves: rhbz#435998
660    
661     * Wed Mar 05 2008 Chris Lumens <clumens@redhat.com> 11.1.2.106-1
662     - Fix the case where we're checking for _netdev but options is None (pjones).
663     Resolves: rhbz#435998
664    
665     * Mon Mar 03 2008 Chris Lumens <clumens@redhat.com> 11.1.2.105-1
666     - Add support for _rnetdev mount option in fstab (pjones).
667     Resolves: rhbz#435716
668     - Lots of network UI configuration fixes (dcantrell).
669     Resolves: rhbz#432011
670     - Fix lvm error handling (msivak).
671     Related: rhbz#224636
672    
673     * Thu Feb 21 2008 Chris Lumens <clumens@redhat.com> 11.1.2.104-1
674     - Handle exceptions when setting up repos not enabled by a key.
675     Resolves: rhbz#433028
676     - Show unconfigured interfaces as UNCONFIGURED (dcantrell).
677     Related: rhbz#275291
678    
679     * Tue Feb 19 2008 Chris Lumens <clumens@redhat.com> 11.1.2.103-1
680     - Fix a traceback in the backported pkgorder fix.
681     Resolves: rhbz#432006
682     - Fix wrong function names for iscsi login/start (pjones).
683     Resolves: rhbz#433276
684    
685     * Sat Feb 16 2008 Chris Lumens <clumens@redhat.com> 11.1.2.102-1
686     - Correct auth command reading problem for ks files (dcantrell).
687     Related: rhbz#427388
688     - Use correct salt length for MD5, SHA256, & SHA512 (dcantrell).
689     Related: rhbz#427388
690    
691     * Wed Feb 13 2008 Chris Lumens <clumens@redhat.com> 11.1.2.101-1
692     - Make sure interface description is defined (dcantrell).
693     Resolves: rhbz#432635
694     - Set an attribute when iscsid is started
695     Resolves: rhbz#431904
696    
697     * Mon Feb 11 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.100-1
698     - Better fixes for iscsi probing (pjones, jlaska)
699     Related: rhbz#431924
700     - Make man pages work in the chrooted environment (jgranado)
701     Resolves: rhbz#243443
702     - Use correct variable in comparison (jgranado)
703     Related: rhbz#432035
704    
705     * Fri Feb 08 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.99-1
706     - Prevent writing out IPV6ADDR=none lines to ifcfg-ethX files (jgranado)
707     Resolves: rhbz#432035
708    
709     * Thu Feb 07 2008 Chris Lumens <clumens@redhat.com> 11.1.2.98-1
710     - Fix an infinite loop in using libnl (dcantrell).
711     Related: rhbz#303681
712    
713     * Thu Feb 07 2008 Chris Lumens <clumens@redhat.com> 11.1.2.97-1
714     - Add module dependencies of qeth.ko.
715     Resolves: rhbz#431922
716     - Make sure ISCSIADM and such are defined (pjones).
717     Resolves: rhbz#431924
718     - Use libnl to read MAC and IP addresses (dcantrell).
719     Resolves: rhbz#303681
720     - Fix usage of minstg2 vs. stage2 in low-mem cases (jgranado).
721     Resolves: rhbz#207657
722    
723     * Tue Feb 05 2008 Chris Lumens <clumens@redhat.com> 11.1.2.96-1
724     - Include libnssutil3.so in the initrd for s390 as well.
725     Resolves: rhbz#431054
726     - Document the dhcptimeout parameter (msivak).
727     Related: rhbz#198147, rhbz#254032
728    
729     * Mon Feb 04 2008 Chris Lumens <clumens@redhat.com> 11.1.2.95-1
730     - Propagate hostname from stage 1 to stage 2 on s390x (dcantrell).
731     Resolves: rhbz#354021
732    
733     * Fri Feb 01 2008 Chris Lumens <clumens@redhat.com> 11.1.2.94-1
734     - Include libnssutil3.so for sshd on s390 (dcantrell).
735     - Remove old IP addresses from interface on reconfig (dcantrell).
736     Resolves: rhbz#218273
737     - More fixes for .treeinfo (jgranado).
738    
739     * Wed Jan 30 2008 Chris Lumens <clumens@redhat.com> 11.1.2.93-1
740     - Support network --bootproto=query in kickstart installs.
741     Resolves: rhbz#401531
742     - Set the format flag for new volume groups (msivak).
743     Resolves: rhbz#246523
744     - More fixes for .treeinfo (jgranado).
745     Related: rhbz#253992
746    
747     * Mon Jan 28 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.92-1
748     - Fix remaining issues with createLuserConf() changes
749     Related: rhbz#430237
750    
751     * Mon Jan 28 2008 Chris Lumens <clumens@redhat.com> 11.1.2.91-1
752     - Include python-iniparse in stage2 for pirut.
753     Resolves: rhbz#430212
754     - Update the information contained in .treeinfo files (jgranado).
755     Resolves: rhbz#253992
756     - Fix namespace issue with createLuserConf (dcantrell).
757     Resolves: rhbz#430237
758     - Write /etc/resolv.conf and /etc/hosts in stage1 on s390 (dcantrell).
759     Related: rhbz#428694, rhbz#216158
760    
761     * Wed Jan 23 2008 Chris Lumens <clumens@redhat.com> 11.1.2.90-1
762     - Add the stage2 to the .treeinfo file (jgranado).
763     Resolves: rhbz#253992
764     - Fix handling %packages section in output anaconda-ks.cfg file.
765     Related: rhbz#280101
766     - Fix a traceback caused by the patch for 427388.
767     Resolves: rhbz#429902
768     - Fix some additional errors in createLuserConf() (dcantrell).
769     Resolves: rhbz#429902
770     - Fix iscsi so that mkinitrd can talk to the running daemon (pjones).
771    
772     * Mon Jan 21 2008 Chris Lumens <clumens@redhat.com> 11.1.2.89-1
773     - Support SHA256/SHA512 password encoding from kickstart (dcantrell).
774     Resolves: rhbz#427388
775    
776     * Fri Jan 18 2008 Chris Lumens <clumens@redhat.com> 11.1.2.88-1
777     - Allow users to back up past instkey dialog (dlehman).
778     Resolves: rhbz#252349
779     - Handle missing FTP files the same way as missing HTTP files (dlehman).
780     Resolves: rhbz#350251
781     - Add support for iSCSI iBFT (msivak).
782     Resolves: rhbz#307761
783     - Do not display NICs as UNCONFIGURED in network_text.py (dcantrell).
784     Resolves: rhbz#275291
785     - If bootproto is dhcp, unset any static settings (dcantrell).
786     Resolves: rhbz#218489
787     - Add support for the mptctl driver.
788     Resolves: rhbz#382941
789     - Fix a traceback running pkgorder in non-base products (dgregor).
790     Resolves: rhbz#317131
791     - Fix a traceback when adding zFCP disk without specifying details (msivak).
792     Resolves: rhbz#428180
793     - Catch lvm tools errors when creating logical volumes (msivak).
794     Resolves: rhbz#224636
795     - Add support for specifying the dhcp timeout (msivak).
796     Resolves: rhbz#198147, rhbz#254032
797     - Don't add a trailing 1 to filesystem labels (jgranado).
798     Resolves: rhbz#415861
799     - Add spufs support (jgranado).
800     Resolves: rhbz#247720
801     - List iSCSI multipath devices in the installer UI. (dcantrell).
802     Resolves: rhbz#391951
803     - Fix selected device when adding an advanced storage device (msivak).
804     Resolves: rhbz#248447
805     - Add maketreeinfo.py script (jgranado).
806     Resolves: rhbz#253992
807     - Make F12 work for the network config screen in text installs (jgranado).
808     Resolves: rhbz#250982
809     - Add the ixgbe driver (jgranado).
810     Resolves: rhbz#350911
811     - Write out IPV6INIT= to network-scripts (jgranado).
812     Resolves: rhbz#243524
813     - Close md devices to fix RAID tracebacks (jgranado).
814     Related: rhbz#208970
815     - Use input %packages section for anaconda-ks.cfg (msivak).
816     Resolves: rhbz#280101
817     - Add option for selecting different comps file (msivak).
818     Resolves: rhbz#352081
819     - Add nicdelay parameter (msivak).
820     Resolves: rhbz#349521
821     - Be more accepting in which strings we wait for from sshd (alanm).
822     Resolves: rhbz#286031
823     - Allow the use of double quotes in the pxeboot config file (jgranado).
824     Resolves: rhbz#248170
825     - Read the nic info before showing the configuration window (jgranado).
826     Resolves: rhbz#278451
827     - Make the back button work on the network config screen in loader (jgranado).
828     Resolves: rhbz#233655
829     - Get lcs interface name correctly (msivak).
830     Resolves: rhbz#237508
831     - Include more terminfo files to fix s390 telnet mode (msivak).
832     Resolves: rhbz#231173
833     - Fix kickstart docs for --dhcpclass parameter (jgranado).
834     Resolves: rhbz#248910
835     - Fix traceback when displaying autopartition error messages (jgranado).
836     Resolves: rhbz#247257
837     - Fix comparison of unusual network interface names (jgranado).
838     Resolves: rhbz#246135
839     - Populate the kickstart file dialog with the original value (jgranado).
840     Resolves: rhbz#245936
841     - Make the man pages work in rescue mode (jgranado).
842     Resolves: rhbz#243443
843     - Sort text package list (jgranado).
844     Resolves: rhbz#242456
845     - Don't eject the cd before the %post scripts are run (jgranado).
846     Resolves: rhbz#238711
847 slords 1.1
848 slords 1.2 * Wed Oct 17 2007 Chris Lumens <clumens@redhat.com> 11.1.2.87-1
849     - Prompt for manual network configuration in the loader if needed.
850     Related: rhbz#296081
851    
852     * Mon Oct 15 2007 Chris Lumens <clumens@redhat.com> 11.1.2.86-1
853     - Don't try to use DHCP in networks with static IP configuration.
854     Resolves: rhbz#296081
855    
856     * Wed Oct 03 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.85-1
857     - Check both IP structure members in getFileFromNfs()
858     Resolves: rhbz#316251
859    
860     * Thu Sep 27 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.84-1
861     - Check return values correctly on netlink_interfaces_ip2str() and
862     netlink_interfaces_mac2str()
863     Resolves: rhbz#230525
864     Related: rhbz#209284
865    
866     * Wed Sep 19 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.83-1
867     - Add cxgb3 driver (pjones)
868     Resolves: rhbz#296791
869    
870     * Tue Sep 18 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.82-1
871     - Fix kickstart over NFS installs on s390x (ks=nfs:host:/path)
872     Resolves: rhbz#250689
873    
874     * Mon Sep 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.81-1
875     - Make major and minor long ints in devMakeInode()
876     Related: rhbz#218816
877    
878     * Mon Sep 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.80-1
879     - Create all variations of tape drive device nodes (dlehman)
880     Resolves: rhbz#218816
881    
882     * Fri Sep 14 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.79-1
883     - Correct infinite loop problem with new recvfrom() code for reading large
884     netlink messages
885     Related: rhbz#230525
886     - Make sure we clear the netlink cache before looking up IP or MAC addrs
887     Related: rhbz#235824
888    
889     * Thu Sep 13 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.78-1
890     - Fix manual IPv4 configuration when adding an iSCSI device
891     Related: rhbz#235824
892    
893     * Wed Sep 12 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.77-1
894     - Revert netlink_init_interfaces_list() changes
895     Resolves: rhbz#287541
896    
897     * Tue Sep 11 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.76-1
898     - Fix going back to the network device selection screen in loader
899     Resolves: rhbz#253285
900     - Rework netlink_get_interface_ip() to handle large recvfrom responses (pjones)
901     Related: rhbz#230525
902     - Driver disk fixes (clumens)
903     Related: rhbz#213318
904     - Make sure MACADDR is written to ifcfg-* files (bhinson)
905     Related: rhbz#248049
906    
907     * Wed Sep 05 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.75-1
908     - Fix network handling via CMS conf file on s390x
909     Resolves: rhbz#278261
910    
911     * Wed Sep 05 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.74-1
912     - Find all NICs with netlink call
913     Related: rhbz#230525
914    
915     * Tue Sep 04 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.73-1
916     - Handle empty VSWITCH parameter (bhinson AT redhat DOT com)
917     Related: rhbz#248049
918    
919     * Tue Sep 04 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.72-1
920     - Rebuild against kudzu-1.2.57.1.15
921     Resolves: rhbz#276161
922    
923     * Fri Aug 31 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.71-1
924     - Remove extra newtPopWindow() call
925     Related: rhbz#260621
926    
927     * Thu Aug 30 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.70-1
928     - Fix text wrap width on partition type combo (dlehman)
929     Related: rhbz#221791
930     - Avoid SIGSEGV in for kickstart installs on Configure TCP/IP window
931     Related: rhbz#260621
932    
933     * Wed Aug 29 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.69-1
934     - Skip Configure TCP/IP window for kickstart installs
935     Resolves: rhbz#260621
936     - Do not run _isys.vtActivate() on s390x
937     Related: rhbz#217563
938     - Keep drive selection box disabled if user clicks Back (clumens)
939     Related: rhbz#219207
940    
941     * Mon Aug 27 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.68-1
942     - Do not return after NIC config for iSCSI setup
943     Resolves: rhbz#233029
944    
945     * Fri Aug 24 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.67-1
946     - Fix "no more mirrors" problems when retrieving packages (dlehman)
947     Resolves: rhbz#240582
948     - Don't add duplicate fstab entries if the fstype is none (clumens)
949     Resolves: rhbz#253485
950     - Allow users to change their NIC and reconfigure it in loader
951     Resolves: rhbz#253285
952     - Validate IP addresses correctly for manual entry on s390x linuxrc
953     Related: rhbz#234152
954     - Correct setting addon repository names (clumens)
955     Related: rhbz#206152
956    
957     * Fri Aug 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.66-1
958     - Select appropriate kernel devel package (dlehman)
959     Related: rhbz#226784
960    
961     * Fri Aug 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.65-1
962     - Don't assume tb[IFLA_ADDRESS] contains data
963     Resolves: rhbz#252988
964     - Add support for VSWITCH and MACADDR conf variables on s390x
965     Resolves: rhbz#248049
966     - Fix ks=nfs: regression on s390x
967     Resolves: rhbz#250689
968    
969     * Mon Aug 13 2007 Peter Jones <pjones@redhat.com> - 11.1.2.64-1
970     - Fix memory size comparison in PAE test.
971     Related: rhbz#207573
972     - Add e1000e and igb modules.
973     Resolves: rhbz#251733
974     Resolves: rhbz#251735
975    
976     * Fri Aug 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.63-1
977     - Disable zFCP device before removing LUN (bhinson AT redhat DOT com)
978     Resolves: rhbz#249341
979    
980     * Wed Aug 08 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.62-1
981     - Add a symlink in /etc to /mnt/runtime/etc/yum, handle kABI
982     requires/provides (dlehman)
983     Resolves: rhbz#241412
984     - Fix converting UI selections into which drives should be used for
985     partitioning (clumens)
986     Resolves: rhbz#247997
987    
988     * Mon Aug 06 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.61-1
989     - Honor ip=<val>/ipv6=<val>/noipv4/noipv6 boot parameters and skip the
990     loader configuration if enough settings are passed on the boot line
991     Resolves: rhbz#246603
992    
993     * Fri Jul 20 2007 Peter Jones <pjones@redhat.com> - 11.1.2.60-1
994     - Hopefully fix usb-storage reloading. Still needs testing
995     Related: rhbz#247830
996     - Ignore failure to unmount /mnt/source if we don't think there's a real mount
997     (dlehman)
998     Related: rhbz#223059
999     - Prevent SIGSEGV when going back from NFS entry box after manual IPv4
1000     configuration (dcantrell)
1001     Resolves: rhbz#248075
1002     - Fix the timezone window (dcantrell)
1003     Resolves: rhbz#248928
1004    
1005     * Wed Jul 18 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.59-1
1006     - Correctly discover underlying physical disks for RAID devices (pjones)
1007     Resolves: rhbz#248616
1008     - Mark iSCSI root with _netdev mount option (markmc AT redhat DOT com)
1009     Resolves: rhbz#244994
1010     - Clear screen after post-install NIC settings
1011     Resolves: rhbz#248130
1012     - Display mpath model and unit info on text partitioning screen
1013     Related: rhbz#185852
1014    
1015     * Mon Jul 16 2007 Peter Jones <pjones@redhat.com> - 11.1.2.58-1
1016     - Only skip redhat-lsb during dependency resolution if it's not
1017     the only thing left
1018     Resolves: rhbz#248195
1019    
1020     * Thu Jul 12 2007 Peter Jones <pjones@redhat.com> - 11.1.2.57-1
1021     - Only use GPT when we've got really big disks
1022     Resolves: rhbz#247830
1023     - Allow ia64 virt installs without "debug" option
1024     Resolves: rhbz#246718
1025     - Copy firmware files correctly from driver disks
1026     Related: rhbz#224076
1027    
1028     * Thu Jul 12 2007 Peter Jones <pjones@redhat.com> - 11.1.2.56-1
1029     - Save "nodmraid" option so mkinitrd won't turn it on during boot
1030     Related: rhbz#185852
1031     - Don't mark partitions as bootable on GPT disks unless we're using EFI
1032     Related: rhbz#130236
1033     - Fix size display errors with large disks
1034     Related: rhbz#130236
1035    
1036     * Tue Jul 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.55-1
1037     - Display mpath model information on the custom partitioning screen
1038     Related: rhbz#185852
1039    
1040     * Tue Jul 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.54-1
1041     - Add missing colon on an if statement in getMpathModel()
1042     Related: rhbz#185852
1043     - Do not add extra 'mapper/' to fulldev in getMpathModel()
1044     Related: rhbz#185852
1045    
1046     * Tue Jul 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.53-1
1047     - Use scsi_id to gather WWID info in getMpathModel()
1048     Related: rhbz#185852
1049     - Do not strip 'mapper/' from mpath device names in the partitioning UI
1050     Related: rhbz#185852
1051    
1052     * Mon Jul 09 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.52-1
1053     - If we have seen an mpath device, do not gather its WWID again
1054     Related: rhbz#185852
1055     - Fix code indentation errors
1056     Related: rhbz#185852
1057     - Fix errors in the getMpathInfo() function when executing multipath
1058     Related: rhbz#185852
1059     - Display mpath devices without the 'mapper/' text
1060     Related: rhbz#185852
1061     - Get WWID from bindings file if multipath command returns nothing
1062     Related: rhbz#185852
1063     - Require that USB devices remain stable for a longer time period (pjones)
1064     Resolves: rhbz#222684
1065    
1066     * Mon Jul 09 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.51-1
1067     - Ignore empty lines when collecting WWIDs per mpath device
1068     Related: rhbz#185852
1069     - Comment out existing blacklist and blacklist_exceptions blocks in the
1070     /etc/multipath.conf file
1071     Related: rhbz#185852
1072     - Reset SELinux file contexts on multipath.conf and bindings files
1073     Related: rhbz#185852
1074    
1075     * Fri Jul 06 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.50-1
1076     - Read default multipath.conf values from either the target system or the
1077     anaconda stage2 environment. Make sure we only read one WWID per mpath
1078     alias and log an error if we didn't.
1079     Related: rhbz#185852
1080     - Install the PAE kernel when applicable (e.g., >4GB memory)
1081     Resolves: rhbz#207573
1082     - Read mpathNNN devices when generating the bindings and multipath.conf files
1083     Related: rhbz#185852
1084     - Make sure the partitioning UI screen displays WWID and model information
1085     for multipath devices
1086     Related: rhbz#185852
1087     - Use GPT on all architectures with non-boot disks >=2TB (pjones)
1088     Resolves: rhbz#130236
1089    
1090     * Thu Jul 05 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.49-1
1091     - Generate multipath bindings and multipath.conf before package
1092     installation. Use scsi_id to collect WWIDs rather than the multipath
1093     command to maintain consistency with what pyblock has done.
1094     Related: rhbz#185852
1095    
1096     * Fri Jun 29 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.48-1
1097     - Support new driver disk repo layout.
1098     Resolves: rhbz#213318
1099     - Add missing TEXT_EDIT_BUTTON constants back (dcantrell).
1100     Resolves: rhbz#245606.
1101     - Fix a traceback when writing out multipath configs (dcantrell).
1102     Related: rhbz#185852.
1103    
1104     * Thu Jun 28 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.47-1
1105     - Fix traceback when writing out repo lines.
1106     Resolves: rhbz#246084
1107    
1108     * Wed Jun 27 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.46-1
1109     - Create package header directory since yum doesn't anymore (katzj).
1110     Resolves: rhbz#245918
1111     - Write out repo lines to anaconda-ks.cfg.
1112     Resolves: rhbz#206152
1113     - Enable multipathd on mpath installs (dcantrell).
1114     Resolves: rhbz#243421
1115     - Pull scsi_id from /lib/udev, include kpartx and mpath commands (dcantrell).
1116     Resolves: rhbz#185852
1117     - Display model information in the UI for mpath devices (dcantrell).
1118     Resolves: rhbz#208341
1119     - Add nspr libraries and additional nss libraries.
1120     Related: rhbz#245215
1121     - Fox error reporting in iscsi connection code (pjones).
1122    
1123     * Tue Jun 26 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.45-1
1124     - Add keyutils-libs (clumens)
1125     Resolves: rhbz#245734
1126     - Set up and use yum backend plugins (dlehman)
1127     Resolves: rhbz#241412
1128     - Install debuginfo packages (james.antill)
1129     Resolves: rhbz#236033
1130    
1131     * Tue Jun 26 2007 James Antill <jantill@redhat.com> - 11.1.2.44-2
1132     - Remove default exclude for debuginfo.
1133     - Resolves: rhbz#236033
1134    
1135     * Fri Jun 22 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.44-1
1136     - Fix typo in multipath part of making stage2 image (dcantrell).
1137     - Include the scsi_id command in the stage2 image (dcantrell).
1138     Resolves: rhbz#185852
1139     - Write out a minimal /etc/multipath.conf (dcantrell).
1140     Related: rhbz#185852
1141    
1142     * Thu Jun 21 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.43-1
1143     - Correct iSCSI portal discovery
1144     Resolves: rhbz#233029
1145    
1146     * Thu Jun 21 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.42-1
1147     - Handle ip=dhcp correctly so kickstart files are fetched automatically
1148     Resolves: rhbz#244418
1149     - Write newline after NETWORKING_IPV6=yes line
1150     Resolves: rhbz#226911
1151     - Make sure libnss3.so is included in the stage2 image
1152     Resolves: rhbz#245215
1153    
1154     * Wed Jun 20 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.41-1
1155     - Include Xen block devices in the blacklist_exception block
1156     Related: rhbz#243527
1157     - Remove the lvm.conf filter modification to avoid regression
1158     Related: rhbz#243531
1159     - Fix traceback when looking for multipath devices to collect WWIDs for
1160     Related: rhbz#185852
1161    
1162     * Tue Jun 19 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.40-1
1163     - Add libselinux-python to the stage2 image (clumens)
1164     Resolves: rhbz#244892
1165     - Copy static multipath commands in to stage2 image
1166     Related: rhbz#185852
1167     - Filter /dev/mapper/mpath* and /dev/mpath* in lvm.conf
1168     Related: rhbz#185852
1169     - Run /sbin/multipath and copy generated bindings file to target system,
1170     populate blacklist_exception block in multipath.conf with WWIDs from
1171     generated bindings file
1172     Related: rhbz#185852
1173    
1174     * Mon Jun 18 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.39-1
1175     - Flush driveDict so zFCP are picked up after being brought online
1176     Resolves: rhbz#236903
1177     - Warn user when more than 15 partitions found on a libata-controlled disk
1178     Resolves: rhbz#238858
1179     - Add mpath filters to lvm.conf on target system
1180     Resolves: rhbz#243531
1181     - Make sure target system has multipath bindings file, add multipath WWIDs
1182     to blacklist_exception block in multipath.conf
1183     Resolves: rhbz#243527
1184     - Always print device node name for mpath devices in fstab
1185     Resolves: rhbz#243532
1186    
1187     * Thu Jun 14 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.38-1
1188     - Import tempfile to fix kickstart install tracebacks.
1189     Resolves: rhbz#244240
1190    
1191     * Tue Jun 12 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.37-1
1192     - Add support for Areca RAID controllers (clumens)
1193     Resolves: rhbz#238014
1194     - Pass -br to the X server so there is no more hatch (clumens)
1195     Resolves: rhbz#195919
1196     - Echo 1 to each zFCP LUN to make entire device available (dcantrell)
1197     Resolves: rhbz#207097
1198     - Prevent static network configuration from failing (dcantrell)
1199     Resolves: rhbz#221660
1200     - Allow user to skip entering a gateway or nameserver when adding an iSCSI
1201     address (dcantrell)
1202     Resolves: rhbz#235824
1203     - Do not log errors when unmounting /mnt/source if it was not supposed to
1204     be mounted in the first place (dlehman)
1205     Resolves: rhbz#223059
1206     - Handle F13 shortcut key on installation key dialog (dlehman)
1207     Resolves: rhbz#210673
1208     - Create nodes for and probe for tape drives (dlehman)
1209     Resolves: rhbz#218816
1210     - Improve configuration screens for systems with multiple NICs (dcantrell)
1211     Resolves: rhbz#218200
1212     - Per-interface IPv4 and IPv6 configuration (dcantrell)
1213     Resolves: rhbz#213110
1214     Related: rhbz#218200
1215     - Add logging for yum logging (katzj)
1216     Resolves: rhbz#212259
1217     - Only ask user to run VNC is Xvnc is present (dcantrell)
1218     Resolves: rhbz#217563
1219     - Add /sbin/sfdisk (dcantrell)
1220     Resolves: rhbz#224297
1221     - For /dev/hvc0 terminals, set TERM to vt320 (dcantrell)
1222     Resolves: rhbz#219556
1223     - Set DHCPv6_DISABLE flag when using IPv6 auto neighbor discovery (dcantrell)
1224     Resolves: rhbz#231645
1225     - Handle more than 10 Ethernet interfaces (dcantrell)
1226     Resolves: rhbz#230525
1227     - Support OSA layer 2 networking on zSeries (bhinson)
1228     Resolves: rhbz#233376
1229     - Handle ksdevice=BOOTIF correctly (dcantrell)
1230     Resolves: rhbz#209284
1231     - Fix text wrap width in auto partitioning text mode screen (dlehman)
1232     Resolves: rhbz#221791
1233     - Correctly count SCSI disk devices (dlehman)
1234     Resolves: rhbz#230526
1235     - Include /usr/sbin/dmidecode on ia64 (dlehman)
1236     Resolves: rhbz#232947
1237     - Bind mount /dev/pts in rescue mode (dlehman)
1238     Resolves: rhbz#228714
1239     - Do not ignore productpath in pkgorder (dlehman)
1240     Resolves: rhbz#230487
1241     - Describe 'nfs --opts' in kickstart-docs.txt (clumens)
1242     Resolves: rhbz#234187
1243     - Sanity check network info on zSeries (dcantrell)
1244     Resolves: rhbz#234152
1245     - Do not bring up network in stage 2 if it's already up (dcantrell)
1246     Resolves: rhbz#232400
1247     - Do not traceback when trying to remove the /mnt/sysimage tree (dcantrell)
1248     Resolves: rhbz#227650
1249     - Write correct infor to /etc/sysconfig/network (dcantrell)
1250     Resolves: rhbz#222147
1251     - If custom partitioning is selected, make drive selection non
1252     sensitive (clumens)
1253     Resolves: rhbz#219207
1254     - Do not traceback if users neglects to enter an lvsize (clumens)
1255     Resolves: rhbz#221253
1256     - Do not load a module when the kickstart device line is incorrect (clumens)
1257     Resolves: rhbz#227510
1258     - Handle errors resulting from malformed repositories (clumens)
1259     Resolves: rhbz#219274
1260     - Remove all invalid RAID requests when using kickstart (clumens)
1261     Resolves: rhbz#235279
1262     - Avoid traceback getting the PID of iscsiadm (clumens)
1263     Resolves: rhbz#223257
1264     - Make sure kickstart scripts execute with correct working dir (clumens)
1265     Resolves: rhbz#237317
1266     - Support multiple ksappend lines (clumens)
1267     Resolves: rhbz#222201
1268     - Write out fstab after migrate (clumens)
1269     Resolves: rhbz#223215
1270     - Make the packages section in anaconda-ks.cfg match UI selections (clumens)
1271     Resolves: rhbz#227383, rhbz#231121, rhbz#235881
1272     - Copy volume group format attribute to new request (clumens)
1273     Resolves: rhbz#217585
1274     - Use /dev/ nodes for probing RAID superblocks (clumens)
1275     Resolves: rhbz#208970
1276     - Put more space between device description and the stripe for tall
1277     languages (clumens)
1278     Resolves: rhbz#217294
1279     - Add netxen_nic driver (clumens)
1280     Resolves: rhbz#230245
1281     - Provide detailed disk info in text mode partitioning screen (dcantrell)
1282     Resolves: rhbz#235054
1283     - If wrong interface is selection, allow user to choose another one (clumens)
1284     Resolves: rhbz#213787
1285     - Focus installation key text box and populate fields correctly (dlehman)
1286     Resolves: rhbz#223831
1287     - Make sure the regkey settings are written to anaconda-ks.cfg (dlehman)
1288     Resolves: rhbz#221450
1289     - Select kernel-xen-devel when optional packages selected (dlehman)
1290     Resolves: rhbz#226784
1291     - Fix typo in message shown when user skips entering the install key (dlehman)
1292     Resolves: rhbz#224491
1293     - If autopart selection is custom, make sure review checkbox is active and
1294     not sensitive. (dlehman)
1295     Resolves: rhbz#220951
1296     - Write NETWORKING_IPV6=no to /etc/sysconfig/network if IPv6 is disabled
1297     during installation. (dcantrell)
1298     Resolves: rhbz#226911
1299     - Fix input validation loop in manual network config in loader
1300     Resolves: rhbz#223193 (dcantrell)
1301     - Make "description" translate correctly (pjones)
1302     Resolves: rhbz#216067
1303 slords 1.1
1304     * Thu Feb 1 2007 Peter Jones <pjones@redhat.com> - 11.1.2.36-1
1305     - Fix traceback when using text mode with a language that we can't display
1306     Resolves: #225528
1307    
1308     * Fri Jan 26 2007 Peter Jones <pjones@redhat.com> - 11.1.2.35-1
1309     - Don't set the migration flag for FAT labels if we're formatting the
1310     partition
1311     Resolves: #223898
1312     - Process directories recursively when relabelling
1313     Resolves: #218791
1314    
1315     * Fri Jan 26 2007 Jeremy Katz <katzj@redhat.com> - 11.1.2.34-2
1316     - fix ordering for split media installs (#223090)
1317    
1318     * Wed Jan 24 2007 Peter Jones <pjones@redhat.com> - 11.1.2.34-1
1319     - The PAE kernel isn't named according to the normal convention, so we need
1320     "kernel-PAE" instead of "kernel-pae" in the list for grub.
1321     Resolves: #223941
1322    
1323     * Tue Jan 23 2007 Peter Jones <pjones@redhat.com> - 11.1.2.33-1
1324     - Handle FAT/VFAT labels on upgrade better
1325     Resolves: #223890
1326     - Include kernel-pae in the list of kernels we set up in grub.conf (#223941)
1327    
1328     * Mon Jan 22 2007 Peter Jones <pjones@redhat.com> - 11.1.2.32-1
1329     - Don't try to migrate fat/vfat labels if there's no fstab yet (#223554).
1330     - Always dasdfmt when we're relabeling a dasd device.
1331     Resolves: #223492
1332     - Don't use FAT/VFAT labels that are in use on other filesystems
1333     Resolves: #218957
1334    
1335     * Fri Jan 19 2007 Peter Jones <pjones@redhat.com> - 11.1.2.31-1
1336     - Fix typo in yesterday's iscsi fix
1337     Resolves: #223257
1338    
1339     * Thu Jan 18 2007 Peter Jones <pjones@redhat.com> - 11.1.2.30-1
1340     - Fix iscsi shutdown's "ps" call
1341     Resolves: #223257
1342     - Fix "halt" kickstart directive
1343     Resolves: #222953
1344    
1345     * Wed Jan 17 2007 Peter Jones <pjones@redhat.com> - 11.1.2.29-1
1346     - fix rhpl import
1347     Resolves: #222991
1348    
1349     * Tue Jan 16 2007 Peter Jones <pjones@redhat.com> - 11.1.2.28-1
1350     - Use a GtkWindow for the release notes viewer (katzj)
1351     Resolves: #220418
1352     - Add pirut to our textdomain so strings get translated (katzj)
1353     Resolves: #216067
1354     - Don't log a pvrequest's "drive" attribute, since they don't all have them
1355     Resolves: #221992
1356     - Fix "clearpart" and such to only happen once
1357     Resolves: #220021
1358     - Handle multiple repo paths better
1359     Resolves: #221146
1360     Resolves: #221260
1361     - label fat filesystems for /boot/efi on ia64
1362     Resolves: #218957
1363     - Don't overwrite hdinstall partition when "clearpart --all --initlabel" is
1364     in ks.cfg (dlehman)
1365     Resolves: #220331
1366     - Fix depsolver progress meter problems when there's not enough space (dlehman)
1367     Resolves: #215493
1368     - Don't show "unsupported language" error when not in interactive mode (clumens)
1369     Resolves: #222096
1370     - Change default mpath option to disabled
1371     Related: #219843
1372     - Remove packages pulled in for deps when there's a space error (dlehman)
1373     Resolves: #222894
1374     - Disable betanag (katzj)
1375    
1376     * Thu Jan 4 2007 Peter Jones <pjones@redhat.com> - 11.1.2.27-1
1377     - Include cdroms in the scsi disk count (katzj, #207336)
1378     - Translation display fixes (katzj, #216067)
1379     - Wait longer for usb floppy access (#211222)
1380     - Make the package repo path list right (#221260)
1381    
1382     * Wed Jan 3 2007 Peter Jones <pjones@redhat.com> - 11.1.2.26-1
1383     - Fix bug trying to find repomd files (#221146)
1384     - Don't do 'clearpart' stuff on fsset if we're not in a kickstart (#221090)
1385    
1386     * Tue Jan 2 2007 Peter Jones <pjones@redhat.com> - 11.1.2.25-1
1387     - Turn off multipath support by default (enable with "mpath" during boot)
1388     - Don't clear partitions if it's already been done (#220021)
1389     - Handle upgrade conditionals better (pnasrat, #218909, #214747)
1390     - Handle new repo dict format (dlehman, #220241, #220326)
1391     - Don't log messages about VT tech preview on s390 and ppc (dlehman, #220236)
1392    
1393     * Mon Dec 18 2006 Peter Jones <pjones@redhat.com> - 11.1.2.24-1
1394     - Make sure reg keys are written out un upgrade (dlehman, #219791)
1395     - handle 'regkey --skip' correctly in kickstart (dlehman, #219544)
1396     - Allow users to go back and change regkeys (dlehman, #219361)
1397     - Do not accept regkeys that don't match the install media (dlehman, #219823)
1398     - Honor dhcpclass parameter in isys (dcantrell, #220057)
1399     - Pick paths better for url iso installs (#219205)
1400    
1401     * Fri Dec 15 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.23-1
1402     - Use subprocess in execConsole (clumens, #210481, #216155)
1403     - Leave a way for mkinited to discover lack of mpath (pjones, #219843)
1404     - Pass 'anaconda' to instClass.installDataClass() (pjones, #219793)
1405     - Use intf, not self.anaconda.intf in partedUtils
1406     - Handle DiskSet instantiation from LabelFactory when anaconda=None
1407     - Resolves: rhbz#210481 rhbz#216155 rhbz#219843 rhbz#219793
1408    
1409     * Thu Dec 14 2006 Peter Jones <pjones@redhat.com> - 11.1.2.22-1
1410     - Only show information appropriate to the install class specified by the
1411     reg key (dlehman, #218967)
1412     - Fix dasd formatting (dcantrell, #218861)
1413     - Fix iscsi portal discovery (#216164)
1414     - Update xvc0 major/minor (katzj, #218050)
1415     - Fix device node creation in 'rescue' (clumens)
1416     - Fix zFCP device addition (dcantrell, #210635)
1417    
1418     * Wed Dec 13 2006 Peter Jones <pjones@redhat.com> - 11.1.2.21-1
1419     - Handle reg keys with dashes (dlehman, #218716)
1420     - Don't traceback with no iscsi (katzj, #218513)
1421     - Unmount cdrom after installation when using local stage2 during http
1422     install (dlehman)
1423     - Fix typo in iscsi code (katzj, #218513)
1424     - Remove LIBUSER_CONF from the environment before running
1425     post (clumens, #218213)
1426     - Don't allow virt by default on ia64 (#215429)
1427     - Fix lvm off-by-one-extent problems with previously created volume groups
1428     (pjones, #217913)
1429    
1430     * Wed Dec 6 2006 Peter Jones <pjones@redhat.com> - 11.1.2.20-1
1431     - Remove language choices for which there is no font (katzj, #217498)
1432     - Add stex module (katzj, #209179)
1433     - Fix debug output (pnasrat, #217751, #217774)
1434    
1435     * Fri Dec 1 2006 Dennis Gregorovic <dgregor@redhat.com> - 11.1.2.19-2
1436     - rebuild
1437     - Related: rhbz#217861
1438    
1439     * Wed Nov 29 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.19-1
1440     - Don't always write out xconfig and monitor lines (#211977).
1441     - Pull in xinf files from X driver packages on url images.
1442     - Fix for changed API (katzj, #217673, #217689).
1443    
1444     * Tue Nov 28 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.18-1
1445     - Fix registration key dialog (katzj).
1446     - Base shown tasks on registration key (katzj).
1447     - Init wreq structure before use (dcantrel, #215367).
1448     - Fetch new release notes file on language change (#217501).
1449     - Add ipv6= command line argument (dcantrel).
1450     - Rework loader network config screen (dcantrel, #213108, #213112).
1451     - Disable testing registration keys when out of beta (katzj, #217360).
1452     - Fix si_LK timezone (katzj, #217288).
1453     - Set the right home directory on kickstart user command (#216681).
1454     - Allow correcting kickstart file location on error/typo (#216446).
1455     - Check for .discinfo instead of using a static number (pjones, #214787).
1456     - Nodes property typo (pnasrat, #216410).
1457     - Only set broadcast and network addr if ipv4 is enabled (dcantrel, #215451).
1458    
1459     * Fri Nov 17 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.17-1
1460     - Preserve drive order specified in kickstart (#214881).
1461     - Be smarter about checking if iscsi is available (katzj, #216128).
1462     - Install language support packages in text mode (nasrat, #215867).
1463     - Fix kernel naming (katzj, #215746).
1464     - Fix handling of iscsiadm output and activation of devices (pjones).
1465     - Depsolve on optional/non-grouped packages (nasrat, #214848).
1466     - Update kickstart documentation.
1467     - Make sure source is unmounted on image installs before %post (#214677).
1468     - Use mode 0600 for install-num file (katzj, #214853).
1469    
1470     * Thu Nov 09 2006 Paul Nasrat <pnasrat@redhat.com> -11.1.2.16-1
1471     - Fix traceback due to incorrect no discs (#214787)
1472    
1473     * Wed Nov 8 2006 Peter Jones <pjones@redhat.com> - 11.1.2.15-1
1474     - Fix segfault when there's no EDD, as on ppc (#214653)
1475     - Always skip networking screen on kickstart installs (clumens, #214584)
1476     - Update install method docs (clumens, #214159)
1477    
1478     * Mon Nov 6 2006 Peter Jones <pjones@redhat.com> - 11.1.2.14-1
1479     - Avoid traceback with PReP partitions on disks that aren't currently
1480     in use (clumens, #211098)
1481     - Fix traceback when all space is in use (ddearau AT us.ibm.com, #213616)
1482     - Fix text mode traceback (katzj, #213869)
1483     - Use better API for network configuration dialog (katzj, #213356)
1484    
1485     * Fri Nov 03 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.13-1
1486     - Install in text mode if a KVM confused X autodetection.
1487    
1488     * Fri Nov 03 2006 Paul Nasrat <pnasrat@redhat.com> - 11.1.2.12-1
1489     - Fix traceback on ftp loopback iso installs (#212014)
1490     - Enable IPv6 dns support in loader (dcantrell)
1491    
1492     * Wed Nov 1 2006 Peter Jones <pjones@redhat.com> - 11.1.2.11-1
1493     - Fix localhost6 line in /etc/hosts (dcantrell, #210050)
1494     - Add more fonts to the install image (katzj, #207428)
1495     - Remove i386 dmraid on multi-arch upgrades (katzj, #209011)
1496     - Improve split ISO URL installs (clumens)
1497     - Fix line wrapping in clearpart (clumens, #213425)
1498     - Always set an active value in the LVM PE size combo box (clumens, #212317)
1499     - Don't try to clear partitions on drives in the skippedList (clumens)
1500     - Don't try to resolve port numbers from urls as hostnames (clumens, #212622)
1501    
1502     * Fri Oct 27 2006 Peter Jones <pjones@redhat.com> - 11.1.2.10-1
1503     - Don't use keepalive sockets when they won't be reused (#212571)
1504    
1505     * Fri Oct 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.9-1
1506     - Fix install key handling (#212548)
1507     - Catch hard drives that don't exist (clumens, #212377)
1508     - Fix typo for slovak keyboard (#212304)
1509    
1510     * Thu Oct 26 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.8-1
1511     - Fall over to the next mirror correctly (#208077, #212014).
1512    
1513     * Wed Oct 25 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.7-1
1514     - Fix zfcp (#210094)
1515     - Remove unneeded whiteout
1516     - Fix a case where we might have leaked an fd (#212191)
1517    
1518     * Tue Oct 24 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.6-1
1519     - Add Sinhala (#207426)
1520     - Fix a traceback in shell exec (pnasrat, #211830)
1521     - Write out proper ipv6 localhost in /etc/hosts (dcantrel, #211800)
1522     - Merge swap/graphical limits from fc6 (#211649)
1523     - Fix canceling with iscsi (#211996)
1524     - Fix static IPs with iscsi/repo adding
1525     - Fix use of repos on upgrade (#211547)
1526     - Add real key format (dlehman, #207752)
1527    
1528     * Fri Oct 20 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.5-1
1529     - Build against libdhcp-1.16
1530     - Continue if vname or vparm are NULL in readNetInfo (#211502)
1531     - Add fonts-telugu (katzj, #207428)
1532     - Fix install progress bar/window dimensions (katzj, #211526)
1533     - Don't specify a stdout of stderr for shells on zSeries (clumens, #210481)
1534     - Use execConsole function to run shells (clumens)
1535     - Only use netlink messages with ARP Ethernet headers (katzj, #210195)
1536     - Force swap formatting on ppc (pnasrat, #206523)
1537     - Don't traceback without a key in cmdline mode (katzj, #211476)
1538     - Pass noipv4/noipv6 settings from stage 1 to stage 2 (#208334)
1539     - Correct --onbiosdisk handling (clumens, #210705)
1540     - Keep runlevel 3 if doing a VNC install (clumens, #211318)
1541     - Don't use unicode line drawing on vt100-nav terminals (katzj, #208374)
1542     - Remove multilib packages (pnasrat, #209011)
1543    
1544     * Tue Oct 17 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.4-1
1545     - yum fix retry on failure (katzj, #211117)
1546     - Fix ordering for iSCSI tools on CD installs (katzj, #208832)
1547     - Only go back a screen from regKeyScreen is possible (katzj, #211101)
1548     - Support --skip for instkey (katzj)
1549     - Parse /tmp/netinfo correctly on zSeries (#207991)
1550     - Fix for virtualization being the group instead of xen (katzj)
1551    
1552     * Mon Oct 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.3-1
1553     - Better regex for finding ISO loopback mounts (clumens, #205133)
1554     - Setup baseurl better for additional repos (clumens, #210877)
1555     - Add qla2400 and qla2xxx to late module load list (#210886)
1556     - Write out zfcp to anaconda-ks.cfg
1557     - Write out iscsi to anaconda-ks.cfg
1558     - Preserve installation number in anaconda-ks.cfg and on the system (#207029)
1559     - Add support for 'key' directive in kickstart for installation number
1560     - Handle non-base repos which may or may not exist better (#202810)
1561     - Fix zfcp (#210094)
1562     - Take up more space for package descriptions (#210531)
1563     - New installation number dialog (#207752)
1564    
1565     * Thu Oct 12 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.2-1
1566     - Fix layout where extra repo selection box is not displayed (clumens)
1567     - Fix desktop upgrade (katzj, #210408)
1568     - Don't start a new process group and do exit(0) instead of return
1569     after receiving SIGTERM (pjones)
1570     - Only do auditDaemon if we're not in test or rootpath mode (pjones)
1571     - Error only when checking the initiator name (katzj, #210347)
1572     - Don't force gateway and DNS values (#200029)
1573     - Set IPv6 entry box sensitivity correctly in text mode
1574     - Initialize useIPv4 and useIPv6 correctly when existing net info is there
1575    
1576     * Wed Oct 11 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.1-1
1577     - Ignore basepath in getHeader to fix CD installs (pnasrat).
1578     - Fix package installation.
1579    
1580     * Tue Oct 10 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.0-1
1581     - Allow setting the language to something not in lang-table (clumens, #176538)
1582     - Fix split media (pnasrat)
1583     - Fix going back from advanced bootloader (clumens, #210190)
1584     - Bump early swap to be higher
1585     - Add Telugu (#207428)
1586     - Update edd support (Rez Kabir, #207331)
1587     - Sleep hacks for usb-storage (zaitcev, #207336)
1588    
1589     * Mon Oct 9 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.110-1
1590     - Fix SELinux contexts for iscsi
1591     - Fix traceback if addrepos isn't shown (#209997)
1592     - Fix traceback looking up hostnames (clumens, #209672)
1593     - Fix split media (pnasrat)
1594     - Fix network to be enabled after install on non-network installs
1595    
1596     * Fri Oct 6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.109-1
1597     - Fix iscsi for toolchain changes and targets with multiple IPs
1598     - Validate ips like 9.1.2.3 (dcantrel, #209654)
1599    
1600     * Fri Oct 6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.108-1
1601     - Fix endless spinning with redhat-lsb depcheck (#209665)
1602     - Fix usefbx (clumens)
1603     - Fix traceback with loopback isos (pnasrat)
1604    
1605     * Thu Oct 5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.107-1
1606     - minor yum api fix
1607    
1608     * Wed Oct 4 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.105-1
1609     - Fix details in tui pkgselection (#209310)
1610     - Add Assamese (#207424)
1611     - More network UI sanity checking (dcantrel)
1612     - Disable release notes url clicking (dcantrel)
1613     - Fix traceback going back on upgrade (#205198)
1614     - Try to fix up sr_CS.UTF-8@Latn some more (#182591)
1615    
1616     * Tue Oct 03 2006 Chris Lumens <clumens@redhat.com> - 11.1.0.104-1
1617     - More netconfig fixes (dcantrel).
1618     - Reset protected partitions list (#204405).
1619     - Handle more iscsi error cases (katzj, #208671).
1620     - Don't bring down network interfaces after fetching files (dcantrel,
1621     #201194).
1622    
1623     * Mon Oct 2 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.103-1
1624     - More netconfig fixing (dcantrel)
1625     - Fix some translation problems (#206620)
1626     - Don't do netconfig on task toggle (#208562)
1627     - Some mpath/dmraid fixes (pjones, #208423)
1628     - Only set graphical if VNC is enabled in kickstart, not
1629     all kickstarts (clumens)
1630     - Ensure RAID levels get sorted (#208478)
1631     - Fix handling of locales we can't display (#208841)
1632     - Fix traceback in partition editing (clumens, #208677)
1633     - Try to fix sr_CS.UTF-8@Latn (#182591)
1634     - Ensure a depcheck on redhat-lsb (#201222)
1635     - Fix pkgorder to order "needed" groups early (#206778)
1636    
1637     * Thu Sep 28 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.102-1
1638     - Disable repo writing for now
1639     - Fixup text network config (dcantrel)
1640     - More HTTP response codes (clumens)
1641     - Don't try to use updates disk image by default (clumens)
1642     - Give an error message when netconfig fails
1643     - Don't prompt for non-existent cd
1644     - Fix DNS with dhcp for extras on CD install
1645    
1646     * Wed Sep 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.101-1
1647     - Give indication of no optional packages (#204242)
1648     - Don't give an error on partition mount errors looking for upgrades (#201805)
1649     - Firewire fix (notting)
1650     - Make initrd.size have 0644 perms (dcantrel, #197773)
1651     - More netconfig tweaks (dcantrel)
1652     - Support loopback URL mounts (pnasrat, #207904)
1653     - Turn off firstboot on s390 (clumens, #207926)
1654     - Set display mode if vnc ks (clumens, #204736)
1655     - Fix partitioning traceback (#208101)
1656     - Fix lowres (clumens)
1657     - xfs tweak (esandeen, #208323)
1658     - Add qla4xxx (#208324) and qla3xxx
1659    
1660     * Thu Sep 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.100-1
1661     - Fix a few tracebacks (#207594, #207587)
1662     - Allow only iSCSI disks (#207471)
1663     - Fix bootdisk.img on x86_64
1664    
1665     * Wed Sep 20 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.99-1
1666     - Fix CD stage2 + URL installs (clumens, #205571, #206072)
1667     - Remove hostap (clumens, #196334)
1668     - Fix input validation for manual network config (dcantrel,
1669     #206148, #206678, #206537)
1670     - More network UI improvements (dcantrel)
1671     - Fix upgrade tracebacks (pnasrat, #206913)
1672     - Improved zfcp code (#204145)
1673     - Format swap on ppc upgrades (pnasrat, #206523)
1674     - Fix network interface bringup (dcantrel, #206192, #200109)
1675     - Allow running anaconda with --target arch for stateless (#206881)
1676     - Improve iscsi and zfcp TUI and kickstart config
1677    
1678     * Fri Sep 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.98-1
1679     - Fix stage2 creation (prarit, #206638)
1680     - Add ehea driver (pjones)
1681     - Fix rescue mode for the early shell case
1682    
1683     * Thu Sep 14 2006 Chris Lumens <clumens@redhat.com> 11.1.0.97-1
1684     - Compile fix (pjones).
1685    
1686     * Thu Sep 14 2006 Chris Lumens <clumens@redhat.com> 11.1.0.96-1
1687     - Use -no-fragments to mksquashfs (katzj, #206472).
1688     - Fix scsi and usb module loading (pjones).
1689     - Better testing for driver disk correctness (katzj, #195899).
1690     - Support HTTP redirects in the loader (#188198, #204488).
1691     - Write out repo configuration (pnasrat, #199468).
1692     - Fix installing from additional repos on CD/DVD installs (katzj, #205846).
1693     - Network UI fixes (katzj).
1694     - --vesa -> --xdriver (pjones).
1695     - Fix when group selection should appear in kickstart installs.
1696     - Fix logical volume size checking again (#206039).
1697     - Skip attached devices without media present again (#205465).
1698     - Install fs packages if they're needed for installation (katzj, #205865).
1699     - Only collect network addresses for running interfaces (dcantrel).
1700     - zSeries initrd fixes (dcantrel, #197773).
1701    
1702     * Fri Sep 8 2006 Peter Jones <pjones@redhat.com> - 11.1.0.95-1
1703     - Look for repodata where the CDs are mounted, not where they're
1704     stored (clumens)
1705     - Reverse traceback print order in the UI so most recent call is listed
1706     first (clumens, #204817)
1707     - Don't install device-mapper-multipath or kpartx except when selected or
1708     required by install media.
1709    
1710     * Thu Sep 07 2006 Chris Lumens <clumens@redhat.com> 11.1.0.94-1
1711     - Allow opening release notes more than once (dcantrel, #203147).
1712     - Fix NFS iso installs.
1713     - More files to restorecon.
1714     - Rework GUI network configuration screen (dcantrel).
1715     - isys network cleanups (dcantrel).
1716     - Fix taking sreenshots (#204480).
1717     - Skip broken repositories in kickstart (#204831).
1718     - Pull in all policy modules in initrd making.
1719     - Fix yum traceback (katzj, #205450).
1720     - Add hptiop module (katzj, #205337).
1721    
1722     * Wed Sep 6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.93-1
1723     - unbreak xen installs
1724     - add hptiop drivers (#205337)
1725     - Fix a traceback (#205450)
1726    
1727     * Tue Sep 5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.92-1
1728     - fix the build some more
1729    
1730     * Tue Sep 5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.91-1
1731     - build fix (pjones)
1732     - traceback fix (dcantrel)
1733    
1734     * Tue Sep 5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.90-1
1735     - Update for newer iscsi code
1736     - Fix with yum API change
1737     - More files to restorecon (clumens)
1738     - Don't crash with duplicate repos (clumens)
1739     - Back to clearlooks (notting)
1740     - dmraid for dmraid, not kpartx (pjones)
1741    
1742     * Thu Aug 31 2006 Peter Jones <pjones@redhat.com> - 11.1.0.89-1
1743     - Fix going back to the repo screen (clumens)
1744     - Install correct supplementary packages when using dmraid or multipath
1745    
1746     * Wed Aug 30 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.88-1
1747     - Fix a case where images don't exist (#204648)
1748     - More making pkgorder quieter
1749    
1750     * Wed Aug 30 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.87-1
1751     - Fix traceback on editing lvm (#204631)
1752     - Fix SELinux context setting
1753     - Don't do file logging in pkgorder
1754    
1755     * Tue Aug 29 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.86-1
1756     - Fix ia64 pxeboot dir (#199274)
1757     - Remember manual TCP/IP settings (dcantrel, #202662)
1758     - Clean up extra repo stuff some more (clumens)
1759    
1760     * Tue Aug 29 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.85-1
1761     - Sanity check more device names for LVM (notting, #2040387)
1762     - Exception handling fixes (clumens)
1763     - Fix Extras selection (clumens, #204267)
1764     - Setup repos later
1765     - Improved verbage (Paul Frields, #204249)
1766     - Filter out some non-addressable storage from hd dict (pjones)
1767     - Handle xen virtual serial
1768     - Reset file contexts on mountpoints (#202525)
1769     - Ensure programs used by anaconda are installed (clumens, #203216)
1770    
1771     * Wed Aug 23 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.84-1
1772     - Run in English for CJKI text installs (clumens, #180417, #202738)
1773     - Don't mistake hard drives for CD drives (clumens, #202714)
1774     - Start to add s390x mpath support (pjones)
1775     - Whiteout scim-libs (clumens, #202543)
1776     - Fix LV size check with growing (clumens, #203095)
1777     - Fix graphical selection of drives (pjones)
1778     - Speed up mke2fs (pjones, #201645)
1779     - Add a simple audit daemon to get rid of audit spam (pjones)
1780     - Some tweaks to repo addition/task selection
1781     - Fix multipath for x86_64 (pjones, #203425)
1782     - Set language to English every time it's unsupported (clumens, #203331)
1783    
1784     * Wed Aug 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.83-1
1785     - Fix text timezone typo (clumens, #202844)
1786     - Some installclass tweaking
1787     - Fix nfsiso to handle changing repopaths
1788     - Fix x86_64 install traceback (#202660)
1789     - Adjust for new theme
1790    
1791     * Tue Aug 15 2006 Chris Lumens <clumens@redhat.com> 11.1.0.82-1
1792     - Make Turkish translation build again.
1793    
1794     * Tue Aug 15 2006 Chris Lumens <clumens@redhat.com> 11.1.0.81-1
1795     - Fix serial console shell IO (#201479).
1796     - Don't traceback if URL install path is just "/" (#202368).
1797     - Fix font typo (katzj, #202167).
1798     - SELinux fixups (pjones).
1799     - Handle virtpconsole option again (katzj, #201749, #202450).
1800     - Kickstart install fixes (#202471, #202483).
1801     - Mark strings for translation (#199022).
1802     - Fix ISO install method traceback (#201775).
1803     - Don't enable the back button if there's no screen to show (#197766).
1804     - Don't clobber a working /etc/resolv.conf on VNC installs (#201874).
1805     - Remember user choices on network config (dcantrel, #200986, #200797).
1806     - More greek fixing (katzj, #196980).
1807     - Sync pkgorder with what distill is expecting (katzj, #201923).
1808     - RHEL upgrade tweaks (katzj, #201741).
1809     - Install class detection (katzj, #201745).
1810     - Fix text upgrade traceback (katzj, #201960).
1811     - Add more libraries for s390 (katzj, #200985).
1812     - Add SATA probing (pjones).
1813     - Add registration key options (katzj, #201738).
1814     - Don't automatically set UTC check box on kickstart installs (#181737).
1815     - Patch from Paul Schroder <pschroeder@uplogix.com> for nogr mode.
1816    
1817     * Tue Aug 08 2006 Paul Nasrat <pnasrat@redhat.com> 11.1.0.80-1
1818     - Blacklist e2fsprogs.ppc64 on upgrades (#200233)
1819     - Set self.currentMedia to [] (dcantrel, #201722).
1820     - Remove multiple error messages (dcantrel, #201247)
1821     - Revert logMessage calls (clumens, #201707)
1822    
1823     * Mon Aug 07 2006 Chris Lumens <clumens@redhat.com> 11.1.0.79-1
1824     - s390 build fix.
1825    
1826     * Mon Aug 07 2006 Chris Lumens <clumens@redhat.com> 11.1.0.78-1
1827     - Fix password writing for interactive kickstart installs (#201455).
1828     - Don't check percentage on preexisting LVs (#193341).
1829     - Log added repos (#201212).
1830     - Start adding things for ia64 Xen (katzj).
1831     - Use new raid module name (katzj, #201361).
1832     - Look for ifconfig in the right place during rescue mode (#201372).
1833     - Fix segfault in FTP and HTTP path typos (#197403, #201243, #201367).
1834     - Don't display the askmethod screen on CD installs (#201108).
1835     - Do a better job at updating mkfs percentage bar (pjones).
1836     - Fix finding the release notes (#201232).
1837     - Add libvolume_id for gfs2-utils (katzj).
1838    
1839     * Wed Aug 02 2006 Paul Nasrat <pnasrat@redhat.com> 11.1.0.77-1
1840     - Fix pkgorder isdir check
1841     - Reinstate frequent rescanning of devices (clumens)
1842    
1843     * Wed Aug 02 2006 Chris Lumens <clumens@redhat.com> 11.1.0.76-1
1844     - Don't raise an exception when someone tries to delete empty space (pjones).
1845     - Fix X ks writing traceback (#201047).
1846     - Add file to describe initrd to fir LPAR installs (katzj, #197773).
1847     - Add libXau for s390 (katzj, #200985).
1848     - Sleep for disks to settle (katzj, #200589).
1849    
1850     * Tue Aug 1 2006 Peter Jones <pjones@redhat.com> - 11.1.0.75-1
1851     - Fix iSCSI and MultiPath coexistance
1852     - Don't use mygethostbyname on ipv6 yet (dcantrell)
1853     - Better logging on nfsinstall and kickstart (dcantrell, #195203)
1854     - Remove ddc probing (clumens)
1855    
1856     * Mon Jul 31 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.74-1
1857     - Fix method=http vs method=ftp (pjones)
1858     - Various xconfig fixes (clumens, #200755 #200758)
1859     - Fix FTP/HTTP installs by hostname (dcantrel, #200771)
1860     - Fix command-stubs/mknod (#200820)
1861    
1862     * Fri Jul 28 2006 Peter Jones <pjones@redhat.com> - 11.1.0.73-1
1863     - Revert DNS changes from yesterday (dcantrel)
1864     - Do the backtrace initialization after analyzing args (katzj)
1865     - Use rhpxl for all X startup tasks (clumens, #199437)
1866     - Create users under the rootpath (patch from Clark Williams)
1867     - Update to use newer dmraid libraries
1868     - Remove /nss usage (dcantrell)
1869    
1870     * Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.72-1
1871     - Don't allow ipv6-only nfs installs (dcantrel)
1872     - Fix segfault with ksdevice= (pjones, #200451)
1873     - Fix ipv6 ftp installs (dcantrel)
1874     - Ignore options we don't understand to our modprobe to help fix X
1875     startup on radeon
1876     - Use rootpath in a few places we had /mnt/sysimage hardcoded
1877     - Fix method=
1878     - Fix translation mismatch
1879    
1880     * Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.68-1
1881     - And another fix for the RHEL installclass
1882    
1883     * Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.67-1
1884     - FTP/HTTP ipv6 fixes (dcantrel)
1885     - Better prepboot handling (pnasrat)
1886     - RHEL installclass fixes
1887    
1888     * Wed Jul 26 2006 Peter Jones <pjones@redhat.com> - 11.1.0.66-1
1889     - Fix md raid request class
1890     - Check for busybox utilties in /usr/sbin (katzj)
1891     - Be smarter about log files during kickstart (clumens)
1892     - Make multipath and dmraid work
1893     - Add Kannada language (katzj)
1894     - Don't show onboot for rescue mode (katzj)
1895     - Fix AF_INET6 usage when making in6_addr (dcantrell)
1896    
1897     * Tue Jul 25 2006 Paul Nasrat <pnasrat@redhat.com> - 11.1.0.65-1
1898     - Fix noipv6 (pjones)
1899     - Fix nodmraid and nompath (katzj)
1900     - Make kickstart inherit from used installclass (katzj)
1901     - Hide rhel installclass by default (katzj)
1902     - Remove gstreamer/gstreamer-tools whiteout (#197139, katzj)
1903    
1904     * Mon Jul 24 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.64-1
1905     - Fix build failure (pjones)
1906     - Fix error handling when adding iscsi
1907     - Make things a bit more flexible based on the install class
1908     - Fix noipv4 (dcantrel)
1909     - Try not to run dmidecode a bazillion times
1910     - Cleanups for various package selection things
1911    
1912     * Fri Jul 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.63-1
1913     - Fix serial kickstart installs (clumens)
1914     - Add labels for LVM and RAID (clumens)
1915     - Show preexisting labels when they exist (clumens, #149375)
1916     - Fix traceback for no dosFilesystems (pnasrat)
1917     - Clean up to handle packages in $PRODUCTPATH or $PRODUCTPATH/RPMS
1918     - Various iscsi fixups
1919    
1920     * Thu Jul 20 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.62-1
1921     - Fix drivelist sensitivity when adding devices
1922     - Fix text mode package selection (clumens, #186043)
1923     - Make GMT offset timezones available (clumens, #199076)
1924     - Use attr=2 for xfs per sandeen
1925     - Fix labels of stuff created before install starts (#199605)
1926     - Add Malayalam and Oriya (#197783)
1927     - Fix partitioning (#199459)
1928    
1929     * Wed Jul 19 2006 Chris Lumens <clumens@redhat.com> 11.1.0.61-1
1930     - Bring down network interface after fetching files (dcantrel).
1931     - Use dejavu fonts instead of vera (katzj).
1932     - Tweak iSCSI, partitioning, and tasksel UI (katzj, #199451).
1933     - Fix busybox symlinks (katzj, #199463).
1934     - Use reboot instead of shutdown (katzj, #199262).
1935     - Fix DHCP error messages (dcantrel, #199452).
1936    
1937     * Tue Jul 18 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.60-1
1938     - Fix va_copy() argument ordering in logMessageV() in loader
1939    
1940     * Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.59-1
1941     - Add rudimentary firmware loading support to the loader (pjones)
1942     - Drop some whiteout (pnasrat, #196733)
1943     - Fix exec'ing of symlinks (clumens)
1944     - Add basic multipath support (pjones)
1945     - Basic support for multiple repo setup in graphical mode
1946     - Add missing files (clumens)
1947    
1948     * Mon Jul 17 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.58-1
1949     - Clean up noipv4/noipv6 stuff stuff (clumens)
1950     - Fix exception handling for test mode
1951     - Lots of iscsi changes
1952     - Create mount points for protected partitions (clumens)
1953     - Add multipath kernel modules (pjones)
1954     - Add dhcp libs needed by isys to stage2
1955    
1956     * Thu Jul 13 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.57-1
1957     - Fix unknown error on shadow file (#196705, clumens)
1958     - Removed inet_calcGateway (clumens)
1959     - Don't guess gateway address in text network UI (#197578, clumens)
1960     - Change iutil.copyFile calls to shutil.copyfile (clumens)
1961     - Removed DRI enable/disable code from xsetup (clumens)
1962     - Removed copyFile, getArch, memInstalled, and rmrf from iutil (clumens)
1963     - Don't pass command as first argument to subprocess calls (clumens)
1964     - Added network debugging mode for readNetConfig() in loader
1965     - Removed "BOOTP" string from loader network config UI
1966     - Added new dialog for network device config in stage2 (katzj)
1967     - Write gateway address to correct struct in manualNetConfig
1968     - Removed IP_STRLEN macro since that's moved to libdhcp
1969     - Link and compile libisys with libdhcp
1970     - Added back 'confignetdevice' and 'pumpnetdevice' in iutil
1971     - Removed isys_calcNetmask and isys_calcNS (clumens)
1972     - Added xkeyboard-config to fix VT switching (katzj)
1973    
1974     * Tue Jul 11 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.56-1
1975     - Many changes and fixes in the loader2 network configuration, both
1976     dhcp and manual IP entry
1977     - Fix stdin/stdout on VNC shells (clumens)
1978     - Check all bootloader entries for Windows (clumens)
1979     - Set UTC box in text install based on Windows existing or not (clumens)
1980     - Remove standalone argument for rhpxl call (clumens)
1981     - Remove call to deprecated method in yuminstall (clumens)
1982     - Fix group selection traceback in text mode (katzj, #197858)
1983    
1984     * Mon Jul 10 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.55-1
1985     - Fix findExistingRoots (clumens, #197900)
1986     - Add smartctl to rescue image (dcantrel, #198052)
1987     - Allow relative --rootpath (markmc, #197669)
1988     - Try to fix up RAID6 (#197844)
1989     - Fix keymap generation with serial console (Alexander Dupuy, #198310)
1990    
1991     * Fri Jul 7 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.54-1
1992     - Loader changes to support enabling/disabling IPv4 & IPv6
1993     - Manual IP configuration changes in loader to better support IPv{4,6}
1994     - Let GFS2 command line option work (katzj)
1995     - Rescue mode shell fixes (clumens, #197315)
1996     - Add filesystem label chooser to rescue mode (clumens, #196345)
1997     - Use configured interface for VNC connections (clumens, #197721)
1998     - Init process cleanups
1999     - Log requiring package as well as require name (pnasrat)
2000    
2001     * Wed Jul 5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.53-1
2002     - fix typo
2003    
2004     * Wed Jul 5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.52-1
2005     - Add Marathi (#194572)
2006     - Try to let UI fit a little better in LVM dialog (#197334)
2007     - Give a message if we fail to make teh device node (markmc, #197514)
2008     - Fix rescue CD
2009     - Fix minstg2 linking error (#197593)
2010     - Log the transaction error
2011     - gfs2 fixes
2012    
2013     * Fri Jun 30 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.51-1
2014     - Remove non-existent paths from LD_LIBRARY_PATH (katzj)
2015     - Calculate IPv4 broadcast address for static IP config
2016     - Started adding debugging mode to init
2017     - Return value checking for exec calls in init and loader
2018     - Do not use wait4()
2019     - WIFEXITED and WEXITSTATUS logic fixes
2020     - Remove runroot stuff from buildinstall (katzj)
2021     - Remove --comp argument from upd-instroot (katzj)
2022     - Do not allow /boot on GFS2 (katzj)
2023     - Move second images to images/ subdirectory (katzj)
2024    
2025     * Fri Jun 30 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.50-1
2026     - Rebuild against new libdhcp for fixing more loader segfaults
2027     - Pass the debug log level to libdhcp (markmc, #197175)
2028     - Look for the ks.cfg on all cd drives (notting, #197192)
2029     - Add wlite here, use it (pjones, #196099, #186701)
2030     - Add the start of gfs2 support
2031    
2032     * Wed Jun 28 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.49-1
2033     - Fix some memory leaks in the loader (pjones)
2034     - Display fs labels next to rescue choices (clumens, #196345)
2035     - Force graphical mode under vnc (clumens, #190099)
2036     - Fix splitting trees with symlinks (pnasrat, #195240)
2037     - Require system-config-date (clumens, #196452)
2038     - Ensure network UI bits end up written out (clumens, #196756)
2039     - Fix memory corruption in CD install (dcantrel)
2040     - Fix double free with ksdevice=macaddr (dcantrel)
2041     - Fix double free with HTTP/FTP installs (dcantrel, #195749)
2042     - Ensure keyboard layout gets set (clumens, #196466)
2043     - Fix text mode traceback for langs not supported in text
2044     mode (clumens, #196615)
2045     - Fix up for yum 2.9.2
2046    
2047     * Fri Jun 23 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.48-1
2048     - various pychecker inspired cleanups (clumsn)
2049     - don't try to unmount CDs twice (clumens)
2050     - filter devices without media rather than removable devices (clumens)
2051     - add iscsistart to second stage
2052     - fix pkgorder for yum api changes
2053     - fix manual ip entry (#196154)
2054     - fix tyop in zfcp gui
2055     - fix serial console being propagated to installed system (#196375)
2056    
2057     * Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.47-1
2058     - Fix iscsi-related tracebacks (clumens/katzj)
2059     - Remove some hacks that were added for s390 so that we fix them right
2060     - Set MALLOC_CHECK_ and _MALLOC_PERTURB for the loader to help flush
2061     out possible problems
2062     - Fix kernel selection on s390 (#196150)
2063     - Fixes for inet_pton usage (pjones)
2064     - Use a longer timeout for dhcp requests
2065    
2066     * Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.46-1
2067     - more tweaking of greek lang-table (#193872)
2068     - mark some strings for translation (#194617)
2069     - add back handling of ksdevice=macaddr (dcantrel, #195907)
2070     - copy libnss_dns* and libnss_files* to stage1 image to try to fix some
2071     of the dhcp oddities (dcantrel)
2072     - fix setupPythonUpdates (clumens)
2073     - wait for usb to be stable when reloading (pjones)
2074     - don't pass netlogger output as a format specifier (pjones)
2075     - fix traceback in zfcp_gui (#196097)
2076     - sort drive list more correctly in autopartitioning
2077     - bunch of tweaking to iscsi code
2078     - ensure that xvd devices are sorted as "first" so they're in front
2079     of things like iscsi devices
2080    
2081     * Fri Jun 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.45-1
2082     - setfiles moved. more fixing of policy
2083     - Give info on when we add packages as deps (#189050)
2084    
2085     * Fri Jun 16 2006 Peter Jones <pjones@redhat.com> - 11.1.0.44-1
2086     - require newer libdhcp
2087     - fix rescue mode console setup (clumens and pnasrat)
2088    
2089     * Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.43-1
2090     - Some s390 fixes
2091     - dmraid fixing (pjones)
2092    
2093     * Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.42-1
2094     - Ensure all kernel packages end up in pkgorder
2095     - Fix syntax errors in zfcp code
2096     - Fix broadcast address calculation on 64bit machines
2097     - Fix network config on s390
2098     - Some minor iscsi tweaks
2099    
2100     * Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.41-1
2101     - fix dep problem
2102    
2103     * Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.40-1
2104     - add some more kernels to the pkgorder fun
2105     - don't try to switch cds if we've already got the right one inserted
2106     - libaudit for s390
2107     - need openssh installed when building s390 trees
2108    
2109     * Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.39-1
2110     - only select groups which exist
2111    
2112     * Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.38-1
2113     - and fix ppc boot.iso (pnasrat)
2114    
2115     * Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.37-1
2116     - Remove the step ordering debug commit
2117     - Fix traceback due to new xen kernel names
2118     - Another attempt at s390
2119     - Include gptsync in install image so that mactels will boot
2120    
2121     * Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.36-1
2122     - new xen kernel names
2123     - more trying to fix s390
2124    
2125     * Tue Jun 13 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.34-1
2126     - Fix logging segfaults in loader on x86_64
2127     - More release notes viewer fixes
2128    
2129     * Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.33-1
2130     - Fix text mode package selection (clumens)
2131     - Fix IP editing (clumens)
2132     - Fix segfault on x86_64 dhcp (dcantrel)
2133     - Filter out sitX devs (dcantrel)
2134     - More release notes fixes (dcantrel)
2135     - More pkgorder fixage
2136    
2137     * Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.32-1
2138     - fix ppc images
2139    
2140     * Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.31-1
2141     - Fix loader sigsegv (dcantrel, #194882)
2142     - Fix so we don't require yum.conf (clumens, #194987)
2143     - Fix s390 tree
2144     - Fix pkgorder for new yum API
2145     - Fix release notes (dcantrel)
2146     - More api fixing (clumens/nasrat)
2147    
2148     * Mon Jun 12 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.30-1
2149     - make loader flags global (dcantrel)
2150     - fixups for yum 2.9, pull in yum-metadata-parser
2151    
2152     * Sat Jun 10 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.29-1
2153     - Fix syslinux requires
2154     - Fix autopartitioning on the mactels
2155     - Close leaky fd in reiserfs label reading code so that partitioning
2156     succeeds in that case
2157    
2158     * Fri Jun 9 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.28-1
2159     - fix dep problem (clumens)
2160     - initial pass at support for the intel-based macs
2161     - more trying to get s390 trees so they work
2162     - more ipv6 (dcantrel)
2163     - simplify error handling and return values in autopart code (clumens)
2164     - fix going back in a few places (clumens)
2165     - enable user_xattrs and acls by default
2166    
2167     * Thu Jun 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.26-1
2168     - Revert anaconda-runtime files fix.
2169    
2170     * Thu Jun 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.25-1
2171     - More IPv6 fixes (dcantrell).
2172     - Add ipv6 kernel module to image (dcantrell).
2173     - Add noipv6 installer flag (dcantrell).
2174     - Add dosfstools to requires (katzj).
2175     - Fix anaconda-runtime spec file segment (#189415, #194237).
2176     - Better partitioning error messages (#181571).
2177     - Warn if non-linux filesystems can't be mounted on upgrade (#185086).
2178     - Simplify IP address widgets for IPv6 support.
2179     - Use libdhcp instead of pump, fix requires (dcantrell).
2180    
2181     * Tue Jun 6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.24-1
2182     - Read from right stdin for kickstart scripts (Hannu Martikka, #192067)
2183     - Fix ip addr getting on 64bit boxes (clumens, #193609)
2184     - Don't specify window position (clumens)
2185     - Handle PE sizes we don't expect in the UI (clumens, #185272)
2186     - Rescue mode fixes (clumens)
2187     - Remove pointless back button (clumens, #187158)
2188     - Add user-agent to loader HTTP requests (clumens, #98617)
2189     - Use IP instead of hostname if needed (clumens, #191561)
2190     - Write out ipv6 localhost (clumens, #44984)
2191     - Add greek (#193872)
2192     - Fix s390x images (#192862)
2193     - Fix rhpxl location (clumens)
2194    
2195     * Tue May 30 2006 Chris Lumens <clumens@redhat.com> 11.1.0.23-1
2196     - Require glib2-devel.
2197     - Look for libglib in the right place on 64-bit machines.
2198    
2199     * Tue May 30 2006 Chris Lumens <clumens@redhat.com> 11.1.0.22-1
2200     - Fix going back in the UI.
2201     - Don't try to mount protected partitions twice.
2202     - Hook up new netlink code, debugging (dcantrell).
2203     - Package is actually named pyobject2 (katzj).
2204    
2205     * Thu May 25 2006 Chris Lumens <clumens@redhat.com> 11.1.0.21-1
2206     - Fix required CD dialog (pnasrat).
2207     - More anaconda class in the interfaces (dcantrel).
2208     - More netlink helper functions (dcantrel).
2209     - Don't allow logical volumes to be smaller than the volume group's PE
2210     size in interactive installs (#186412).
2211     - Make error handling for missing packages more robust and allow retrying
2212     (clumens, pnasrat, #183974).
2213     - Fix hard drive installs (#185292, #187941).
2214     - Don't always show partition review dialog in text installs.
2215     - Fix text-mode installs by adding more stuff to minstg2.img (#191991).
2216     - Skip netlink messages with invalid ARP header (dcantrel).
2217     - Add pygobject to install images (katzj).
2218    
2219     * Wed May 24 2006 David Cantrell <dcantrell@redhat.com> 11.1.0.20-1
2220     - Added Netlink helper functions to libisys.a
2221     - Do not pop wait window twice in writeBootloader (clumens)
2222     - For kickstart installs only: Do not allow logical volumes to be smaller
2223     than the volume group's PE size (#186412, clumens)
2224     - initrd fixes to account for glib2 library movement (clumens)
2225    
2226     * Tue May 23 2006 Chris Lumens <clumens@redhat.com> 11.1.0.19-1
2227     - Fix unicode stubs (pjones).
2228     - Fix libdir on ppc64 (katzj).
2229    
2230     * Tue May 23 2006 Chris Lumens <clumens@redhat.com> 11.1.0.18-1
2231     - Add slang-devel build requirement.
2232    
2233     * Tue May 23 2006 Chris Lumens <clumens@redhat.com> 11.1.0.17-1
2234     - Display full package name in log (pnasrat, #189308).
2235     - Add flags for multipath (pjones).
2236     - Allow protected partitions to be mounted (#105722).
2237     - Fix pkgorder traceback.
2238    
2239     * Fri May 19 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.16-1
2240     - Added asix driver (pjones)
2241     - Fix i18n build
2242    
2243     * Fri May 19 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.15-1
2244     - Fix indendation error in handleRenderCallback() that caused hang
2245     - Use gobject.threads_init() model
2246     - Remove gtk.threads_enter()/gtk.threads_leave() wrappers
2247     - Disk and filesystem scanning fixes (clumens)
2248    
2249     * Thu May 18 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.14-1
2250     - Few more liveCD tweaks
2251     - And clean up the ppc64 tree a little
2252     - Enable ipv6 by default (pnasrat)
2253     - Fix a traceback in finding root part (clumens)
2254    
2255     * Wed May 17 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.13-1
2256     - Fix image building typo
2257     - Remove some dead code (clumens, dcantrel)
2258     - More thread fixing (dcantrel)
2259     - Fix rescue mode (clumens)
2260     - Fix upgrades (clumens)
2261     - Don't try to mount protected partitions on hd ugprades (clumens)
2262     - Hook copyExtraModules back up (clumens, #185344)
2263     - Don't modify the main fs for user/password info on --rootpath install
2264     - Fix kickstart bootloader install
2265     - Some fixes for live CD
2266    
2267     * Tue May 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.12-1
2268     - Make mousedev loading less verbose for built-in case (#191814)
2269     - Ellipsize text (roozbeh, #191844)
2270     - Some more threads for release notes (dcantrel)
2271     - Remove lots of help related stuff (clumens)
2272     - Handle empty drive lists better looking for usb-storage and firewire (pjones)
2273     - Try to make ppc64 trees installable
2274     - Lots of cleanup to the scripts dir.
2275    
2276     * Mon May 15 2006 Chris Lumens <clumens@redhat.com> 11.1.0.11-1
2277     - Fix anaconda class typos (katzj).
2278     - Unmount media after running post scripts (#191381).
2279     - Fix VNC installs.
2280     - Support --mtu= in kickstart files (#191328).
2281     - Rework release notes viewer (dcantrel).
2282     - Fix upgrade traceback.
2283     - Fix console keymaps (pjones, #190983, #191541).
2284     - Allow USB and firewire installs, with a warning (pjones).
2285    
2286     * Mon May 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.10-1
2287     - s390x build fix.
2288    
2289     * Mon May 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.9-1
2290     - Fix cmdline installs (clumens, pnasrat).
2291     - Enable multirepo support in kickstart (clumens, pnasrat).
2292     - Begin IPv6 preparations (dcantrel).
2293     - More release notes viewer fixes (dcantrel).
2294    
2295     * Thu May 4 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.8-1
2296     - and fix the build
2297    
2298     * Thu May 04 2006 Paul Nasrat <pnasrat@redhat.com> - 11.1.0.7-1
2299     - class Anaconda (pnasrat, clumens)
2300     - User/service kickstart handlers (clumens)
2301     - Don't include kernel fs headers (katzj)
2302    
2303     * Mon May 1 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.6-1
2304     - fix build
2305    
2306     * Mon May 1 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.5-1
2307     - Fix loopback mounted url installs (dcantrel, #189097, #183999)
2308     - Different message during upgrade post scripts (clumens, #189312)
2309     - Remove obsolete startx stub (clumens)
2310     - Default UTC box to checked if we don't find a windows partition (clumens)
2311     - Fix manual IP config (clumens)
2312     - Don't change timezone in rootpath mode (Jane Dogalt, #185930)
2313     - Don't symlink things that don't exist
2314     - Don't change network config in rootpath mode (#185930)
2315     - Warn on lack of space on upgrade (clumens, #189022)
2316     - Emit --useexisting and --noformat in anaconda-ks.cfg (clumens, #189123)
2317     - Handle NFS mount options (Dave Lehman, #168384)
2318     - Do firewall and auth config in rootpath mode
2319     - Make bootloader code handle live cd case
2320    
2321     * Tue Apr 18 2006 Chris Lumens <clumens@redhat.com> 11.1.0.4-1
2322     - Pass version to mkstamp for discinfo files (jkeating).
2323     - Fix FTP method handling.
2324     - Don't download RPMs twice on FTP and HTTP methods (pnasrat, #183654).
2325     - Use libuser for setting root password.
2326     - Fix up rescue image script problems (dcantrel, #188011).
2327    
2328     * Tue Apr 04 2006 Chris Lumens <clumens@redhat.com> 11.1.0.3-1
2329     - Fix up for rhpxl Modes changes.
2330     - Fix handling of video driver if there's no list of drivers available.
2331     - Add modes files and libuser to images.
2332     - Allow updates to contain entire directories that may be missing.
2333     - Clean up deprecation warnings.
2334    
2335     * Tue Mar 28 2006 Chris Lumens <clumens@redhat.com> 11.1.0.2-1
2336     - Remove reference to pythondeps.
2337    
2338     * Tue Mar 28 2006 Chris Lumens <clumens@redhat.com> 11.1.0.1-1
2339     - Prompt for reformatting ancient swap partitions (dcantrel, #122101)
2340     - Fix lots of deprecation warnings (dcantrel)
2341     - Check for suspend signatures in swap (dcantrel, #186018)
2342     - Support logging command in kickstart
2343     - Clean up URLs we try to fetch in the loader
2344     - Fix SELinux conditional inclusion (pjones)
2345     - Remove customClass
2346     - Always ignore disks listed in ignoredisks (#186438)
2347     - Fix loader segmentation fault (#186210)
2348     - Reiser fs label avoidance (dcantrel, #183183)
2349     - Remove traceonly mode
2350     - Add rhpl to minstg2.img (#185840)
2351     - Remove lots of unneeded code in isys, iutil, and elsewhere
2352     (clumens, dcantrel, pnasrat)
2353    
2354     * Tue Mar 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.0-1
2355     - Fix text for rescue images
2356     - Fix some file contexts (#182252)
2357     - Update for new xen kernel names
2358     - Don't try to download package being erased (clumens, #184531)
2359     - Don't show group selection on ks upgrade (pnasrat, #184528)
2360     - Ignore conflicts on upgrade (pnasrat, #184461)
2361     - Don't traceback trying to mount auto fs's (clumens, #182730)
2362     - String fixes (clumens, #181916)
2363     - rootpath fix (clumens, #185172)
2364     - Prompt for missing images on hd installs (clumens, #185274)
2365     - Don't clobber network on upgrades (pnasrat, (#183203)
2366     - Fix some syntax errors (#185275)
2367     - Cap pe size at 128M (#185272)
2368     - Conditionalize selinux (msw)
2369     - Remove some obsolete code (msw, katzj)
2370     - Ensure we don't ask for no longer needed cds if packages are
2371     deselected (pnasrat, #185437)
2372     - Remove amharic and thai since we don't have fonts (clumens)
2373     - Let's try not doing traceonly and see the size difference for minstg2.img
2374     - Fix i5 (pnasrat, #186070)
2375     - Misc cleanups to iutil (clumens)
2376     - Use system-config-date for text-mode timezone too (clumens)
2377    
2378     * Mon Mar 6 2006 Jeremy Katz <katzj@redhat.com> - 10.92.17-1
2379     - fix traceback in size check
2380     - disable size check on upgrade (clumens, #184112)
2381     - try to catch more failures to read repo metadata (clumens)
2382     - only do runlevel 5 if graphical install (dcantrel, #184013)
2383     - adjust to new xen kernel package naming
2384     - add 'vesa' flag to force the use of the vesa driver
2385     - more meaningful error messages on conflicts (pnasrat)
2386     - ensure some dirs are labelled correct (#182252)
2387    
2388     * Fri Mar 3 2006 Paul Nasrat <pnasrat@redhat.com> - 10.92.16-1
2389     - Support Everything/globs in ks (pnasrat, clumens, #177621)
2390     - Allow changes if not enough disk space (clumens, #183878)
2391     - Set controlling tty in rescue mode (dcantrel,#182222)
2392     - Sort list of languages (dcantrel)
2393    
2394     * Fri Mar 3 2006 Jeremy Katz <katzj@redhat.com> - 10.92.15-1
2395     - conditional code is now in yum (pnasrat)
2396     - sort network devices smarter (clumens, #166842)
2397     - select needed fs entries (#183271)
2398     - more serbian fixes (#182591)
2399    
2400     * Tue Feb 28 2006 Jeremy Katz <katzj@redhat.com> - 10.92.14-1
2401     - fix traceback in pkgorder
2402     - don't display xen
2403     - make partitioning type combo wider (dcantrel)
2404     - handle Serbian locales properly (#182591)
2405    
2406     * Mon Feb 27 2006 Jeremy Katz <katzj@redhat.com> - 10.92.12-1
2407     - Dependency whiteout to fix ordering (clumens)
2408     - Fix swap on RAID in kickstart (#176537)
2409     - Add keymap overrides
2410     - Fix segfault with USB CD/DVD drives (#182589)
2411    
2412     * Fri Feb 24 2006 Jeremy Katz <katzj@redhat.com> - 10.92.11-1
2413     - fix traceback with segv handler (pjones)
2414     - various language fixes (dcantrel)
2415     - be clearer about askmethod (#182535)
2416    
2417     * Thu Feb 23 2006 Jeremy Katz <katzj@redhat.com> - 10.92.10-1
2418     - more bogl removal (dcantrel)
2419     - make the exception dumping less braindead about things we don't
2420     want dumped (clumens)
2421     - add backtrace handler to anaconda (pjones)
2422     - fix warnings with new yum in pkgorder
2423     - make conditional packages on deps work (pnasrat)
2424     - suppress some warnings (dcantrel)
2425     - text mode language fixes (dcantrel)
2426    
2427     * Thu Feb 23 2006 Jeremy Katz <katzj@redhat.com> - 10.92.9-1
2428     - Fix text mode traceback (dcantrel)
2429     - Skip a few more things in traceback dumps
2430     - Attempt to fix pkgorder so that we require less CDs for "normal" installs
2431    
2432     * Wed Feb 22 2006 David Cantrell <dcantrell@redhat.com> 10.92.8-1
2433     - Removed obsolete bogl code (katzj)
2434     - Removed unused code in upgrade.py (pnasrat)
2435     - Check version and packages to upgrade (pnasrat)
2436     - Removed old IDE RAID code from isys (katzj)
2437     - Various traceback fixes
2438     - Don't use underline in device names for hotkeys in bootloader gui (pjones)
2439     - Mount /selinux in rescue mode (katzj)
2440    
2441     * Tue Feb 21 2006 Chris Lumens <clumens@redhat.com> 10.92.7-1
2442     - Give Language a default display_mode (dcantrel)
2443     - Get languages that need a default from localeInfo (dcantrel)
2444    
2445     * Tue Feb 21 2006 Chris Lumens <clumens@redhat.com> 10.92.6-1
2446     - Set a default language on text mode CJK installs (dcantrel, #180417)
2447     - Fix case-sensitive matching of devices (notting, #182231)
2448     - Be smarter about required media (pnasrat)
2449     - Set MTU in the loader (katzj)
2450     - Add dev package to remove blacklist (katzj, #181593)
2451     - Try to mount device as ext3 in hard drive installs (katzj)
2452     - Sanity check unknown package & group names (pnasrat)
2453     - Reboot after writing exception dump (#181745)
2454     - Confirm in interactive kickstart installs (#181741)
2455     - Fix showing kickstart package selection again
2456     - Don't traceback if we find a %%include file that doesn't exist yet (#181760)
2457     - Skip partitioning if logvol or raid is given in ks (#181806)
2458     - Initialize UTC checkbox (#181737)
2459    
2460     * Tue Feb 14 2006 Jeremy Katz <katzj@redhat.com> - 10.92.5-1
2461     - Fix traceback in language group selection
2462     - No remote save traceback button if not network (clumens)
2463     - More fixes for minstg2.img (clumens)
2464     - Disable next/back while installing packages (dcantrel)
2465     - Bump minimum amounts for install, graphical and early swap
2466     - Enable Arabic for text mode (notting)
2467    
2468     * Tue Feb 14 2006 Jeremy Katz <katzj@redhat.com> - 10.92.4-1
2469     - improve globbing for xen guest kernels
2470     - Don't add a kernel if one is already selected.
2471    
2472     * Mon Feb 13 2006 Jeremy Katz <katzj@redhat.com> - 10.92.3-1
2473     - Don't debug log about missing help text (clumens)
2474     - Reduce deps for pkgorder
2475     - Updated kickstart docs (clumens)
2476    
2477     * Mon Feb 13 2006 Jeremy Katz <katzj@redhat.com> - 10.92.2-1
2478     - more x86_64 xen guest fixing
2479    
2480     * Mon Feb 13 2006 Jeremy Katz <katzj@redhat.com> - 10.92.1-1
2481     - try to fix x86_64 xen guest
2482    
2483     * Sun Feb 12 2006 Jeremy Katz <katzj@redhat.com> - 10.92.0-1
2484     - Fix length of package name in text install (dcantrel, #180469)
2485     - Various minor cleanups
2486     - Support conditional packages for langsupport (pnasrat, #178029)
2487    
2488     * Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 10.91.19-1
2489     - Fix loader typo.
2490    
2491     * Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 10.91.18-1
2492     - Add iscsi support (Patrick Mansfield <patmans AT us.ibm.com>)
2493     - Allow retry if CD image isn't found on NFS server (#109051, dcantrel)
2494     - Fix location of video modes data files
2495     - Add x86_64 kernel-xen-guest (katzj)
2496     - Better loader debugging support (katzj)
2497    
2498     * Wed Feb 08 2006 Paul Nasrat <pnasrat@redhat.com> - 10.91.17-1
2499     - Handle bind mounts correctly (#160911, dcantrel)
2500     - Upgrade package black list and make upgrades work
2501     - Disable repo conf for now
2502     - loader debuginfo
2503     - kickstart - suggest fix (#174597, clumens)
2504    
2505     * Mon Feb 6 2006 Jeremy Katz <katzj@redhat.com> - 10.91.16-1
2506     - fix writing out instdata for root password, etc (#180310)
2507    
2508     * Mon Feb 6 2006 Jeremy Katz <katzj@redhat.com> - 10.91.15-1
2509     - Remove debugging code that broke showing the Xen option on the task screen
2510     - More sqlite files (#171232)
2511     - Fix traceback for new method pirut depends on
2512     - Ensure /dev/root exists (Patrick Mansfield)
2513     - Force buttonbar on main screen active in congrats (dcantrel, #179924)
2514     - Always pass loglevel (dcantrel)
2515     - BR libXt-devel (dcantrel)
2516     - Don't try to make /dev/mapper devs (pjones)
2517     - More consistency in dev naming for dmraid (pjones)
2518     - Start of iscsi patches (Patrick Mansfield)
2519     - Fix pre-existing RAID chunksize reading (#178291)
2520    
2521     * Fri Feb 3 2006 Jeremy Katz <katzj@redhat.com> - 10.91.14-1
2522     - Handle reiserfs labels (dcantrel, #125939)
2523     - Skip more steps in root mode (Jasper Hartline)
2524     - Update driver list for current kernels
2525     - Don't put mapper/ in the swap label (pjones)
2526     - Set file contexts on blkid.tab* (pjones)
2527     - Increase logical volume label field to 32 chars (dcantrel, #174661)
2528     - More exception trimming (clumens)
2529     - Fix args to writeConfiguration (clumens, #179928)
2530     - Fix format strings in label device, proper max for swap labels (pjones)
2531     - Make task definition more dynamic
2532     - Add a hack to remove the xen group if we're running on xen (#179387)
2533    
2534     * Thu Feb 2 2006 Jeremy Katz <katzj@redhat.com> - 10.91.13-1
2535     - Speed up timezone screen (clumens)
2536     - Make kickstart interactive mode work (clumens)
2537     - Fix package selection screen (clumens)
2538     - Add sqlite to traceonly to help http/ftp memory usage
2539     - Write out repo config (pnasrat)
2540     - Fix colors on boot splashes (#178033)
2541     - Select lang groups before going to the screen (#178673)
2542     - Clean up handling of grub vs no boot loader (#159658)
2543    
2544     * Thu Feb 2 2006 Jeremy Katz <katzj@redhat.com> - 10.91.12-1
2545     - improves %%packages section some more (clumens)
2546     - give a better error on kickstart lvm syntax errors (clumens)
2547     - display vncconnect error messages (clumens)
2548     - make swap labels shorter for cciss (dcantrel, #176074)
2549     - Make /dev/root for mkinitrd (#171662)
2550     - Use pirut stuff for graphical group selection
2551    
2552     * Tue Jan 31 2006 Paul Nasrat <pnasrat@redhat.com> - 10.91.11-1
2553     - Factor some yum stuff into yum
2554     - Text Clarification (#178105)
2555     - Don't use install only pkgs (#179381)
2556     - Various dmraid and bootloader fixes (pjones)
2557    
2558     * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> - 10.91.10-1
2559     - add dmraid device renaming support for kickstart (pjones)
2560     - fix paths for expat (clumens)
2561     - remove unused functions (clumens)
2562    
2563     * Mon Jan 30 2006 Jeremy Katz <katzj@redhat.com> - 10.91.9-1
2564     - Skip partition and bootloader screens if requested for textmode
2565     (dcantrel, #178739)
2566     - Don't create /etc/X11/X symlink (dcantrel, #179321)
2567     - Add ethiopic fonts
2568     - Fix traceback in upgrade examine (clumens)
2569     - Free up depsolving storage (pnasrat)
2570     - Fix group selection screen that I mistakenly removed (oops)
2571     - Remove some dead pieces (pnasrat, katzj)
2572    
2573     * Thu Jan 26 2006 Jeremy Katz <katzj@redhat.com> - 10.91.8-1
2574     - Remove rpm whiteout (clumens, #178540)
2575     - Fix text in upgrade continue button (dcantrel, #178096)
2576     - Make %%packages in anaconda-ks.cfg shorter (pnasrat)
2577     - Fix text-mode drawing (clumens, #178386)
2578     - Release notes viewer fixes (dcantrel)
2579     - Reset -> reboot (dcantrel, #178566)
2580     - Create ia64 images again (prarit, #175632)
2581     - Make sure boot loader screen gets skipped (clumens, #178815)
2582     - Don't ask about VNC in kickstart
2583     - Don't ask for keyboard under Xen if it fails
2584     - Add more basic "task" selection screen
2585     - Text mode group selection is better now
2586     - Remove some dead code
2587     - Require squashfs-tools (clumens)
2588     - Fix rescue mode (dcantrel)
2589     - Don't have devices disappear out from under us (Patrick Mansfield)
2590    
2591     * Fri Jan 20 2006 David Cantrell <dcantrell@redhat.com> - 10.91.7-1
2592     - Save state when moving back to "upgrade or install" window (#178095).
2593     - Eject CD when in kickstart and given --eject parameter (clumens, #177554).
2594     - Translate combo box and comments (clumens, #178250).
2595     - Disable backend debugging mode for writeKS().
2596     - Added a PYTHONSTARTUP file to autoload readline, etc. (pjones).
2597     - Write %%packages section in template kickstart file (clumens, pnasrat).
2598    
2599     * Wed Jan 18 2006 David Cantrell <dcantrell@redhat.com> - 10.91.6-1
2600     - i18n fixes (katzj)
2601    
2602     * Wed Jan 18 2006 David Cantrell <dcantrell@redhat.com> - 10.91.5-1
2603     - i386 and ppc rescue image script fixes (jkeating)
2604     - fix kickstart package deselection (clumens, #177530)
2605     - fix header download issues (pnasrat, #177596)
2606     - interface improvements on scp exception dialog (clumens, #177738)
2607     - rescue image additions (pjones, dcantrell, #155399)
2608     - misc kickstart fixes (clumens, #178041, #177519)
2609     - fix fetching repo data on http installs (clumens, #178001)
2610     - add gdk-pixbuf handler for XPM images (#177994)
2611     - timezone screen fixes (clumens, #178140)
2612     - add LSI mptsas driver to module-info (#178130)
2613     - dmraid fixes for kickstart installs (pjones)
2614     - add sr@Latn to lang-table (katzj, #175611)
2615    
2616     * Wed Jan 11 2006 Jeremy Katz <katzj@redhat.com> - 10.91.4-1
2617     - Add xen kernels
2618    
2619     * Wed Jan 11 2006 Jeremy Katz <katzj@redhat.com> - 10.91.3-1
2620     - remove some unneeded bits from the ppc boot.iso to make it smaller
2621     - fix some text display (notting, #177537)
2622     - Misc kickstart fixes (clumens)
2623    
2624     * Tue Jan 10 2006 Jeremy Katz <katzj@redhat.com> - 10.91.2-1
2625     - fix hard drive installs (pjones)
2626    
2627     * Tue Jan 10 2006 Jeremy Katz <katzj@redhat.com> - 10.91.1-1
2628     - more ppc rescue image (jkeating)
2629     - actually commit the dmraid fix (pjones)
2630    
2631     * Mon Jan 9 2006 Jeremy Katz <katzj@redhat.com> - 10.91.0-1
2632     - tweaked selection stuff a little to be the same code as pirut
2633     - tweak exception window to have an image and be better sized (dcantrell)
2634     - write out RAID device name (clumens)
2635     - scroll group list properly (dcantrell)
2636     - fix ppc rescue image (jkeating)
2637     - dmraid detection fix (pjones)
2638    
2639     * Fri Jan 6 2006 Jeremy Katz <katzj@redhat.com> - 10.90.25-1
2640     - no sr@Latn yet since the po files haven't been added
2641    
2642     * Fri Jan 6 2006 Jeremy Katz <katzj@redhat.com> - 10.90.24-1
2643     - move a11y stuff earlier
2644     - fix the text mode progress bar (pnasrat, #176367)
2645     - fix ppc drive unreadable warnings (#176024)
2646     - add serbian locales (#175611)
2647     - preserve review checkbox between combo box selections (dcantrell, #176212)
2648     - quote ethtool args (#176918)
2649     - various spacing cleanups (dcantrell)
2650     - a few fixes to the group selector (dcantrell)
2651     - don't try to make the timezone widget bigger than screen (clumens, #176025)
2652     - fix rescue mode traceback (clumens)
2653     - fix message wording on package retry (clumens, #155884)
2654     - quiet debug spew in anaconda.log (clumens, #171663)
2655     - add ppc rescue script from jkeating (#177003)
2656    
2657     * Tue Dec 20 2005 Jeremy Katz <katzj@redhat.com> - 10.90.23-1
2658     - more pkgorder fixes (pnasrat)
2659     - fix some debug spew (notting)
2660     - segfaults in the loader should at least give us a stacktrace to work from
2661     - fix some padding on the network screen
2662    
2663     * Mon Dec 19 2005 Jeremy Katz <katzj@redhat.com> - 10.90.22-1
2664     - add more encoding modules to traceonly (clumens, #175853)
2665     - Fix text installs (pnasrat, #175773)
2666     - Fix for yum API changes (pnasrat)
2667     - Don't install the smp kernel even if NX is available
2668     - Adjust to be more dynamic about colors with syslinux-splash's
2669     - Use the selected language for default keyboard layout (clumens, #172266)
2670     - Better naming for psuedo-filesystems in /etc/fstab (dcantrel, #176149)
2671     - Clean up image handling for new graphics
2672     - Don't do the splashscreen stuff anymore. If the window is too slow to
2673     appear, we should fix that instead
2674    
2675     * Thu Dec 15 2005 Jeremy Katz <katzj@redhat.com> - 10.90.21-1
2676     - fix pkgorder for new group code
2677     - fix ub vs usb-storage
2678     - remove some redundant code (clumens)
2679    
2680     * Thu Dec 15 2005 Jeremy Katz <katzj@redhat.com> - 10.90.20-1
2681     - Fixes for new timezone stuff (pnasrat)
2682     - Fix transaction sorting (pnasrat)
2683     - Enable dmraid by default
2684    
2685     * Wed Dec 14 2005 Chris Lumens <clumens@redhat.com> 10.90.19-1
2686     - Use system-config-date for timezone selection UI (#155271).
2687     - Work on vnc+shell spawning (dcantrell).
2688     - Whiteout fixes (pnasrat, katzj).
2689     - Progress bar fixes (katzj).
2690     - Depsolving speedups (katzj).
2691    
2692     * Mon Dec 12 2005 Jeremy Katz <katzj@redhat.com> - 10.90.18-1
2693     - Handle monitor configuration in kickstart via "monitor" keyword instead of
2694     "xconfig" consistently (clumens)
2695     - Fix joe as nano (#175479)
2696     - Try to get hard drive installs working again
2697     - First steps towards using ub
2698     - Fix depcheck progress bar to actually give progress.
2699    
2700     * Sun Dec 11 2005 Peter Jones <pjones@redhat.com> - 10.90.17-1
2701     - Full dmraid support. (still disabled by default)
2702    
2703     * Sat Dec 10 2005 Jeremy Katz <katzj@redhat.com> - 10.90.16-1
2704     - Ensure upgrades to depsolve and remove db locks (pnasrat)
2705     - Tweak for improved and sortable groups/categories
2706     - Put back basic text-mode package selection (#175443)
2707    
2708     * Thu Dec 8 2005 Jeremy Katz <katzj@redhat.com> - 10.90.15-1
2709     - Fix various typos in the new group selection code (clumens)
2710     - Support bytesPerInode on RAID (Curtis Doty, #175288)
2711     - Stub some more for the loader to fix line-drawing chars again
2712     - Handle file read failures better (pnasrat)
2713     - Initial support for upgrades again (pnasrat)
2714     - Minor padding tweaks to the UI
2715    
2716     * Thu Dec 8 2005 Jeremy Katz <katzj@redhat.com> - 10.90.14-1
2717     - Fix up for moved x locale data
2718     - Remove vnc hack now that VNC knows where to look for fonts
2719     - Don't go to text mode for no mouse (notting)
2720     - Update to work with yum 2.5.0 cvs snap
2721     - New package selection code
2722     - Add new chinese font back now that we're using squashfs (#172163)
2723     - The return of locale-archive usage
2724    
2725     * Mon Dec 05 2005 Chris Lumens <clumens@redhat.com> 10.90.13-1
2726     - Reword media check dialog (dcantrell, #174530).
2727     - gcc41 compile fixes (pjones).
2728     - Add genhomedircon, setfiles, and /etc/shells for selinux.
2729    
2730     * Thu Dec 1 2005 Jeremy Katz <katzj@redhat.com> - 10.90.12-1
2731     - some release notes viewer fixing (dcantrell)
2732     - allow %%pre scripts in an %%include (clumens, #166100)
2733     - fix the squashfs stuff to actually work
2734     - hack around slang not initializing utf8 mode so that we have line
2735     drawing chars (#174761)
2736    
2737     * Thu Dec 1 2005 Jeremy Katz <katzj@redhat.com> - 10.90.11-1
2738     - reworded media check prompt (dcantrell, #174472)
2739     - let's try squashfs...
2740    
2741     * Wed Nov 30 2005 Jeremy Katz <katzj@redhat.com> - 10.90.10-1
2742     - Don't split transactions on not split install types (pnasrat, #174033)
2743     - Fix None vs "" for vncpasswd in test mode (Patrick Mansfield)
2744     - Make release notes viewer as large as the screen (dcantrell)
2745     - Allow system-logos instead of fedora-logos for the package name
2746     - Try to build SELinux policy so that things work with selinux
2747     2.x policy (#174563)
2748    
2749     * Tue Nov 29 2005 Chris Lumens <clumens@redhat.com> 10.90.9-1
2750     - Another stab at including email.Utils everywhere (#173169).
2751     - Remove unneeded isys.sync calls (pjones).
2752     - Fix /dd.ig in initrd (Dan Carpenter).
2753     - Report no DNS servers if a hostname used (pnasrat, #168957).
2754     - Fix ppc32 from CD (katzj, #174135).
2755     - Don't look for hdlist when booting CD1 and using FTP/HTTP (katzj).
2756     - Fullscreen release notes viewer (dcantrell).
2757    
2758     * Mon Nov 21 2005 Jeremy Katz <katzj@redhat.com> - 10.90.8-1
2759     - don't load pcspkr on ppc to avoid crashes on the g5
2760    
2761     * Sun Nov 20 2005 Jeremy Katz <katzj@redhat.com> - 10.90.7-1
2762     - fix backwards whiteout handling (#173738)
2763     - fix bug in depsolver which would bring in a package for an already
2764     satisfied dep
2765    
2766     * Sat Nov 19 2005 Jeremy Katz <katzj@redhat.com> - 10.90.6-1
2767     - fix removal of packages to not traceback
2768     - fix anaconda.dmraid logging (clumens)
2769    
2770     * Fri Nov 18 2005 Paul Nasrat <pnasrat@redhat.com> - 10.90.5-1
2771     - Disable sqlite cache for pkgorder
2772     - Fix for new selinux context types (katzj)
2773     - vnc parameter handling (clumens)
2774     - Add ellipsis (notting)
2775    
2776     * Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.4-1
2777     - don't traceback on unresolvable deps (#173508)
2778     - fix pkg.arch for %%packages
2779     - another hack for vnc
2780     - debug prints to log.debug (#173533)
2781    
2782     * Thu Nov 17 2005 Paul Nasrat <pnasrat@redhat.com> - 10.90.3-1
2783     - Add group processing to buildinstall
2784     - Add createrepo requires
2785    
2786     * Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.2-1
2787     - more pkgorder fixing (clumens)
2788     - fix cd installs to not fall into the "not a real install method" case :)
2789    
2790     * Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.1-1
2791     - add handling for dmraid/nodmraid
2792     - fix removals of packages which have already been removed
2793     - turn off dmraid by default
2794     - fix pkgorder (clumens)
2795    
2796     * Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.0
2797     - more tree build fixes
2798     - fix group removal
2799     - non iso install fixes (clumens)
2800     - pkgorder fixing (clumens)
2801     - dmraid support (pjones)
2802     - crude language support group hack
2803    
2804     * Wed Nov 16 2005 Chris Lumens <clumens@redhat.com> 10.89.20.1-1
2805     - Fix indentation.
2806    
2807     * Wed Nov 16 2005 Paul Nasrat <pnasrat@redhat.com> - 10.89.20-1
2808     - Restore YumSorter for pkgorder
2809     - Single anaconda installer yum class
2810     - Switching CD method
2811    
2812     * Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 10.89.19.1-1
2813     - be explict about pango-devel being needed
2814    
2815     * Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 10.89.19-1
2816     - Fix vt switching with modular X
2817     - Lots of CD install fixes (clumens, pnasrat)
2818     - Clean up exception dump stuff
2819     - Some more steps towards dm-raid support (pjones)
2820     - Log info messages
2821    
2822     * Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 10.89.18-1
2823     - remove new chinese font since its too big for cramfs (#172163)
2824     - Fix typo in trimpciids (notting)
2825     - Don't build locale-archive for now since its too big for cramfs
2826    
2827     * Tue Nov 15 2005 Jeremy Katz <katzj@redhat.com> - 10.89.17-1
2828     - missed an x lib somehow
2829    
2830     * Tue Nov 15 2005 Jeremy Katz <katzj@redhat.com> - 10.89.16-1
2831     - lots of updates for modular X
2832     - allow a shell on tty1 if using vnc
2833     - various fixes for cd/install method stuff (pnasrat, clumens, katzj)
2834     - install smp kernel if NX present (#172345)
2835     - work with multiple videoaliases files (notting)
2836    
2837     * Tue Nov 15 2005 Jeremy Katz <katzj@redhat.com> - 10.89.15-1
2838     - fix up for new selinux policy
2839    
2840     * Mon Nov 14 2005 Paul Nasrat <pnasrat@redhat.com> 10.89.14-1
2841     - Move sorter for CD/pkgorder into yuminstall
2842     - Add support for ub devices (katzj)
2843    
2844     * Mon Nov 14 2005 Paul Nasrat <pnasrat@redhat.com> 10.89.13-1
2845     - Reinstate image based install methods (excluding hd for now)
2846     - Clean up install method classes
2847     - device-mapper support (pjones)
2848     - Log warning on no network link (katzj)
2849     - Clean up error handling for pkgorder (clumens)
2850    
2851     * Fri Nov 11 2005 Chris Lumens <clumens@redhat.com> 10.89.12-1
2852     - Add buildreq for yum (katzj)
2853     - Fix loader log levels (katzj)
2854     - Add more libraries for dogtail (katzj)
2855    
2856     * Thu Nov 10 2005 Jeremy Katz <katzj@redhat.com> - 10.89.11-1
2857     - Fix stdout logging to print stuff (clumens)
2858     - Start of some sorting/splitting stuff for CDs (pnasrat)
2859     - Make missing modules lower priority
2860     - Look for xen devices
2861     - Add some of the necessary requirements to try to get dogtail working (#172891)
2862    
2863     * Thu Nov 10 2005 Chris Lumens <clumens@redhat.com> 10.89.10-1
2864     - Add e2fsprogs-libs to the install images.
2865    
2866     * Wed Nov 9 2005 Jeremy Katz <katzj@redhat.com> - 10.89.9-1
2867     - Create interface earlier to prevent kickstart traceback (clumens)
2868     - Logging fixes, everything should be in the logfile (clumens)
2869     - Get rid of help which is irrelevant
2870     - Clean up loader log levels
2871    
2872     * Tue Nov 8 2005 Jeremy Katz <katzj@redhat.com> - 10.89.8-1
2873     - Fix backwards message on upgrade (#172030)
2874     - New chinese fonts (#172163)
2875     - Don't try to update a progress window that's already popped (clumens, #172232)
2876     - Fix snack deprecation warnings (clumens, #172232)
2877     - Get rid of some cruft in traceback dumps (clumens)
2878     - Add a method to check for "real" consoles, add xen console to the list
2879     of weird stuff
2880     - Basic support for transaction errors other than tracebacks...
2881     - Fix a kickstart traceback for authconfig
2882     - Add xenblk and xennet to module-info
2883    
2884     * Mon Nov 7 2005 Jeremy Katz <katzj@redhat.com> - 10.89.7-1
2885     - More detailed error logging (pnasrat)
2886     - Add bnx2 driver (pjones)
2887     - Various kickstart fixes (clumens, #172356)
2888     - Fix shadow password convert (clumens)
2889    
2890     * Fri Oct 28 2005 Jeremy Katz <katzj@redhat.com> - 10.89.6-1
2891     - Make char devices slightly later to avoid tracebacks during tree compose
2892     - Extract kernel-xen-guest for vmlinuz and initrd in images/xen
2893     - Kickstart fix (clumens)
2894     - Add some support for xen xvd blockdevs
2895     - Select kernel-xen-guest as appropriate
2896     - Ensure proper arch of glibc is selected (#171997)
2897     - Select all proper multilib parts of a package (#171026)
2898    
2899     * Thu Oct 27 2005 Jeremy Katz <katzj@redhat.com> - 10.89.5-1
2900     - Another fix for kickstart + help hiding
2901     - Fix finding of kernel type
2902     - Make synaptics device nodes before X starts (clumens)
2903     - Use nofb by default
2904     - Add pycairo stuff (clumens)
2905     - Set minimum displayed log level to WARNING, everything is still in
2906     the logfiles (clumens)
2907     - Try to clean up syslog (clumens)
2908     - Allow installation of hypervisor + xen host kernel by booing with 'xen0' on
2909     the installer command line
2910     - Fix x86_64 traceback
2911    
2912     * Mon Oct 24 2005 Jeremy Katz <katzj@redhat.com> - 10.89.4-1
2913     - changed the wrong field in lang-table
2914    
2915     * Mon Oct 24 2005 Jeremy Katz <katzj@redhat.com> - 10.89.3-1
2916     - don't do xsetroot anymore
2917     - allow retrieving updates.img with
2918     updates=(http|ftp)://host/path/to.img (clumens)
2919     - some upd-instroot fixes (clumens)
2920     - only get yum filelists when needed (pnasrat)
2921     - clean up exception scp'ing (clumens)
2922     - don't write empty authconfig line (clumens, #171558)
2923     - make kickstart errors report line number of error (clumens)
2924     - select most appropriate kernel (kernel-smp, etc)
2925     - ensure we get a boot loader package installed
2926     - minor fix for ia64 image creation
2927     - tweaks to backend setup
2928     - don't have help as visible in the glade file so we don't have the pane
2929     appear when doing a kickstart install
2930     - use pl2 keymap for Polish (3171583)
2931     - allow passing product information with env vars to help live cd
2932    
2933     * Thu Oct 20 2005 Jeremy Katz <katzj@redhat.com> - 10.89.2-1
2934     - fix references to second stage module stuff that caused breakage
2935    
2936     * Thu Oct 20 2005 Jeremy Katz <katzj@redhat.com> - 10.89.1-1
2937     - fix for mkcramfs -> mkfs.cramfs
2938     - Use minstg2.img instead of netstg2.img/hdstg2.img in the loader
2939    
2940     * Thu Oct 20 2005 Jeremy Katz <katzj@redhat.com> - 10.89.0-1
2941     - Fix SELinux policy loading (clumens)
2942     - Fix translation import for kickstart (laroche)
2943     - Add yumcache (pnasrat)
2944     - Upgrade blacklisting (pnasrat)
2945     - Clean up exception copying (clumens)
2946     - Improve text mode exception dialog too (clumens)
2947     - Don't allow bootable partitions on XFS
2948     - Some speed improvements, progress bars, etc for package stuff (pnasrat)
2949     - Clean up image creation, move all modules to initrd.img.
2950    
2951     * Fri Oct 14 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.32-1
2952     - fix typo causing traceback (pnasrat)
2953     - Create character device nodes to fix synaptics (clumens)
2954    
2955     * Wed Oct 12 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.31-1
2956     - Handle missing metadata (pnasrat)
2957     - Give indication of kickstarts scriptlets running (#170017)
2958     - Fix a traceback with RAID (#170189)
2959     - Fix an FTP install traceback (#170428)
2960     - Clean up floppy stuff (clumens)
2961     - Clean up some warnings (clumens)
2962     - Make IDE device node creation cleaner
2963     - Change location of modes data files
2964    
2965     * Mon Oct 10 2005 Chris Lumens <clumens@redhat.com> 10.3.0.30-1
2966     - Fix requirements for s390, s390x, ppc64.
2967     - Fix typo in scripts/upd-instroot.
2968    
2969     * Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 10.3.0.29-1
2970     - Deal with new load_policy. (katzj)
2971     - Create an SELinux config. (katzj)
2972     - Use rhpxl instead of rhpl for X configuration.
2973     - Use pykickstart.
2974    
2975     * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 10.3.0.28-1
2976     - Add yuminstall (katzj, #169228)
2977     - Skip bootloader screen unless modifying partitions (katzj, #169817)
2978     - Don't skip manual partitioning on custom (katzj, #169001)
2979     - Partitioning UI fixes (katzj)
2980     - Don't overwrite empty strings in ksdata with None.
2981     - Move kickstart file handling into pykickstart package.
2982     - Kickstart LVM and RAID partitioning fixes.
2983    
2984     * Fri Sep 30 2005 Chris Lumens <clumens@redhat.com> 10.3.0.27-1
2985     - More kickstart script fixes.
2986    
2987     * Tue Sep 27 2005 Chris Lumens <clumens@redhat.com> 10.3.0.26-1
2988     - kickstart script fixes
2989    
2990     * Sat Sep 24 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.25-1
2991     - single ppc boot images stuff from dwmw2 (pnasrat, #166625)
2992     - ppc netboot stuff from dwmw2 (pnasrat, #165239)
2993     - fix some of the yum backend for yum changes
2994     - Add a button to the traceback dialog to allow saving via scp (clumens)
2995     - Don't load the parallel port module (#169135)
2996     - Fix group deselection to not remove everything
2997     - Move repo setup and group selection earlier (pnasrat)
2998    
2999     * Tue Sep 20 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.24-1
3000     - Some kickstart %packages fixes (clumens)
3001     - Don't copy null bytes into syslog (clumens)
3002     - New exception dialog (clumens)
3003     - Fix a traceback (pnasrat)
3004     - FTP/HTTP installation might now work (pnasrat)
3005     - Very basic group selection in the UI
3006    
3007     * Mon Sep 19 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.23-1
3008     - fix a silly typo that would cause tracebacks
3009     - Look for help in /tmp/updates too (#168155)
3010     - Add skge driver (#168590)
3011     - Some fixes to hopefully get x86_64 trees working
3012    
3013     * Fri Sep 16 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.22-1
3014     - Fix segfaults with nfs mounting
3015     - Start of url install methods (pnasrat)
3016     - Basic package/group selection is back in kickstart
3017     - Macro magic fixups
3018     - Use onboot by default for network devices in kickstart
3019    
3020     * Thu Sep 15 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.21-1
3021     - Run pre scripts for kickstart (clumens)
3022     - Another tree fix
3023     - Handle NULL for device->driver from kudzu (notting)
3024     - Clean up internal mount stuff to be more extend-able
3025    
3026     * Wed Sep 14 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.20-1
3027     - Fix runlevel setting (pnasrat)
3028     - More dead stuff fixing.
3029    
3030     * Tue Sep 13 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.19-1
3031     - Fix pcmcia import traceback
3032     - Some more kickstart fixing (clumens)
3033     - Make SELinux/firewall defaults be done by the objects, not in the UI
3034     - This fixes booting with selinux=0, policy load failure, etc
3035     - Allow sparse updates.img with yum, urlgrabber and rpmUtils too
3036     - Some dead code removal
3037     - PCMCIA for the loader again (notting)
3038     - install.log tweaking
3039    
3040     * Mon Sep 12 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.18-1
3041     - Add back genhdlist to try to fix multiarch composes (pnasrat)
3042     - Really fix disabling of upgrades
3043     - Some typo fixes for X configuration and post-install config
3044     - Remove some dead code related to boot disks, using fdisk/fdasd, X
3045     configuration, pcmcia
3046     - Move ppc X stuff to rhpl (clumens)
3047     - Fix some kickstart stuff (clumens)
3048     - Fix RPM logging output -> the log file
3049     - Use gtkhtml2 for release notes
3050    
3051     * Fri Sep 9 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.17-1
3052     - more X fixage
3053     - build against new kudzu that doesn't segfault :)
3054    
3055     * Fri Sep 9 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.16-1
3056     - More typo fixes (notting)
3057     - Fix rhpl requires
3058    
3059     * Fri Sep 9 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.15-1
3060     - Fix typo that broke image building.
3061     - Start of getting post-install stuff working (pnasrat)
3062    
3063     * Fri Sep 09 2005 Chris Lumens <clumens@redhat.com> 10.3.0.14-1
3064     - logging fix when running in test mode
3065    
3066     * Fri Sep 09 2005 Bill Nottingham <notting@redhat.com> 10.3.0.13-1
3067     - adapt to new X driver model in kudzu and associated rhpl changes
3068     - pcitable/modules.pcimap/modules.usbmap are no longer used in probing;
3069     remove support for them and add modules.alias usage
3070     - Turn off help (katzj)
3071     - Kickstart fixes (clumens)
3072    
3073     * Wed Sep 07 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.12-1
3074     - yum backend selinux file_context
3075     - Start using new kickstart code (clumens)
3076     - Error handling and messages for kickstart (clumens)
3077     - Partitioning kickstart fixups (clumens)
3078    
3079     * Thu Sep 01 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.11-1
3080     - Yum backend work (macro support, whitelist)
3081     - qla2100 (katzj, #167065)
3082     - Kickstart Parser (clumens)
3083     - authconfig handling changes (clumens)
3084     - Autopartitiong Traceback fix (katzj)
3085    
3086     * Fri Aug 26 2005 Jeremy Katz <katzj@redhat.com>
3087     - More work from pnasrat on getting the yum backend working
3088     - Don't set some irrelevant network TYPE= (#136188, #157193)
3089     - New and improved autopartitioning screen
3090    
3091     * Fri Aug 19 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.10-1
3092     - Working towards new backend architecture
3093    
3094     * Thu Aug 18 2005 Chris Lumens <clumens@redhat.com> 10.3.0.9-1
3095     - Rebuild for new cairo.
3096     - Add support for ksdevice=bootif (Alex Kiernan, #166135).
3097     - Fix /dev/tty3 logging problems.
3098     - Add support for Pegasos machines (dwmw2, #166103).
3099     - Switch to Sazanami font (#166045).
3100     - Fix for autopart not in lvm (msw).
3101    
3102     * Mon Aug 15 2005 Chris Lumens <clumens@redhat.com> 10.3.0.8-1
3103     - Remove dead --ignoredeps code (katzj, #165224).
3104     - New logging system with log levels and remote logging capabilities.
3105     - Fix typo in network code (pnasrat, #165934).
3106     - Fix buffer overrun in md5sum code (Dustin Kirkland).
3107     - Add mptspi and mptfc drivers (katzj).
3108     - Timestamp fixes (dgregor, #163875).
3109    
3110     * Thu Jul 21 2005 Chris Lumens <clumens@redhat.com> 10.3.0.7-1
3111     - Remove firewall configuration screen. Open SSH by default and set
3112     SELinux to enforced.
3113    
3114     * Wed Jul 20 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.6-1
3115     - Ensure boot flag only on correct partition on pmac (#157245)
3116     - Plug in yum for nfs:/ by default
3117     - Include sungem_phy for pmac
3118    
3119     * Wed Jul 13 2005 Chris Lumens <clumens@redhat.com> 10.3.0.5-1
3120     - Fix pygtk bug on progress bars.
3121     - Bump ia64 boot.img size (katzj, #162801).
3122     - Fix for clearpart --none (katzj, #162445).
3123     - yum dependancy fixes (pnasrat).
3124     - name.arch fix for kickstart (pnasrat).
3125     - Fix multiple NICs in kickstart config files (#158556).
3126    
3127     * Thu Jul 07 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.4-1
3128     - Select kernel-devel (katzj #160533)
3129     - Fixups for ia64 images from prarit (katzj #162072)
3130     - Include yum libraries in stage2
3131     - Remove gzread.py (clumens)
3132    
3133     * Wed Jun 29 2005 Chris Lumens <clumens@redhat.com> 10.3.0.3-1
3134     - Mount "auto" filesystems on upgrade (#160986).
3135     - Add cairo for new pango/gtk (katzj).
3136     - Delete labels on swap and ext3 partitions before formatting.
3137     - Remove langsupport keyword from kickstart.
3138    
3139     * Mon Jun 20 2005 Bill Nottingham <notting@redhat.com> - 10.3.0.2-1
3140     - fix genhdlist
3141    
3142     * Fri Jun 17 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.1-1
3143     - Fix release notes for ftp installs (#160262)
3144     - Fix fd leak in edd support (Jon Burgess, #160693)
3145     - Fix typo breaking pseries console (pnasrat, #160573)
3146     - Allow ignoring packages without specifying the arch (clumens, #160209)
3147     - Add gpart (clumens, #55532)
3148     - Some warning fixes.
3149     - Use full bterm font if available (#159505)
3150     - Fix quoting of pvs in anaconda-ks.cfg (#159193)
3151     - Fix segfault on upgrades
3152     - String tweaks (clumens, #159044, #156408)
3153     - Don't traceback on preexisting RAID (clumens, #159079, #159182)
3154     - Fix display size of PVs (clumens, #158696)
3155     - Don't consider drives without free space for partitions (pjones)
3156     - Langsupport fixes (clumens, #154572, #158389)
3157     - Hack around usb-storage slowness at finding devices that leads to the
3158     reload not occurring
3159     - Handle FC3 swap label format and convert to right format (#158195)
3160     - Only set things up to change the default kernel if we're booting us (#158195)
3161     - Fix deps on upgrades (#157754)
3162     - Try to keep install screen from moving with length of strings
3163     - Fix autopart problem leaving some freespace the size of where you
3164     started your partition growing
3165     - Allow excluding name.arch in kickstart (Dave Lehman, #158370)
3166     - Don't spew an error if essid or wepkey isn't set (#158223)
3167     - Add megaraid and other new drivers (#157420)
3168     - Left pad RAID uuid (clumens, #136051)
3169     - synaptics tweak (pnasrat)
3170     - Fix telnetd to use devpts instead of legacy ptys (#124248)
3171    
3172     * Thu May 19 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.64-1
3173     - Handle longer arch strings (notting)
3174     - Fix traceback in network screen (#158134)
3175     - Include synaptics for X config (pnasrat)
3176     - Magic boot for mac vs mac64 on disc1/dvd (pnasrat)
3177     - Bump point at which we use graphical stage2 for http/ftp (#157274)
3178     - Use uuid in mdadm.conf, stop using copy of md.h (#136051)
3179     - Support deletion of bootloader entries in text mode (#125358)
3180     - Support RAID /boot on pSeries along with handling of multiple PReP
3181     partitions (Dustin Kirkland)
3182    
3183     * Tue May 17 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.63-1
3184     - add arch to buildstamp (notting, #151927)
3185     - Fix am.po format strings
3186    
3187     * Tue May 17 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.62-1
3188     - Fix execcon used for anaconda (pjones)
3189     - Fix traceback on tui netstg2.img install (#157709)
3190     - Fix various splittree bugs (clumens, #157722, #157721, #157723)
3191     - Blacklist perl.i386 on x86_64 to be removed on upgrade (pnasrat, #156658)
3192     - Fix drive sorting (clumens)
3193     - Remove %%installclass support for kickstart since it's never worked (#149690)
3194     - Fix name.arch in packages (pnasrat)
3195     - Remove bogus pre-existing RAID info on kickstart installs (clumens, #88359)
3196     - Pretend to have nano in the rescue environment
3197     - Don't load stage2.img into RAM for rescue mode if booted
3198     with 'linux text' (#155398)
3199    
3200     * Thu May 5 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.61-1
3201     - and fix pkgorder for the gfs stuff
3202    
3203     * Thu May 5 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.60-1
3204     - Better handling of the langsupport group (clumens)
3205     - Don't install the gfs stuff for all kernel variants, that brings in
3206     kernel-smp on an everything install (#156849)
3207     - Don't grow a partition beyond the largest freespace on a drive
3208     - HFS+ support
3209     - Pull in more selinux policy files to try to get /home labeled right
3210     - Fix typo causing segfault (pnasrat)
3211    
3212     * Tue May 3 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.59-1
3213     - Try to use the fb res on pmac
3214     - Always reset terminal attrs on ppc (notting, #156411)
3215     - Remove bogus preexisting LVM info when doing kickstart
3216     installs (clumens, #156283)
3217    
3218     * Mon May 2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.58-1
3219     - Beep on CD insertion, not after
3220     - Fix language support selection (clumens)
3221     - Fix nfsiso (clumens)
3222     - Misc X config fixes for ppc. Boot with "usefbx" to use fbdev
3223     instead again (#149188)
3224    
3225     * Thu Apr 28 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.57-1
3226     - Fix bind mounts (clumens, #151458)
3227     - Fix hard drive installs (clumens)
3228     - Re-add bluecurve icons
3229     - Attempt to fix Chinese
3230    
3231     * Wed Apr 28 2005 Peter Jones <pjones@redhat.com> - 10.2.0.56-1
3232     - Fix mediacheck calls from cdinstall.c, and make mediacheck.c include
3233     its own header so typechecking works.
3234    
3235     * Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.55-1
3236     - Don't spam about package downloads in cmdline mode (#155250)
3237     - Apply jnovy's patch to fix space calculations for > 2 TB devices (#155709)
3238     - Set default font for CJK better (clumens, #156052)
3239     - Add --label for part in kickstart (clumens, #79832)
3240     - Ensure decimal IP addrs (#156088)
3241     - Apply patch from Joe Pruett for rpmarch= fixes (#101971)
3242     - Don't set SUPPORTED unnecessarily (#115847)
3243     - Give more room for cyl #s (#119767)
3244     - Bump size of diskboot.img
3245     - Add back button for required media message (#114770)
3246     - Fix lvs showing up with a mountpoint of 0 (#153965)
3247     - Nuke some debug code
3248     - Don't try to unmount (tmpfs) /dev
3249     - Write a minimal mtab to avoid fsck/mount complaints (pjones)
3250    
3251     * Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.54-1
3252     - Only select kernel-smp that matches the arch of kernel (#149618)
3253     - Apply the read of Dustin Kirkland's checkpoint fragment sum patch
3254     - Fix order of retry/reboot (#155884)
3255     - Probe macio (pnasrat, #154846)
3256    
3257     * Tue Apr 26 2005 Chris Lumens <clumens@redhat.com> 10.2.0.53-1
3258     - Beep at CD prompt and on install completion (katzj, #109264, #116681).
3259     - Add kernel-smp-devel and kernel-hugemem-devel to exclude list (katzj).
3260     - Fix buffer overflow when CD/DVD images are several directories deep
3261     (#154715).
3262     - Fix media check (pjones).
3263     - Set language on CD and no pass installs (#149688).
3264     - Fix disappearing button bar (#151837).
3265     - Upgrade PReP on iSeries (pnasrat).
3266    
3267     * Thu Apr 21 2005 Chris Lumens <clumens@redhat.com> 10.2.0.52-1
3268     - Allow mediacheck in kickstart (katzj, #116429)
3269     - Check for a drive being selected in autopart (katzj, #124296)
3270     - Fix traceback in language selection screen (#155103)
3271     - Mark "Downloading" for translation (katzj, #155214)
3272     - Applied Dustin Kirkland's checkpoint fragment sum patch for mediacheck.
3273     - Make anaconda-ks.cfg ro (pnasrat)
3274     - Ensure there are <= 27 RAID members (katzj, #155509)
3275     - Fix fsoptions for preexisting partitions in kickstart (#97560).
3276    
3277     * Fri Apr 15 2005 Chris Lumens <clumens@redhat.com> 10.2.0.51-1
3278     - Decode source URL for writing to anaconda-ks.cfg (#154149).
3279     - Add kernel-xen?-devel to the exclude list (katzj, #154819).
3280     - Fix text wrapping (#153071, #154786).
3281     - Various UI fixes.
3282     - Select language packages for all selected languages (#153748, #154181).
3283    
3284     * Wed Apr 13 2005 Peter Jones <pjones@redhat.com> - 10.2.0.50-1
3285     - revert last week's nptl hack in upd-instroot
3286    
3287     * Wed Apr 13 2005 Peter Jones <pjones@redhat.com> - 10.2.0.49-1
3288     - Cut summaries off to avoid layout problems (katzj, #154459)
3289     - Add script to update loader in initrd (katzj)
3290     - Typo fixes in upgrade.py (katzj, #154522)
3291     - Fix rescue mode network enabling (katz, #153961)
3292     - Add libaudit to the graphical stage2 file list, for Xorg
3293     - Various language fixes (clumens, #152404)
3294    
3295     * Mon Apr 11 2005 Peter Jones <pjones@redhat.com> - 10.2.0.48-1
3296     - Typo fixes in gui.py (menthos, #154324)
3297     - Don't try to do early swap in test mode, and use yesno not okcancel (msw)
3298     - If the install language is an unknown locale, use en_US.UTF_8
3299     - Fix upgrade to make devices available in the changeroot
3300    
3301     * Thu Apr 7 2005 Peter Jones <pjones@redhat.com> - 10.2.0.47-1
3302     - put ncurses in the net images, too.
3303     - (notting) put redhat-artwork in the GR images.
3304    
3305     * Thu Apr 7 2005 Peter Jones <pjones@redhat.com> - 10.2.0.46-1
3306     - put readline in the net images
3307     - fix linxuthreads warnings in upd-instroot
3308     - (clumens) fix build-locale-archive
3309    
3310     * Wed Apr 6 2005 Elliot Lee <sopwith@redhat.com> - 10.2.0.45-1
3311     - Deal with GUI-mode language traceback
3312    
3313     * Wed Apr 6 2005 Elliot Lee <sopwith@redhat.com> - 10.2.0.44-1
3314     - Deal with text-mode language traceback
3315     - (clumens) Don't set SYSFONTACM
3316    
3317     * Wed Apr 06 2005 Peter Jones <pjones@redhat.com> - 10.2.0.43-1
3318     - Don't remove libraries in stage2 that don't match the one from linuxthreads/
3319    
3320     * Tue Apr 05 2005 Peter Jones <pjones@redhat.com> - 10.2.0.42-1
3321     - Use linuxthreads libraries even if they're not the default, unless
3322     explicitly told to use nptl
3323    
3324     * Tue Apr 05 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.41-1
3325     - Make sure $LANG is set right for the second stage.
3326     - Fix kickstart traceback trying to skip a nonexistant step.
3327     - Import encodings.idna (sopwith, #153754).
3328     - Fix image building problems.
3329     - Fix kickstart traceback when using shortened forms of language names
3330     (#153656).
3331    
3332     * Mon Apr 04 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.40-1
3333     - Add locale information for 'C' to fix RPM building.
3334    
3335     * Sat Apr 2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.39-1
3336     - fix makefile deps to fix build
3337    
3338     * Fri Apr 01 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.38-1
3339     - Set default language for /etc/sysconfig/i18n (#149688).
3340     - Make sure hostname option isn't greyed out if using static IP (#149116).
3341     - Remove unused packages, python library bits, and locale info (katzj).
3342     - Add missing Indic font packages (katzj).
3343     - Various language fixups.
3344    
3345     * Wed Mar 30 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.37-1
3346     - try not using maxcpus=1 for arches which still had it
3347     - don't use the reserved variable name str (sopwith)
3348     - various language fixups (clumens)
3349    
3350     * Tue Mar 29 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.36-1
3351     - tree build fix
3352    
3353     * Tue Mar 29 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.35-1
3354     - dead files can't really be installed (aka, fix the build)
3355    
3356     * Tue Mar 29 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.34-1
3357     - Adjust pcmcia module loading for new in-kernel ds (pjones, #151235)
3358     - Make the rescue images identify which arch they're for (pjones, #151501)
3359     - Delete LV snapshots before the parent LV (pjones, #151524)
3360     - Check various forms of a language nick.
3361     - Allow setting MTU on the command line (katzj, #151789)
3362     - Remove dead code in config file handling and sparc booting (katzj)
3363     - Product name and path simplification (katzj)
3364     - Fixes for lang-table format change (katzj, clumens)
3365    
3366     * Fri Mar 25 2005 Bill Nottingham <notting@redhat.com> - 10.2.0.33-1
3367     - fix typo in partedUtils.py
3368    
3369     * Thu Mar 24 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.32-1
3370     - Switch theme to clearlooks
3371     - Add new Solaris partition id
3372     - Mark some more strings for translation
3373     - Fix xfs fs creation (Lars Hamann, #151378)
3374    
3375     * Wed Mar 23 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.31-1
3376     - Add libgcc for images.
3377     - Rewrite language handling.
3378     - Fix readImageFromFile deprecation warning (katzj).
3379     - Don't hide groups which just have metapkgs (katzj, #149182).
3380     - Load SELinux booleans (katzj, #151896).
3381    
3382     * Tue Mar 22 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.30-1
3383     - Try harder on the libstdc++ include.
3384     - Fix /etc/resolv.conf fir interactive kickstart installs (#151472).
3385    
3386     * Mon Mar 21 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.29-1
3387     - Fix beta nag translation
3388     - Fix button growing (clumens, #151208)
3389     - Add libstdc++ for images (clumens)
3390     - Clean up congrats screen (clumens, #149526)
3391     - Fix CD ejecting in loader (pnasrat, #151232)
3392     - Exclude Xen kernels from everything install (#151490)
3393     - Add reserve_size for ppc to leave room on disc1 (#151234)
3394     - Add some more locales
3395    
3396     * Mon Mar 14 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.28-1
3397     - fix swap detection on upgrade (pjones)
3398     - don't use os.read to make a buffer of '\x00' (pjones)
3399     - move availRaidLevels to raid.py from fsset.py (pjones)
3400     - fix Xvnc parameters (clumens, #150498)
3401     - unmount loopback-mounted ISO images to free loop0 (clumens, #150887)
3402     - fix warnings about gtk.TRUE and gtk.FALSE, partly based on a patch
3403     from Colin Charles. (pjones)
3404     - sqlite3->sqlite (pnasrat)
3405     - support longer package names in hdlist (pnasrat, #146820)
3406     - Fix handling of --debug (Ingo Pakleppa, #150920, #150925)
3407     - Fix for font location changes (#150889)
3408     - More cjk text shuffling (#149039)
3409    
3410     * Mon Mar 7 2005 Peter Jones <pjones@redhat.com> - 10.2.0.27-1
3411     - supress lvm fd warning messages
3412     - fewer log messages when growing partitions
3413     - clamp LVs to pesize during grow
3414    
3415     * Mon Mar 7 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.26-1
3416     - urlgrabber stuff is in its own package now
3417    
3418     * Sun Mar 6 2005 Peter Jones <pjones@redhat.com> - 10.2.0.25-1
3419     - Empty blacklist in upgrade.py (notting, #142893)
3420     - Add new font package names (katzj)
3421     - Yet another fix of autopart with lvm (pjones)
3422    
3423     * Tue Mar 1 2005 Peter Jones <pjones@redhat.com> - 10.2.0.24-1
3424     - gcc4 fixes (clumens, pjones)
3425     - build C files with -D_FORTIFY_SOURCE=2 (pjones)
3426    
3427     * Mon Feb 28 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.23-1
3428     - Don't write out filesystems to fstab we haven't mounted (katzj, #149091).
3429     - Deal with multiple Apple Bootstrap partitions (pnasrat).
3430     - Set hostname sensitivity UI bug.
3431     - Eject CD when failing (pnasrat, #147272).
3432     - Better handling of Apple Bootstrap throughout (pjones).
3433     - Do ethtool setup everywhere (pnasrat, #145522).
3434     - Fix "debug" command line arg (pjones).
3435     - Import new libkrb5support library (#149856).
3436     - Add -once to ensure Xvnc exits (katzj, #137337).
3437    
3438     * Sun Feb 20 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.22-1
3439     - revert some of the ppc changes so that lvm is used (nasrat)
3440     - Try to fix bogl stuff some more (#149039)
3441     - x86_64 install fixes (#149040)
3442    
3443     * Sun Feb 20 2005 Peter Jones <pjones@redhat.com> - 10.2.0.21-1
3444     - get rid of lilo
3445     - make grub work with raid1 /boot and /root
3446    
3447     * Sat Feb 19 2005 Paul Nasrat <pnasrat@redhat.com> - 10.2.0.20-1
3448     - Pull in translations
3449     - s390 linuxrc silence nonexistant group warnings (karsten)
3450     - ppc mac autopartitioning and G5 boot.iso (#121266) and (#149081)
3451    
3452     * Sat Feb 12 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.19-1
3453     - fix x86_64 installs for bad urlgrabber import
3454     - Fix traceback with no %post (clumens)
3455     - Put hostname in the text entry (clumens, #132826)
3456    
3457     * Tue Feb 8 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.18-1
3458     - Remove some old cruft
3459     - Fix-up for new module naming in gnome-python2-canvas 2.9.x
3460     - Add needed requirements for rpm 4.4
3461     - Fix segfault when rpm tries to write to non-existent fd during
3462     transaction ordering
3463     - Support --erroronfail as an option for %pre/%post (clumens, #124386)
3464    
3465     * Tue Feb 8 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.17-1
3466     - Use rhpl.archscore to fix iseries upgrades (pnasrat, #146915)
3467     - Only configure ksdevice if no --device (pnasrat, #138852)
3468     - Don't redraw help if disasbled on next button click (clumens, #145691)
3469     - Fix exception in exception handler (msw)
3470     - Rebuild for new librpm
3471    
3472     * Fri Feb 4 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.16-1
3473     - Support setting fs options in kickstart via --fsoptions (#97560)
3474     - Fix tracebacks
3475    
3476     * Wed Feb 2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.15-1
3477     - Fix some bugs in the reduce-font changes
3478     - Fix urlgrabber import
3479     - Remove langsupport screen, base additional language support off of groups
3480     selected
3481    
3482     * Wed Feb 2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.14-1
3483     - Fix deprecation warnings for pygtk 2.5 (clumens)
3484     - Fix bootloader --location=none (clumens, #146448)
3485     - Use urlgrabber (clumens)
3486     - Create reduced bogl font at upd-instroot time to include more
3487     characters (#92146, #140208)
3488     - Allow passing --src-discs=0 to get no srpm discs from splittree
3489     (based on patch from Armijn Hemel, #119070)
3490     - Mount pseudo-fs's with a more descriptive device name (#136820)
3491     - Minor tweaks to completion message (#138688)
3492    
3493     * Tue Jan 25 2005 Peter Jones <pjones@redhat.com> - 10.2.0.13-1
3494     - Hopefully fix LVM size bug (#145183)
3495     - Support multiple iso sets in the same directory (#146053)
3496    
3497     * Wed Jan 19 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.12-1
3498     - Fix partitioning bugs (#101432, #137119)
3499     - Support --bytes-per-inode on a per-partition basis (#57550)
3500    
3501     * Thu Jan 13 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.11-1
3502     - Fix some tracebacks with the new glade code
3503     - Use busybox ash instead of ash for netstg2.img/hdstg2.img
3504     - Initialize terminals to avoid color palette change from
3505     bterm (pjones, #137849)
3506    
3507     * Thu Jan 13 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.10-1
3508     - Handle /sbin/lvm not existing anymore
3509     - Allow installclasses to turn off showing the upgrade option
3510     - Ensure that Core exists in your comps file (#143930)
3511     - Don't fall back to text mode if we fail to start graphics in test mode
3512     - Display better error messages for HTTP/FTP errors (clumens, #144546)
3513     - Switch main UI to use glade, set up infrastructure for use of glade
3514     - Remove some old code
3515     - Add buildprereq for intltool (fixed for b.g.o 163981)
3516    
3517     * Wed Jan 5 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.9-1
3518     - Fix some typos (#143257, #144006)
3519     - Fix from Matthew Miller for multiple dns servers (#84409)
3520     - Fix formatting of fcp disks (#144199)
3521     - Include a README for x86_64 images (clumens, #143366)
3522     - Make an x86_64 rescue image (clumens, #143366)
3523     - Add libXfixes for new gtk2
3524    
3525     * Thu Dec 23 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.8-1
3526     - Use tmpfs not ramfs for /dev
3527     - Blacklist "root" as a VG name (#142785)
3528     - Better error message if swap can't be mounted (clumens, #143000)
3529     - Some fixes to the new /dev handling in init
3530     - Make more certain hwaddr gets written out (#143535)
3531     - Handle new swap label format (#143447)
3532     - Let the user know they're in rescue mode earlier (clumens, #136171)
3533    
3534     * Mon Dec 20 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.7-1
3535     - Better error handling on device creation (#142273)
3536     - Reset package selection to defaults if selected (#142415)
3537     - LVM on RAID1 fix (nasrat, #141781)
3538     - Add support for biosdev in driverdisk from Rez Kabir (#142738)
3539     - Some more SX8 fixes
3540     - Create /dev as a tmpfs (#141570)
3541     - Remove some old code
3542     - Improve quoting of fstype in anaconda-ks.cfg (Danen Brücker)
3543    
3544     * Wed Dec 8 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.6-1
3545     - Write out wepkey better (#140645)
3546     - Try to skip source isos with nfsiso (#106017)
3547     - Don't traceback for bad/missing / in fstab (nasrat, #141174)
3548     - Include pesize in generated ks.cfg (#141370)
3549     - Loop less on shutdown
3550     - Better handling of partial volume groups (#139058)
3551    
3552     * Tue Nov 30 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.5-1
3553     - CTCPROT fix (karsten, #133088)
3554     - Fix LVM partitions becoming negative sized (nasrat, #141268)
3555     - Fix removal/editing of zfcp devices in gui (#140559)
3556     - Fix segfault (#140541, #140876)
3557     - Fix handling of pre-existing parts on disks that we then ignore (#131333)
3558    
3559     * Tue Nov 23 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.4-1
3560     - Update python version in urllib hack
3561     - /init in initramfs instead of /linuxrc
3562     - Improved ppc console detection (nasrat, #134397)
3563     - Better handling of going back when out of space (#133773)
3564     - Better handling of LVM failures (#134263)
3565     - Set a default when boot loader to upgrade is indeterminate (#139603)
3566     - No more diet on i386
3567    
3568     * Tue Nov 16 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.3-1
3569     - Create initramfs images instead of initrds for boot media
3570     - Remove some old code in a few places
3571     - Allow passing --notksdevice in network lines of a ks.cfg to avoid
3572     confusion with multiple network lines and a ksdevice= (#136903)
3573     - Allow going back to change the network device if ksdevice= is
3574     passed and isn't correct (#136903)
3575     - Fix for console= to automatically imply serial as needed (#137971)
3576    
3577     * Mon Nov 15 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.2-1
3578     - Do some more unmounts if we run out of space (#133773)
3579     - Fix for obsoletes E being long (nasrat, #138485)
3580     - Make serial imply nofb (#134167)
3581     - Set fstype to vfat if user selected /boot/efi in the
3582     mountpoint dropdown (#138580)
3583     - Copy the X log to the installed system
3584     - Add fix from HJ Lu to fix hang with no bootloader install (#138932)
3585     - Fix splittree error msg (nasrat, #139391)
3586     - Ignore IBM *STMF disks (#137920)
3587    
3588     * Mon Nov 8 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.1-1
3589     - whrandom is deprecated in python 2.4, use random instead
3590     - fix some syntax errors
3591     - fallback to English for languages that can't do text-mode (#138308)
3592     - More CTCPROT/PORTNAME tweaks (karsten)
3593    
3594     * Sun Nov 7 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.0-1
3595     - Switch to python 2.4
3596     - Clean up warning on network screen from pygtk
3597     - Parse pxelinux IPAPPEND for loader network info, patch
3598     from Bastien Nocera (#134054)
3599     - Clean up handling of binaries busybox should override
3600     - Do misc package selection earlier so we know all the CDs needed
3601     when confirming the install (#122017)
3602     - Mark some strings for translation (#137197)
3603     - Don't reference boot disks in boot loader screen (#135851)
3604     - Add hardware address information to network screen (#131814)
3605     - Fix exception handling in label reading
3606    
3607     * Thu Nov 4 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.4-1
3608     - Fix traceback with CJK upgrades (#137345)
3609     - Allow 128 bit WEP keys (#137447)
3610     - Fix race condition with X client startup (krh, #108777)
3611     - Fix segfault in hd kickstart install (twaugh, #137533)
3612     - Better handling of errors reading labels (#137846)
3613     - Try harder to find LCS interface names (karsten)
3614     - Improve CTCPROT handling (karsten)
3615     - Fix traceback going back in rescue mode network config (#137844)
3616     - Don't use busybox shutdown, poweroff, reboot (#137948)
3617     - Set permissions on anaconda logs
3618     - Make autopartioning better with native storage on legacy iSeries
3619     - Sync onboot behavior of gui/text network screens (#138011)
3620     - Load some drivers later to try to avoid having FC disks be sda
3621     - Sizes in ks.cfg need to be an integer (#138109)
3622    
3623     * Tue Oct 26 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.3-1
3624     - Pull in firefox on upgrade if mozilla/netscape were installed (#137244)
3625     - Fix s390 tracebacks (#130123, #137239)
3626    
3627     * Tue Oct 26 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.2-1
3628     - Handle our LVM autopart lines slightly better (#137120)
3629     - Use busybox sleep for s390 since sleep requires librt again (#131167)
3630     - Handle onboot in ks.cfg properly in the loader (#136903)
3631     - Punjabi shouldn't try to do text mode (#137030)
3632     - Add sgiioc4 driver for Altix CD installs (#136730)
3633     - pci.ids trimming (notting)
3634    
3635     * Wed Oct 20 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.1-1
3636     - Create a netboot.img again for ppc64 (#125129)
3637    
3638     * Wed Oct 20 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.0-1
3639     - Lowercase OSA addresses from the parm file too (karsten)
3640    
3641     * Tue Oct 19 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.21-1
3642     - Lowercase OSA addresses to make the kernel happy (#133190)
3643     - Don't hard code the VG name used for auto-partitioning to avoid
3644     colliding with existing ones
3645     - Make sure that we don't do runlevel 5 if people don't have X, etc
3646     installed (#135895)
3647     - Update for new Indic font filenames
3648    
3649     * Mon Oct 18 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.20-1
3650     - Fix traceback with %post logging (Gijs Hollestelle, #136154)
3651     - When using a local stage2.img for FTP/HTTP install, give an error earlier
3652     if you point at an invalid tree (#135603, #117155, #120101)
3653     - Add a trailing newline to /etc/sysconfig/kernel
3654     - Try to fix the icon theme
3655     - Rebuild against new dietlibc, hopefully fixes CJK text installs
3656    
3657     * Sun Oct 17 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.19-1
3658     - Fix font size to fit on disk display better (#135731)
3659     - Write out part lines for autopart lvm correctly (#135714)
3660     - Remove empty row in drive order for boot loader (#135944)
3661     - Replace % in URLs to avoid format string weirdness (#135929)
3662     - Bind mount /dev for rescue mode (#135860)
3663     - Fix Dutch and Danish keyboard defaults (#135839)
3664     - add s2io 10GbE driver
3665    
3666     * Thu Oct 14 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.18-1
3667     - Add fonts for ta, gu, bn, hi, pa (#119283)
3668     - Re-enable bterm for testing (#113910)
3669     - Fix segfault when using biospart with a ks hdinstall. Patch from
3670     Rez Kabir (#135609)
3671     - Write out /etc/sysconfig/kernel for use with new-kernel-pkg changes (#135161)
3672     - Fix telnet logins for s390 (karsten)
3673     - Hardcode LCS as eth instead of tr (karsten)
3674    
3675     * Tue Oct 12 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.17-1
3676     - Only use "our" LVM partitions with auto-partitioning (#135440)
3677     - Remove localboot option from syslinux.cfg for diskboot.img (#135263)
3678     - Handle the great input method switch on upgrade (#129218)
3679     - Don't save the hwaddr for qeth (#135023)
3680     - Add rhgb boot loader arguments in postinstall (msw)
3681     - Reverse Norwegian blacklisting (#129453) (notting)
3682     - Add sata_nv, sata_sx4, ixgb, ahci, sx8 modules to the initrd (notting)
3683    
3684     * Thu Oct 7 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.16-1
3685     - s390/s390x: Fix traceback with unpartitioned disks (karsten)
3686     - improve fit of bengali network screen (#134762)
3687     - don't allow formatting of a pre-existing partition without also
3688     mounting it (#134865)
3689     - Don't show "0" as a mountpoint for an LV that's not being mounted (#134867)
3690     - Add prelink config bits (#117867)
3691     - Sort packages in text package group details (#123437)
3692     - Don't traceback on upgrade if /dev/mapper/control exists (#124092)
3693    
3694     * Tue Oct 5 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.15-1
3695     - Fix creation of scsi device nodes (#134709)
3696     - Fix multiple kickstart scriptlets with different interpreters (#134707)
3697    
3698     * Mon Oct 4 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.14-1
3699     - Some zfcp fixes
3700     - Don't traceback if we have a %%include inside a scriptlet (#120252)
3701     - Fix SELinux for text-mode ftp/http installs (#134549)
3702    
3703     * Mon Oct 4 2004 Mike McLean <mikem@redhat.com> - 10.0.3.12-1
3704     - add command line options to pkgorder (mikem)
3705    
3706     * Mon Oct 4 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.11-1
3707     - Handle 32 raid devs (#134438)
3708     - Fix LCS PORTNAME (#134487)
3709     - Add logging of kickstart scripts with --log to %post/%pre
3710     - Copy /tmp/anaconda.log and /tmp/syslog to /var/log/anaconda.log
3711     and /var/log/anaconda.syslog respectively (#124370)
3712     - Fix Polish (#134554)
3713     - Add arch-specific package removal (#133396)
3714     - Include PPC PReP Boot partition in anaconda-ks.cfg (#133934)
3715     - Fix changing of VG name going through to boot loader setup (#132213)
3716     - Add support for > 128 SCSI disks (#134575)
3717    
3718     * Fri Oct 1 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.10-1
3719     - add kickstart zfcp configuration (#133288, #130070)
3720     - Use NFSv3 for NFS installs. Fixes NFSISO installs from DVD (#122032)
3721     - Fix megaraid_mbox module name (#134369)
3722     - Another uninitialized fix (#133996)
3723     - Add the zh_CN font (#133330)
3724    
3725     * Thu Sep 30 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.9-1
3726     - translation updates
3727     - Install compat-arch-support by default (#133514)
3728     - Warn if an older version is chosen for upgrading if product is RHEL (#134523)
3729     - Fix traceback on upgrade with possible lvm1 (#134258)
3730     - Make changing the DNS server work (#122554)
3731     - More fixes from pnasrat for arch handling on upgrade
3732    
3733     * Thu Sep 30 2004 Paul Nasrat <pnasrat@redhat.com> - 10.0.3.8-1
3734     - Fix missing rpm.ts (#133045)
3735    
3736     * Wed Sep 29 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.7-1
3737     - Don't ask about mouse type on remote X display (#133902)
3738     - Label swap filesystems (#127892)
3739     - Fix possible crash on hd kickstart installs (#133996)
3740     - Improve multiarch upgrade (#133045)
3741     - Avoid changing the default language when selecting additional
3742     language support (#134040)
3743     - Remove spurious blank option in upgrade combo (#134058)
3744     - Fix driver disk hang (#131112, #122952)
3745     - Fix detection of unformatted dasd (#130123)
3746    
3747     * Mon Sep 27 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.6-1
3748     - Fix traceback from auto-partitioning if you don't have enough space (#131325)
3749     - Update FCP config for adding SCSI LUNs (#133290)
3750    
3751     * Mon Sep 27 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.5-1
3752     - Fix driver disk segfault when using a partition (#133036)
3753     - Let driver disk images on ext2 partitions work
3754     - Fix nonet/nostorage
3755     - Allow name.arch syntax in ks.cfg (#124456)
3756     - Fix traceback unselecting last language (#133164)
3757     - Skip version 0 swap (#122101)
3758     - Handle /dev being present in device names of ks.cfg (#121486)
3759     - Use no instead of no-latin1 for Norwegian keyboard (#133757)
3760     - include other dm modules (#132001)
3761    
3762     * Fri Sep 24 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.4-1
3763     - fix megaraid module name (notting)
3764     - don't prompt for a driver disk on pSeries boxes with just
3765     virtual devices (#135292)
3766     - don't use PROBE_LOADED for cd probe (#131033)
3767     - i2o devices don't use a "p" separator (#133379)
3768     - switch back zh_CN font to default (#133330)
3769     - add 3w-9xxx to modules.cgz (#133525)
3770     - fix showing of freespace (#133425)
3771    
3772     * Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.3-1
3773     - fix going back unmount of /dev/pts (#133301)
3774     - fix SRPMs disc (#122737)
3775     - add localboot option to isolinux.cfg (#120687)
3776     - fix tree build on ia64 and x86_64
3777     - fix a syntax error for text mode selinux config
3778    
3779     * Tue Sep 21 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.2-1
3780     - some fixes for Arabic (#122228)
3781     - support using ksdevice=macaddr (#130605)
3782     - add an images/pxeboot directory on ia64
3783    
3784     * Tue Sep 21 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.1-1
3785     - improve handling of non-physical consoles on some ppc and ia64 machines
3786     - add Bengali(India) and Gujarati to the lang-table (#126108)
3787     - add support for setting the CTC protocol on s/390 (#132324, #132325)
3788     - don't offer to do vnc if we don't have active nwtorking (#132833)
3789     - various typo/grammar fixes
3790     - add support for 'nostorage' and 'nonet' command line options to avoid
3791     auto-loading just network or storage devices
3792     - fix editing of pre-existing lvm (#132217)
3793     - fix going back from the partitions list on a driver disk (#132096)
3794     - don't show login error if silent errors (#132673)
3795    
3796     * Thu Jun 3 2004 Jeremy Katz <katzj@redhat.com>
3797     - require system-logos and anaconda-help, obsolete anaconda-images
3798    
3799     * Fri Apr 30 2004 Jeremy Katz <katzj@redhat.com>
3800     - Update description, remove prereq on stuff that was only needed
3801     for reconfig mode
3802    
3803     * Tue Feb 24 2004 Jeremy Katz <katzj@redhat.com>
3804     - buildrequire libselinux-devel
3805    
3806     * Thu Nov 6 2003 Jeremy Katz <katzj@redhat.com>
3807     - require booty (#109272)
3808    
3809     * Tue Oct 8 2002 Jeremy Katz <katzj@redhat.com>
3810     - back to mainstream rpm instead of rpm404
3811    
3812     * Mon Sep 9 2002 Jeremy Katz <katzj@redhat.com>
3813     - can't buildrequire dietlibc and kernel-pcmcia-cs since they don't always
3814     exist
3815    
3816     * Wed Aug 21 2002 Jeremy Katz <katzj@redhat.com>
3817     - added URL
3818    
3819     * Thu May 23 2002 Jeremy Katz <katzj@redhat.com>
3820     - add require and buildrequire on rhpl
3821    
3822     * Tue Apr 02 2002 Michael Fulbright <msf@redhat.com>
3823     - added some more docs
3824    
3825     * Fri Feb 22 2002 Jeremy Katz <katzj@redhat.com>
3826     - buildrequire kernel-pcmcia-cs as we've sucked the libs the loader needs
3827     to there now
3828    
3829     * Thu Feb 07 2002 Michael Fulbright <msf@redhat.com>
3830     - goodbye reconfig
3831    
3832     * Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
3833     - update the BuildRequires a bit
3834    
3835     * Fri Jan 4 2002 Jeremy Katz <katzj@redhat.com>
3836     - ddcprobe is now done from kudzu
3837    
3838     * Wed Jul 18 2001 Jeremy Katz <katzj@redhat.com>
3839     - own /usr/lib/anaconda and /usr/share/anaconda
3840    
3841     * Fri Jan 12 2001 Matt Wilson <msw@redhat.com>
3842     - sync text with specspo
3843    
3844     * Thu Aug 10 2000 Matt Wilson <msw@redhat.com>
3845     - build on alpha again now that I've fixed the stubs
3846    
3847     * Wed Aug 9 2000 Michael Fulbright <drmike@redhat.com>
3848     - new build
3849    
3850     * Fri Aug 4 2000 Florian La Roche <Florian.LaRoche@redhat.com>
3851     - allow also subvendorid and subdeviceid in trimpcitable
3852    
3853     * Fri Jul 14 2000 Matt Wilson <msw@redhat.com>
3854     - moved init script for reconfig mode to /etc/init.d/reconfig
3855     - move the initscript back to /etc/rc.d/init.d
3856     - Prereq: /etc/init.d
3857    
3858     * Thu Feb 03 2000 Michael Fulbright <drmike@redhat.com>
3859     - strip files
3860     - add lang-table to file list
3861    
3862     * Wed Jan 05 2000 Michael Fulbright <drmike@redhat.com>
3863     - added requirement for rpm-python
3864    
3865     * Mon Dec 06 1999 Michael Fulbright <drmike@redhat.com>
3866     - rename to 'anaconda' instead of 'anaconda-reconfig'
3867    
3868     * Fri Dec 03 1999 Michael Fulbright <drmike@redhat.com>
3869     - remove ddcprobe since we don't do X configuration in reconfig now
3870    
3871     * Tue Nov 30 1999 Michael Fulbright <drmike@redhat.com>
3872     - first try at packaging reconfiguration tool
3873    

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed