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

Contents of /rpms/anaconda/sme8/anaconda.spec

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


Revision 1.7 - (show annotations) (download)
Tue Apr 14 14:36:31 2009 UTC (15 years, 2 months ago) by slords
Branch: MAIN
CVS Tags: anaconda-11_1_2_168-1_el5_centos
Changes since 1.6: +465 -11 lines
CentOS 5.3 sources

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

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