summaryrefslogtreecommitdiffstats
path: root/anaconda.spec
blob: de292442004d1e30db2b493e2edcb54753e2891f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
Name: anaconda
Version: 11.1.2.36
Release: 1
License: GPL
Summary: Graphical system installer
Group: Applications/System
Source: anaconda-%{PACKAGE_VERSION}.tar.bz2
BuildPreReq: kudzu-devel >= 1.2.42, pciutils-devel
BuildPreReq: bzip2-devel, e2fsprogs-devel, python-devel, gtk2-devel
BuildPreReq: rpm-python >= 4.2-0.61, newt-devel, rpm-devel, gettext >= 0.11
BuildPreReq: rhpl, booty, libxml2-python, zlib-devel, elfutils-devel
BuildPreReq: beecrypt-devel, libselinux-devel >= 1.6, libX11-devel
BuildPreReq: libXxf86misc-devel, intltool >= 0.31.2-3, python-urlgrabber
BuildPreReq: pykickstart, yum >= 2.9.2, device-mapper >= 1.01.05-3, 
BuildPreReq: libsepol-devel
BuildPreReq: pango-devel, pirut, libXt-devel, slang-devel >= 2.0.6-2
BuildPreReq: glib2-devel >= 2.11.1-5
BuildPreReq: libdhcp-devel >= 1.16, mkinitrd-devel >= 5.1.2-1
BuildPreReq: audit-libs-devel
Requires: rpm-python >= 4.2-0.61, rhpl >= 0.170, booty
Requires: parted >= 1.7.1, pyparted >= 1.7.2
Requires: kudzu >= 1.2.42, yum >= 2.9.2, pirut >= 1.1.0
Requires: libxml2-python, python-urlgrabber
Requires: system-logos, pykickstart, system-config-date
Requires: device-mapper >= 1.01.05-3
Requires: dosfstools >= 2.11-6.2 e2fsprogs
Requires: python-pyblock >= 0.24-1
Requires: libbdevid >= 5.1.2-1, libbdevid-python
Requires: audit-libs
%ifnarch s390 s390x ppc64
Requires: rhpxl >= 0.25
%endif
Obsoletes: anaconda-images <= 10
Url: http://fedora.redhat.com/projects/anaconda-installer/

BuildRoot: %{_tmppath}/anaconda-%{PACKAGE_VERSION}

%description
The anaconda package contains the program which was used to install your 
system.  These files are of little use on an already installed system.

%package runtime
Summary: Graphical system installer portions needed only for fresh installs.
Group: Applications/System
AutoReqProv: false
Requires: libxml2-python, python, rpm-python >= 4.2-0.61
Requires: anaconda = %{version}-%{release}
Requires: createrepo >= 0.4.3-3.1, squashfs-tools, mkisofs
%ifarch %{ix86} x86_64
Requires: syslinux
%endif
%ifarch s390 s390x
Requires: openssh
%endif
Requires: /usr/bin/strip, xorg-x11-font-utils, netpbm-progs

%description runtime
The anaconda-runtime package contains parts of the installation system which 
are needed for installing new systems.  These files are used to build media 
sets, but are not meant for use on already installed systems.

%prep

%setup -q

%build
make depend
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"

%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install
#strip $RPM_BUILD_ROOT/usr/sbin/ddcprobe

strip $RPM_BUILD_ROOT/usr/lib/anaconda/*.so

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-,root,root)
%doc COPYING
%doc ChangeLog
%doc docs/command-line.txt
%doc docs/install-methods.txt
%doc docs/kickstart-docs.txt
%doc docs/mediacheck.txt
%doc docs/anaconda-release-notes.txt
/usr/bin/mini-wm
/usr/sbin/anaconda
%ifarch i386
/usr/sbin/gptsync
%endif
/usr/share/anaconda
/usr/share/locale/*/*/*
/usr/lib/anaconda

%files runtime
%defattr(-,root,root)
/usr/lib/anaconda-runtime

%triggerun -- anaconda < 8.0-1
/sbin/chkconfig --del reconfig >/dev/null 2>&1 || :

%changelog
* Thu Feb  1 2007 Peter Jones <pjones@redhat.com> - 11.1.2.36-1
- Fix traceback when using text mode with a language that we can't display
  Resolves: #225528

* Fri Jan 26 2007 Peter Jones <pjones@redhat.com> - 11.1.2.35-1
- Don't set the migration flag for FAT labels if we're formatting the
  partition
  Resolves: #223898
- Process directories recursively when relabelling
  Resolves: #218791

* Fri Jan 26 2007 Jeremy Katz <katzj@redhat.com> - 11.1.2.34-2
- fix ordering for split media installs (#223090)

* Wed Jan 24 2007 Peter Jones <pjones@redhat.com> - 11.1.2.34-1
- The PAE kernel isn't named according to the normal convention, so we need
  "kernel-PAE" instead of "kernel-pae" in the list for grub.
  Resolves: #223941

* Tue Jan 23 2007 Peter Jones <pjones@redhat.com> - 11.1.2.33-1
- Handle FAT/VFAT labels on upgrade better 
  Resolves: #223890
- Include kernel-pae in the list of kernels we set up in grub.conf (#223941)

* Mon Jan 22 2007 Peter Jones <pjones@redhat.com> - 11.1.2.32-1
- Don't try to migrate fat/vfat labels if there's no fstab yet (#223554).
- Always dasdfmt when we're relabeling a dasd device.
  Resolves: #223492
- Don't use FAT/VFAT labels that are in use on other filesystems
  Resolves: #218957

* Fri Jan 19 2007 Peter Jones <pjones@redhat.com> - 11.1.2.31-1
- Fix typo in yesterday's iscsi fix
  Resolves: #223257

* Thu Jan 18 2007 Peter Jones <pjones@redhat.com> - 11.1.2.30-1
- Fix iscsi shutdown's "ps" call
  Resolves: #223257
- Fix "halt" kickstart directive
  Resolves: #222953

* Wed Jan 17 2007 Peter Jones <pjones@redhat.com> - 11.1.2.29-1
- fix rhpl import 
  Resolves: #222991

* Tue Jan 16 2007 Peter Jones <pjones@redhat.com> - 11.1.2.28-1
- Use a GtkWindow for the release notes viewer (katzj)
  Resolves: #220418
- Add pirut to our textdomain so strings get translated (katzj)
  Resolves: #216067
- Don't log a pvrequest's "drive" attribute, since they don't all have them
  Resolves: #221992
- Fix "clearpart" and such to only happen once
  Resolves: #220021
- Handle multiple repo paths better
  Resolves: #221146
  Resolves: #221260
- label fat filesystems for /boot/efi on ia64
  Resolves: #218957
- Don't overwrite hdinstall partition when "clearpart --all --initlabel" is
  in ks.cfg (dlehman)
  Resolves: #220331
- Fix depsolver progress meter problems when there's not enough space (dlehman)
  Resolves: #215493
- Don't show "unsupported language" error when not in interactive mode (clumens)
  Resolves: #222096
- Change default mpath option to disabled
  Related: #219843
- Remove packages pulled in for deps when there's a space error (dlehman)
  Resolves: #222894
- Disable betanag (katzj)

* Thu Jan  4 2007 Peter Jones <pjones@redhat.com> - 11.1.2.27-1
- Include cdroms in the scsi disk count (katzj, #207336)
- Translation display fixes (katzj, #216067)
- Wait longer for usb floppy access (#211222)
- Make the package repo path list right (#221260)

* Wed Jan  3 2007 Peter Jones <pjones@redhat.com> - 11.1.2.26-1
- Fix bug trying to find repomd files (#221146)
- Don't do 'clearpart' stuff on fsset if we're not in a kickstart (#221090)

* Tue Jan  2 2007 Peter Jones <pjones@redhat.com> - 11.1.2.25-1
- Turn off multipath support by default (enable with "mpath" during boot)
- Don't clear partitions if it's already been done (#220021)
- Handle upgrade conditionals better (pnasrat, #218909, #214747)
- Handle new repo dict format (dlehman, #220241, #220326)
- Don't log messages about VT tech preview on s390 and ppc (dlehman, #220236)

* Mon Dec 18 2006 Peter Jones <pjones@redhat.com> - 11.1.2.24-1
- Make sure reg keys are written out un upgrade (dlehman, #219791)
- handle 'regkey --skip' correctly in kickstart (dlehman, #219544)
- Allow users to go back and change regkeys (dlehman, #219361)
- Do not accept regkeys that don't match the install media (dlehman, #219823)
- Honor dhcpclass parameter in isys (dcantrell, #220057)
- Pick paths better for url iso installs (#219205)

* Fri Dec 15 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.23-1
- Use subprocess in execConsole (clumens, #210481, #216155)
- Leave a way for mkinited to discover lack of mpath (pjones, #219843)
- Pass 'anaconda' to instClass.installDataClass() (pjones, #219793)
- Use intf, not self.anaconda.intf in partedUtils
- Handle DiskSet instantiation from LabelFactory when anaconda=None
- Resolves: rhbz#210481 rhbz#216155 rhbz#219843 rhbz#219793

* Thu Dec 14 2006 Peter Jones <pjones@redhat.com> - 11.1.2.22-1
- Only show information appropriate to the install class specified by the
  reg key (dlehman, #218967)
- Fix dasd formatting (dcantrell, #218861)
- Fix iscsi portal discovery (#216164)
- Update xvc0 major/minor (katzj, #218050)
- Fix device node creation in 'rescue' (clumens)
- Fix zFCP device addition (dcantrell, #210635)

* Wed Dec 13 2006 Peter Jones <pjones@redhat.com> - 11.1.2.21-1
- Handle reg keys with dashes (dlehman, #218716)
- Don't traceback with no iscsi (katzj, #218513)
- Unmount cdrom after installation when using local stage2 during http
  install (dlehman)
- Fix typo in iscsi code (katzj, #218513)
- Remove LIBUSER_CONF from the environment before running
  post (clumens, #218213)
- Don't allow virt by default on ia64 (#215429)
- Fix lvm off-by-one-extent problems with previously created volume groups
  (pjones, #217913)

* Wed Dec  6 2006 Peter Jones <pjones@redhat.com> - 11.1.2.20-1
- Remove language choices for which there is no font (katzj, #217498)
- Add stex module (katzj, #209179)
- Fix debug output (pnasrat, #217751, #217774)

* Fri Dec  1 2006 Dennis Gregorovic <dgregor@redhat.com> - 11.1.2.19-2
- rebuild
- Related: rhbz#217861

* Wed Nov 29 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.19-1
- Don't always write out xconfig and monitor lines (#211977).
- Pull in xinf files from X driver packages on url images.
- Fix for changed API (katzj, #217673, #217689).

* Tue Nov 28 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.18-1
- Fix registration key dialog (katzj).
- Base shown tasks on registration key (katzj).
- Init wreq structure before use (dcantrel, #215367).
- Fetch new release notes file on language change (#217501).
- Add ipv6= command line argument (dcantrel).
- Rework loader network config screen (dcantrel, #213108, #213112).
- Disable testing registration keys when out of beta (katzj, #217360).
- Fix si_LK timezone (katzj, #217288).
- Set the right home directory on kickstart user command (#216681).
- Allow correcting kickstart file location on error/typo (#216446).
- Check for .discinfo instead of using a static number (pjones, #214787).
- Nodes property typo (pnasrat, #216410).
- Only set broadcast and network addr if ipv4 is enabled (dcantrel, #215451).

* Fri Nov 17 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.17-1
- Preserve drive order specified in kickstart (#214881).
- Be smarter about checking if iscsi is available (katzj, #216128).
- Install language support packages in text mode (nasrat, #215867).
- Fix kernel naming (katzj, #215746).
- Fix handling of iscsiadm output and activation of devices (pjones).
- Depsolve on optional/non-grouped packages (nasrat, #214848).
- Update kickstart documentation.
- Make sure source is unmounted on image installs before %post (#214677).
- Use mode 0600 for install-num file (katzj, #214853).

* Thu Nov 09 2006 Paul Nasrat <pnasrat@redhat.com> -11.1.2.16-1
- Fix traceback due to incorrect no discs (#214787)

* Wed Nov  8 2006 Peter Jones <pjones@redhat.com> - 11.1.2.15-1
- Fix segfault when there's no EDD, as on ppc (#214653)
- Always skip networking screen on kickstart installs (clumens, #214584)
- Update install method docs (clumens, #214159)

* Mon Nov  6 2006 Peter Jones <pjones@redhat.com> - 11.1.2.14-1
- Avoid traceback with PReP partitions on disks that aren't currently
  in use (clumens, #211098)
- Fix traceback when all space is in use (ddearau AT us.ibm.com, #213616)
- Fix text mode traceback (katzj, #213869)
- Use better API for network configuration dialog (katzj, #213356)

* Fri Nov 03 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.13-1
- Install in text mode if a KVM confused X autodetection.

* Fri Nov 03 2006 Paul Nasrat <pnasrat@redhat.com> - 11.1.2.12-1
- Fix traceback on ftp loopback iso installs (#212014)
- Enable IPv6 dns support in loader (dcantrell)

* Wed Nov  1 2006 Peter Jones <pjones@redhat.com> - 11.1.2.11-1
- Fix localhost6 line in /etc/hosts (dcantrell, #210050)
- Add more fonts to the install image (katzj, #207428)
- Remove i386 dmraid on multi-arch upgrades (katzj, #209011)
- Improve split ISO URL installs (clumens)
- Fix line wrapping in clearpart (clumens, #213425)
- Always set an active value in the LVM PE size combo box (clumens, #212317)
- Don't try to clear partitions on drives in the skippedList (clumens)
- Don't try to resolve port numbers from urls as hostnames (clumens, #212622)

* Fri Oct 27 2006 Peter Jones <pjones@redhat.com> - 11.1.2.10-1
- Don't use keepalive sockets when they won't be reused (#212571)

* Fri Oct 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.9-1
- Fix install key handling (#212548)
- Catch hard drives that don't exist (clumens, #212377)
- Fix typo for slovak keyboard (#212304) 

* Thu Oct 26 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.8-1
- Fall over to the next mirror correctly (#208077, #212014).

* Wed Oct 25 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.7-1
- Fix zfcp (#210094)
- Remove unneeded whiteout
- Fix a case where we might have leaked an fd (#212191)

* Tue Oct 24 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.6-1
- Add Sinhala (#207426)
- Fix a traceback in shell exec (pnasrat, #211830)
- Write out proper ipv6 localhost in /etc/hosts (dcantrel, #211800)
- Merge swap/graphical limits from fc6 (#211649)
- Fix canceling with iscsi (#211996)
- Fix static IPs with iscsi/repo adding
- Fix use of repos on upgrade (#211547)
- Add real key format (dlehman, #207752)

* Fri Oct 20 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.5-1
- Build against libdhcp-1.16
- Continue if vname or vparm are NULL in readNetInfo (#211502)
- Add fonts-telugu (katzj, #207428)
- Fix install progress bar/window dimensions (katzj, #211526)
- Don't specify a stdout of stderr for shells on zSeries (clumens, #210481)
- Use execConsole function to run shells (clumens)
- Only use netlink messages with ARP Ethernet headers (katzj, #210195)
- Force swap formatting on ppc (pnasrat, #206523)
- Don't traceback without a key in cmdline mode (katzj, #211476)
- Pass noipv4/noipv6 settings from stage 1 to stage 2 (#208334)
- Correct --onbiosdisk handling (clumens, #210705)
- Keep runlevel 3 if doing a VNC install (clumens, #211318)
- Don't use unicode line drawing on vt100-nav terminals (katzj, #208374)
- Remove multilib packages (pnasrat, #209011)

* Tue Oct 17 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.4-1
- yum fix retry on failure (katzj, #211117)
- Fix ordering for iSCSI tools on CD installs (katzj, #208832)
- Only go back a screen from regKeyScreen is possible (katzj, #211101)
- Support --skip for instkey (katzj)
- Parse /tmp/netinfo correctly on zSeries (#207991)
- Fix for virtualization being the group instead of xen (katzj)

* Mon Oct 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.3-1
- Better regex for finding ISO loopback mounts (clumens, #205133)
- Setup baseurl better for additional repos (clumens, #210877)
- Add qla2400 and qla2xxx to late module load list (#210886)
- Write out zfcp to anaconda-ks.cfg
- Write out iscsi to anaconda-ks.cfg
- Preserve installation number in anaconda-ks.cfg and on the system (#207029)
- Add support for 'key' directive in kickstart for installation number
- Handle non-base repos which may or may not exist better (#202810)
- Fix zfcp (#210094)
- Take up more space for package descriptions (#210531)
- New installation number dialog (#207752)

* Thu Oct 12 2006 David Cantrell <dcantrell@redhat.com> - 11.1.2.2-1
- Fix layout where extra repo selection box is not displayed (clumens)
- Fix desktop upgrade (katzj, #210408)
- Don't start a new process group and do exit(0) instead of return
  after receiving SIGTERM (pjones)
- Only do auditDaemon if we're not in test or rootpath mode (pjones)
- Error only when checking the initiator name (katzj, #210347)
- Don't force gateway and DNS values (#200029)
- Set IPv6 entry box sensitivity correctly in text mode
- Initialize useIPv4 and useIPv6 correctly when existing net info is there

* Wed Oct 11 2006 Chris Lumens <clumens@redhat.com> - 11.1.2.1-1
- Ignore basepath in getHeader to fix CD installs (pnasrat).
- Fix package installation.

* Tue Oct 10 2006 Jeremy Katz <katzj@redhat.com> - 11.1.2.0-1
- Allow setting the language to something not in lang-table (clumens, #176538)
- Fix split media (pnasrat)
- Fix going back from advanced bootloader (clumens, #210190)
- Bump early swap to be higher
- Add Telugu (#207428)
- Update edd support (Rez Kabir, #207331)
- Sleep hacks for usb-storage (zaitcev, #207336)

* Mon Oct  9 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.110-1
- Fix SELinux contexts for iscsi 
- Fix traceback if addrepos isn't shown (#209997)
- Fix traceback looking up hostnames (clumens, #209672)
- Fix split media (pnasrat)
- Fix network to be enabled after install on non-network installs

* Fri Oct  6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.109-1
- Fix iscsi for toolchain changes and targets with multiple IPs
- Validate ips like 9.1.2.3 (dcantrel, #209654)

* Fri Oct  6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.108-1
- Fix endless spinning with redhat-lsb depcheck (#209665)
- Fix usefbx (clumens)
- Fix traceback with loopback isos (pnasrat)

* Thu Oct  5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.107-1
- minor yum api fix

* Wed Oct  4 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.105-1
- Fix details in tui pkgselection (#209310)
- Add Assamese (#207424)
- More network UI sanity checking (dcantrel)
- Disable release notes url clicking (dcantrel)
- Fix traceback going back on upgrade (#205198)
- Try to fix up sr_CS.UTF-8@Latn some more (#182591)

* Tue Oct 03 2006 Chris Lumens <clumens@redhat.com> - 11.1.0.104-1
- More netconfig fixes (dcantrel).
- Reset protected partitions list (#204405).
- Handle more iscsi error cases (katzj, #208671).
- Don't bring down network interfaces after fetching files (dcantrel,
  #201194).

* Mon Oct  2 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.103-1
- More netconfig fixing (dcantrel)
- Fix some translation problems (#206620)
- Don't do netconfig on task toggle (#208562)
- Some mpath/dmraid fixes (pjones, #208423)
- Only set graphical if VNC is enabled in kickstart, not 
  all kickstarts (clumens)
- Ensure RAID levels get sorted (#208478)
- Fix handling of locales we can't display (#208841)
- Fix traceback in partition editing (clumens, #208677)
- Try to fix sr_CS.UTF-8@Latn (#182591)
- Ensure a depcheck on redhat-lsb (#201222)
- Fix pkgorder to order "needed" groups early (#206778)

* Thu Sep 28 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.102-1
- Disable repo writing for now
- Fixup text network config (dcantrel)
- More HTTP response codes (clumens)
- Don't try to use updates disk image by default (clumens)
- Give an error message when netconfig fails
- Don't prompt for non-existent cd
- Fix DNS with dhcp for extras on CD install

* Wed Sep 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.101-1
- Give indication of no optional packages (#204242)
- Don't give an error on partition mount errors looking for upgrades (#201805)
- Firewire fix (notting)
- Make initrd.size have 0644 perms (dcantrel, #197773)
- More netconfig tweaks (dcantrel)
- Support loopback URL mounts (pnasrat, #207904)
- Turn off firstboot on s390 (clumens, #207926)
- Set display mode if vnc ks (clumens, #204736)
- Fix partitioning traceback (#208101)
- Fix lowres (clumens)
- xfs tweak (esandeen, #208323)
- Add qla4xxx (#208324) and qla3xxx 

* Thu Sep 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.100-1
- Fix a few tracebacks (#207594, #207587)
- Allow only iSCSI disks (#207471)
- Fix bootdisk.img on x86_64

* Wed Sep 20 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.99-1
- Fix CD stage2 + URL installs (clumens, #205571, #206072)
- Remove hostap (clumens, #196334)
- Fix input validation for manual network config (dcantrel, 
  #206148, #206678, #206537)
- More network UI improvements (dcantrel)
- Fix upgrade tracebacks (pnasrat, #206913)
- Improved zfcp code (#204145)
- Format swap on ppc upgrades (pnasrat, #206523)
- Fix network interface bringup (dcantrel, #206192, #200109)
- Allow running anaconda with --target arch for stateless (#206881)
- Improve iscsi and zfcp TUI and kickstart config

* Fri Sep 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.98-1
- Fix stage2 creation (prarit, #206638)
- Add ehea driver (pjones)
- Fix rescue mode for the early shell case

* Thu Sep 14 2006 Chris Lumens <clumens@redhat.com> 11.1.0.97-1
- Compile fix (pjones).

* Thu Sep 14 2006 Chris Lumens <clumens@redhat.com> 11.1.0.96-1
- Use -no-fragments to mksquashfs (katzj, #206472).
- Fix scsi and usb module loading (pjones).
- Better testing for driver disk correctness (katzj, #195899).
- Support HTTP redirects in the loader (#188198, #204488).
- Write out repo configuration (pnasrat, #199468).
- Fix installing from additional repos on CD/DVD installs (katzj, #205846).
- Network UI fixes (katzj).
- --vesa -> --xdriver (pjones).
- Fix when group selection should appear in kickstart installs.
- Fix logical volume size checking again (#206039).
- Skip attached devices without media present again (#205465).
- Install fs packages if they're needed for installation (katzj, #205865).
- Only collect network addresses for running interfaces (dcantrel).
- zSeries initrd fixes (dcantrel, #197773).

* Fri Sep  8 2006 Peter Jones <pjones@redhat.com> - 11.1.0.95-1
- Look for repodata where the CDs are mounted, not where they're
  stored (clumens)
- Reverse traceback print order in the UI so most recent call is listed
  first (clumens, #204817)
- Don't install device-mapper-multipath or kpartx except when selected or
  required by install media.

* Thu Sep 07 2006 Chris Lumens <clumens@redhat.com> 11.1.0.94-1
- Allow opening release notes more than once (dcantrel, #203147).
- Fix NFS iso installs.
- More files to restorecon.
- Rework GUI network configuration screen (dcantrel).
- isys network cleanups (dcantrel).
- Fix taking sreenshots (#204480).
- Skip broken repositories in kickstart (#204831).
- Pull in all policy modules in initrd making.
- Fix yum traceback (katzj, #205450).
- Add hptiop module (katzj, #205337).

* Wed Sep  6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.93-1
- unbreak xen installs
- add hptiop drivers (#205337)
- Fix a traceback (#205450)

* Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.92-1
- fix the build some more

* Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.91-1
- build fix (pjones)
- traceback fix (dcantrel)

* Tue Sep  5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.90-1
- Update for newer iscsi code
- Fix with yum API change
- More files to restorecon (clumens)
- Don't crash with duplicate repos (clumens)
- Back to clearlooks (notting)
- dmraid for dmraid, not kpartx (pjones)

* Thu Aug 31 2006 Peter Jones <pjones@redhat.com> - 11.1.0.89-1
- Fix going back to the repo screen (clumens)
- Install correct supplementary packages when using dmraid or multipath

* Wed Aug 30 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.88-1
- Fix a case where images don't exist (#204648)
- More making pkgorder quieter

* Wed Aug 30 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.87-1
- Fix traceback on editing lvm (#204631)
- Fix SELinux context setting
- Don't do file logging in pkgorder

* Tue Aug 29 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.86-1
- Fix ia64 pxeboot dir (#199274)
- Remember manual TCP/IP settings (dcantrel, #202662)
- Clean up extra repo stuff some more (clumens)

* Tue Aug 29 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.85-1
- Sanity check more device names for LVM (notting, #2040387)
- Exception handling fixes (clumens)
- Fix Extras selection (clumens, #204267)
- Setup repos later
- Improved verbage (Paul Frields, #204249)
- Filter out some non-addressable storage from hd dict (pjones)
- Handle xen virtual serial
- Reset file contexts on mountpoints (#202525)
- Ensure programs used by anaconda are installed (clumens, #203216)

* Wed Aug 23 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.84-1
- Run in English for CJKI text installs (clumens, #180417, #202738)
- Don't mistake hard drives for CD drives (clumens, #202714)
- Start to add s390x mpath support (pjones)
- Whiteout scim-libs (clumens, #202543)
- Fix LV size check with growing (clumens, #203095)
- Fix graphical selection of drives (pjones)
- Speed up mke2fs (pjones, #201645)
- Add a simple audit daemon to get rid of audit spam (pjones)
- Some tweaks to repo addition/task selection
- Fix multipath for x86_64 (pjones, #203425)
- Set language to English every time it's unsupported (clumens, #203331)

* Wed Aug 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.83-1
- Fix text timezone typo (clumens, #202844)
- Some installclass tweaking
- Fix nfsiso to handle changing repopaths
- Fix x86_64 install traceback (#202660)
- Adjust for new theme

* Tue Aug 15 2006 Chris Lumens <clumens@redhat.com> 11.1.0.82-1
- Make Turkish translation build again.

* Tue Aug 15 2006 Chris Lumens <clumens@redhat.com> 11.1.0.81-1
- Fix serial console shell IO (#201479).
- Don't traceback if URL install path is just "/" (#202368).
- Fix font typo (katzj, #202167).
- SELinux fixups (pjones).
- Handle virtpconsole option again (katzj, #201749, #202450).
- Kickstart install fixes (#202471, #202483).
- Mark strings for translation (#199022).
- Fix ISO install method traceback (#201775).
- Don't enable the back button if there's no screen to show (#197766).
- Don't clobber a working /etc/resolv.conf on VNC installs (#201874).
- Remember user choices on network config (dcantrel, #200986, #200797).
- More greek fixing (katzj, #196980).
- Sync pkgorder with what distill is expecting (katzj, #201923).
- RHEL upgrade tweaks (katzj, #201741).
- Install class detection (katzj, #201745).
- Fix text upgrade traceback (katzj, #201960).
- Add more libraries for s390 (katzj, #200985).
- Add SATA probing (pjones).
- Add registration key options (katzj, #201738).
- Don't automatically set UTC check box on kickstart installs (#181737).
- Patch from Paul Schroder <pschroeder@uplogix.com> for nogr mode.

* Tue Aug 08 2006 Paul Nasrat <pnasrat@redhat.com> 11.1.0.80-1
- Blacklist e2fsprogs.ppc64 on upgrades (#200233)
- Set self.currentMedia to [] (dcantrel, #201722).
- Remove multiple error messages (dcantrel, #201247)
- Revert logMessage calls (clumens, #201707)

* Mon Aug 07 2006 Chris Lumens <clumens@redhat.com> 11.1.0.79-1
- s390 build fix.

* Mon Aug 07 2006 Chris Lumens <clumens@redhat.com> 11.1.0.78-1
- Fix password writing for interactive kickstart installs (#201455).
- Don't check percentage on preexisting LVs (#193341).
- Log added repos (#201212).
- Start adding things for ia64 Xen (katzj).
- Use new raid module name (katzj, #201361).
- Look for ifconfig in the right place during rescue mode (#201372).
- Fix segfault in FTP and HTTP path typos (#197403, #201243, #201367).
- Don't display the askmethod screen on CD installs (#201108).
- Do a better job at updating mkfs percentage bar (pjones).
- Fix finding the release notes (#201232).
- Add libvolume_id for gfs2-utils (katzj).

* Wed Aug 02 2006 Paul Nasrat <pnasrat@redhat.com> 11.1.0.77-1
- Fix pkgorder isdir check
- Reinstate frequent rescanning of devices (clumens)

* Wed Aug 02 2006 Chris Lumens <clumens@redhat.com> 11.1.0.76-1
- Don't raise an exception when someone tries to delete empty space (pjones).
- Fix X ks writing traceback (#201047).
- Add file to describe initrd to fir LPAR installs (katzj, #197773).
- Add libXau for s390 (katzj, #200985).
- Sleep for disks to settle (katzj, #200589).

* Tue Aug  1 2006 Peter Jones <pjones@redhat.com> - 11.1.0.75-1
- Fix iSCSI and MultiPath coexistance
- Don't use mygethostbyname on ipv6 yet (dcantrell)
- Better logging on nfsinstall and kickstart (dcantrell, #195203)
- Remove ddc probing (clumens)

* Mon Jul 31 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.74-1
- Fix method=http vs method=ftp (pjones)
- Various xconfig fixes (clumens, #200755 #200758)
- Fix FTP/HTTP installs by hostname (dcantrel, #200771)
- Fix command-stubs/mknod (#200820)

* Fri Jul 28 2006 Peter Jones <pjones@redhat.com> - 11.1.0.73-1
- Revert DNS changes from yesterday (dcantrel)
- Do the backtrace initialization after analyzing args (katzj)
- Use rhpxl for all X startup tasks (clumens, #199437)
- Create users under the rootpath (patch from Clark Williams)
- Update to use newer dmraid libraries
- Remove /nss usage (dcantrell)

* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.72-1
- Don't allow ipv6-only nfs installs (dcantrel)
- Fix segfault with ksdevice= (pjones, #200451)
- Fix ipv6 ftp installs (dcantrel)
- Ignore options we don't understand to our modprobe to help fix X 
  startup on radeon
- Use rootpath in a few places we had /mnt/sysimage hardcoded
- Fix method=
- Fix translation mismatch

* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.68-1
- And another fix for the RHEL installclass

* Thu Jul 27 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.67-1
- FTP/HTTP ipv6 fixes (dcantrel)
- Better prepboot handling (pnasrat)
- RHEL installclass fixes

* Wed Jul 26 2006 Peter Jones <pjones@redhat.com> - 11.1.0.66-1
- Fix md raid request class
- Check for busybox utilties in /usr/sbin (katzj)
- Be smarter about log files during kickstart (clumens)
- Make multipath and dmraid work
- Add Kannada language (katzj)
- Don't show onboot for rescue mode (katzj)
- Fix AF_INET6 usage when making in6_addr (dcantrell)

* Tue Jul 25 2006 Paul Nasrat <pnasrat@redhat.com> - 11.1.0.65-1
- Fix noipv6 (pjones)
- Fix nodmraid and nompath (katzj)
- Make kickstart inherit from used installclass (katzj)
- Hide rhel installclass by default (katzj)
- Remove gstreamer/gstreamer-tools whiteout (#197139, katzj)

* Mon Jul 24 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.64-1
- Fix build failure (pjones)
- Fix error handling when adding iscsi 
- Make things a bit more flexible based on the install class
- Fix noipv4 (dcantrel)
- Try not to run dmidecode a bazillion times
- Cleanups for various package selection things

* Fri Jul 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.63-1
- Fix serial kickstart installs (clumens)
- Add labels for LVM and RAID (clumens)
- Show preexisting labels when they exist (clumens, #149375)
- Fix traceback for no dosFilesystems (pnasrat)
- Clean up to handle packages in $PRODUCTPATH or $PRODUCTPATH/RPMS
- Various iscsi fixups 

* Thu Jul 20 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.62-1
- Fix drivelist sensitivity when adding devices
- Fix text mode package selection (clumens, #186043)
- Make GMT offset timezones available (clumens, #199076)
- Use attr=2 for xfs per sandeen
- Fix labels of stuff created before install starts (#199605)
- Add Malayalam and Oriya (#197783)
- Fix partitioning (#199459)

* Wed Jul 19 2006 Chris Lumens <clumens@redhat.com> 11.1.0.61-1
- Bring down network interface after fetching files (dcantrel).
- Use dejavu fonts instead of vera (katzj).
- Tweak iSCSI, partitioning, and tasksel UI (katzj, #199451).
- Fix busybox symlinks (katzj, #199463).
- Use reboot instead of shutdown (katzj, #199262).
- Fix DHCP error messages (dcantrel, #199452).

* Tue Jul 18 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.60-1
- Fix va_copy() argument ordering in logMessageV() in loader

* Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.59-1
- Add rudimentary firmware loading support to the loader (pjones)
- Drop some whiteout (pnasrat, #196733)
- Fix exec'ing of symlinks (clumens)
- Add basic multipath support (pjones)
- Basic support for multiple repo setup in graphical mode
- Add missing files (clumens)

* Mon Jul 17 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.58-1
- Clean up noipv4/noipv6 stuff stuff (clumens)
- Fix exception handling for test mode 
- Lots of iscsi changes
- Create mount points for protected partitions (clumens)
- Add multipath kernel modules (pjones)
- Add dhcp libs needed by isys to stage2

* Thu Jul 13 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.57-1
- Fix unknown error on shadow file (#196705, clumens)
- Removed inet_calcGateway (clumens)
- Don't guess gateway address in text network UI (#197578, clumens)
- Change iutil.copyFile calls to shutil.copyfile (clumens)
- Removed DRI enable/disable code from xsetup (clumens)
- Removed copyFile, getArch, memInstalled, and rmrf from iutil (clumens)
- Don't pass command as first argument to subprocess calls (clumens)
- Added network debugging mode for readNetConfig() in loader
- Removed "BOOTP" string from loader network config UI
- Added new dialog for network device config in stage2 (katzj)
- Write gateway address to correct struct in manualNetConfig
- Removed IP_STRLEN macro since that's moved to libdhcp
- Link and compile libisys with libdhcp
- Added back 'confignetdevice' and 'pumpnetdevice' in iutil
- Removed isys_calcNetmask and isys_calcNS (clumens)
- Added xkeyboard-config to fix VT switching (katzj)

* Tue Jul 11 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.56-1
- Many changes and fixes in the loader2 network configuration, both
  dhcp and manual IP entry
- Fix stdin/stdout on VNC shells (clumens)
- Check all bootloader entries for Windows (clumens)
- Set UTC box in text install based on Windows existing or not (clumens)
- Remove standalone argument for rhpxl call (clumens)
- Remove call to deprecated method in yuminstall (clumens)
- Fix group selection traceback in text mode (katzj, #197858)

* Mon Jul 10 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.55-1
- Fix findExistingRoots (clumens, #197900)
- Add smartctl to rescue image (dcantrel, #198052)
- Allow relative --rootpath (markmc, #197669)
- Try to fix up RAID6 (#197844)
- Fix keymap generation with serial console (Alexander Dupuy, #198310)

* Fri Jul  7 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.54-1
- Loader changes to support enabling/disabling IPv4 & IPv6
- Manual IP configuration changes in loader to better support IPv{4,6}
- Let GFS2 command line option work (katzj)
- Rescue mode shell fixes (clumens, #197315)
- Add filesystem label chooser to rescue mode (clumens, #196345)
- Use configured interface for VNC connections (clumens, #197721)
- Init process cleanups
- Log requiring package as well as require name (pnasrat)

* Wed Jul  5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.53-1
- fix typo

* Wed Jul  5 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.52-1
- Add Marathi (#194572)
- Try to let UI fit a little better in LVM dialog (#197334)
- Give a message if we fail to make teh device node (markmc, #197514)
- Fix rescue CD
- Fix minstg2 linking error (#197593)
- Log the transaction error
- gfs2 fixes

* Fri Jun 30 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.51-1
- Remove non-existent paths from LD_LIBRARY_PATH (katzj)
- Calculate IPv4 broadcast address for static IP config
- Started adding debugging mode to init
- Return value checking for exec calls in init and loader
- Do not use wait4()
- WIFEXITED and WEXITSTATUS logic fixes
- Remove runroot stuff from buildinstall (katzj)
- Remove --comp argument from upd-instroot (katzj)
- Do not allow /boot on GFS2 (katzj)
- Move second images to images/ subdirectory (katzj)

* Fri Jun 30 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.50-1
- Rebuild against new libdhcp for fixing more loader segfaults
- Pass the debug log level to libdhcp (markmc, #197175)
- Look for the ks.cfg on all cd drives (notting, #197192)
- Add wlite here, use it (pjones, #196099, #186701)
- Add the start of gfs2 support

* Wed Jun 28 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.49-1
- Fix some memory leaks in the loader (pjones)
- Display fs labels next to rescue choices (clumens, #196345)
- Force graphical mode under vnc (clumens, #190099)
- Fix splitting trees with symlinks (pnasrat, #195240)
- Require system-config-date (clumens, #196452)
- Ensure network UI bits end up written out (clumens, #196756)
- Fix memory corruption in CD install (dcantrel)
- Fix double free with ksdevice=macaddr (dcantrel)
- Fix double free with HTTP/FTP installs (dcantrel, #195749)
- Ensure keyboard layout gets set (clumens, #196466)
- Fix text mode traceback for langs not supported in text 
  mode (clumens, #196615)
- Fix up for yum 2.9.2

* Fri Jun 23 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.48-1
- various pychecker inspired cleanups (clumsn)
- don't try to unmount CDs twice (clumens)
- filter devices without media rather than removable devices (clumens)
- add iscsistart to second stage
- fix pkgorder for yum api changes
- fix manual ip entry (#196154)
- fix tyop in zfcp gui
- fix serial console being propagated to installed system (#196375)

* Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.47-1
- Fix iscsi-related tracebacks (clumens/katzj)
- Remove some hacks that were added for s390 so that we fix them right
- Set MALLOC_CHECK_ and _MALLOC_PERTURB for the loader to help flush 
  out possible problems
- Fix kernel selection on s390 (#196150)
- Fixes for inet_pton usage (pjones)
- Use a longer timeout for dhcp requests

* Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.46-1
- more tweaking of greek lang-table (#193872)
- mark some strings for translation (#194617)
- add back handling of ksdevice=macaddr (dcantrel, #195907) 
- copy libnss_dns* and libnss_files* to stage1 image to try to fix some 
  of the dhcp oddities (dcantrel)
- fix setupPythonUpdates (clumens)
- wait for usb to be stable when reloading (pjones)
- don't pass netlogger output as a format specifier (pjones)
- fix traceback in zfcp_gui (#196097)
- sort drive list more correctly in autopartitioning
- bunch of tweaking to iscsi code
- ensure that xvd devices are sorted as "first" so they're in front 
  of things like iscsi devices

* Fri Jun 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.45-1
- setfiles moved.  more fixing of policy
- Give info on when we add packages as deps (#189050)

* Fri Jun 16 2006 Peter Jones <pjones@redhat.com> - 11.1.0.44-1
- require newer libdhcp
- fix rescue mode console setup (clumens and pnasrat)

* Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.43-1
- Some s390 fixes
- dmraid fixing (pjones)

* Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.42-1
- Ensure all kernel packages end up in pkgorder
- Fix syntax errors in zfcp code
- Fix broadcast address calculation on 64bit machines
- Fix network config on s390
- Some minor iscsi tweaks

* Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.41-1
- fix dep problem

* Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.40-1
- add some more kernels to the pkgorder fun
- don't try to switch cds if we've already got the right one inserted
- libaudit for s390
- need openssh installed when building s390 trees

* Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.39-1
- only select groups which exist

* Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.38-1
- and fix ppc boot.iso (pnasrat)

* Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.37-1
- Remove the step ordering debug commit
- Fix traceback due to new xen kernel names
- Another attempt at s390
- Include gptsync in install image so that mactels will boot

* Wed Jun 14 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.36-1
- new xen kernel names
- more trying to fix s390

* Tue Jun 13 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.34-1
- Fix logging segfaults in loader on x86_64
- More release notes viewer fixes

* Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.33-1
- Fix text mode package selection (clumens)
- Fix IP editing (clumens)
- Fix segfault on x86_64 dhcp (dcantrel)
- Filter out sitX devs (dcantrel)
- More release notes fixes (dcantrel)
- More pkgorder fixage 

* Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.32-1
- fix ppc images

* Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.31-1
- Fix loader sigsegv (dcantrel, #194882)
- Fix so we don't require yum.conf (clumens, #194987)
- Fix s390 tree
- Fix pkgorder for new yum API
- Fix release notes (dcantrel)
- More api fixing (clumens/nasrat)

* Mon Jun 12 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.30-1
- make loader flags global (dcantrel)
- fixups for yum 2.9, pull in yum-metadata-parser

* Sat Jun 10 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.29-1
- Fix syslinux requires
- Fix autopartitioning on the mactels
- Close leaky fd in reiserfs label reading code so that partitioning 
  succeeds in that case

* Fri Jun  9 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.28-1
- fix dep problem (clumens)
- initial pass at support for the intel-based macs
- more trying to get s390 trees so they work
- more ipv6 (dcantrel)
- simplify error handling and return values in autopart code (clumens)
- fix going back in a few places (clumens)
- enable user_xattrs and acls by default

* Thu Jun 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.26-1
- Revert anaconda-runtime files fix.

* Thu Jun 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.25-1
- More IPv6 fixes (dcantrell).
- Add ipv6 kernel module to image (dcantrell).
- Add noipv6 installer flag (dcantrell).
- Add dosfstools to requires (katzj).
- Fix anaconda-runtime spec file segment (#189415, #194237).
- Better partitioning error messages (#181571).
- Warn if non-linux filesystems can't be mounted on upgrade (#185086).
- Simplify IP address widgets for IPv6 support.
- Use libdhcp instead of pump, fix requires (dcantrell).

* Tue Jun  6 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.24-1
- Read from right stdin for kickstart scripts (Hannu Martikka, #192067)
- Fix ip addr getting on 64bit boxes (clumens, #193609)
- Don't specify window position (clumens)
- Handle PE sizes we don't expect in the UI (clumens, #185272)
- Rescue mode fixes (clumens)
- Remove pointless back button (clumens, #187158)
- Add user-agent to loader HTTP requests (clumens, #98617)
- Use IP instead of hostname if needed (clumens, #191561)
- Write out ipv6 localhost (clumens, #44984)
- Add greek (#193872)
- Fix s390x images (#192862)
- Fix rhpxl location (clumens)

* Tue May 30 2006 Chris Lumens <clumens@redhat.com> 11.1.0.23-1
- Require glib2-devel.
- Look for libglib in the right place on 64-bit machines.

* Tue May 30 2006 Chris Lumens <clumens@redhat.com> 11.1.0.22-1
- Fix going back in the UI.
- Don't try to mount protected partitions twice.
- Hook up new netlink code, debugging (dcantrell).
- Package is actually named pyobject2 (katzj).

* Thu May 25 2006 Chris Lumens <clumens@redhat.com> 11.1.0.21-1
- Fix required CD dialog (pnasrat).
- More anaconda class in the interfaces (dcantrel).
- More netlink helper functions (dcantrel).
- Don't allow logical volumes to be smaller than the volume group's PE
  size in interactive installs (#186412).
- Make error handling for missing packages more robust and allow retrying
  (clumens, pnasrat, #183974).
- Fix hard drive installs (#185292, #187941).
- Don't always show partition review dialog in text installs.
- Fix text-mode installs by adding more stuff to minstg2.img (#191991).
- Skip netlink messages with invalid ARP header (dcantrel).
- Add pygobject to install images (katzj).

* Wed May 24 2006 David Cantrell <dcantrell@redhat.com> 11.1.0.20-1
- Added Netlink helper functions to libisys.a
- Do not pop wait window twice in writeBootloader (clumens)
- For kickstart installs only: Do not allow logical volumes to be smaller
  than the volume group's PE size (#186412, clumens)
- initrd fixes to account for glib2 library movement (clumens)

* Tue May 23 2006 Chris Lumens <clumens@redhat.com> 11.1.0.19-1
- Fix unicode stubs (pjones).
- Fix libdir on ppc64 (katzj).

* Tue May 23 2006 Chris Lumens <clumens@redhat.com> 11.1.0.18-1
- Add slang-devel build requirement.

* Tue May 23 2006 Chris Lumens <clumens@redhat.com> 11.1.0.17-1
- Display full package name in log (pnasrat, #189308).
- Add flags for multipath (pjones).
- Allow protected partitions to be mounted (#105722).
- Fix pkgorder traceback.

* Fri May 19 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.16-1
- Added asix driver (pjones)
- Fix i18n build

* Fri May 19 2006 David Cantrell <dcantrell@redhat.com> - 11.1.0.15-1
- Fix indendation error in handleRenderCallback() that caused hang
- Use gobject.threads_init() model
- Remove gtk.threads_enter()/gtk.threads_leave() wrappers
- Disk and filesystem scanning fixes (clumens)

* Thu May 18 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.14-1
- Few more liveCD tweaks
- And clean up the ppc64 tree a little
- Enable ipv6 by default (pnasrat)
- Fix a traceback in finding root part (clumens)

* Wed May 17 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.13-1
- Fix image building typo
- Remove some dead code (clumens, dcantrel)
- More thread fixing (dcantrel)
- Fix rescue mode (clumens)
- Fix upgrades (clumens)
- Don't try to mount protected partitions on hd ugprades (clumens)
- Hook copyExtraModules back up (clumens, #185344)
- Don't modify the main fs for user/password info on --rootpath install
- Fix kickstart bootloader install
- Some fixes for live CD 

* Tue May 16 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.12-1
- Make mousedev loading less verbose for built-in case (#191814) 
- Ellipsize text (roozbeh, #191844)
- Some more threads for release notes (dcantrel)
- Remove lots of help related stuff (clumens)
- Handle empty drive lists better looking for usb-storage and firewire (pjones)
- Try to make ppc64 trees installable
- Lots of cleanup to the scripts dir.

* Mon May 15 2006 Chris Lumens <clumens@redhat.com> 11.1.0.11-1
- Fix anaconda class typos (katzj).
- Unmount media after running post scripts (#191381).
- Fix VNC installs.
- Support --mtu= in kickstart files (#191328).
- Rework release notes viewer (dcantrel).
- Fix upgrade traceback.
- Fix console keymaps (pjones, #190983, #191541).
- Allow USB and firewire installs, with a warning (pjones).

* Mon May 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.10-1
- s390x build fix.

* Mon May 08 2006 Chris Lumens <clumens@redhat.com> 11.1.0.9-1
- Fix cmdline installs (clumens, pnasrat).
- Enable multirepo support in kickstart (clumens, pnasrat).
- Begin IPv6 preparations (dcantrel).
- More release notes viewer fixes (dcantrel).

* Thu May  4 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.8-1
- and fix the build

* Thu May 04 2006 Paul Nasrat <pnasrat@redhat.com> - 11.1.0.7-1
- class Anaconda (pnasrat, clumens)
- User/service kickstart handlers (clumens)
- Don't include kernel fs headers (katzj)

* Mon May  1 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.6-1
- fix build

* Mon May  1 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.5-1
- Fix loopback mounted url installs (dcantrel, #189097, #183999)
- Different message during upgrade post scripts (clumens, #189312)
- Remove obsolete startx stub (clumens)
- Default UTC box to checked if we don't find a windows partition (clumens)
- Fix manual IP config (clumens)
- Don't change timezone in rootpath mode (Jane Dogalt, #185930)
- Don't symlink things that don't exist 
- Don't change network config in rootpath mode (#185930)
- Warn on lack of space on upgrade (clumens, #189022)
- Emit --useexisting and --noformat in anaconda-ks.cfg (clumens, #189123)
- Handle NFS mount options (Dave Lehman, #168384)
- Do firewall and auth config in rootpath mode
- Make bootloader code handle live cd case

* Tue Apr 18 2006 Chris Lumens <clumens@redhat.com> 11.1.0.4-1
- Pass version to mkstamp for discinfo files (jkeating).
- Fix FTP method handling.
- Don't download RPMs twice on FTP and HTTP methods (pnasrat, #183654).
- Use libuser for setting root password.
- Fix up rescue image script problems (dcantrel, #188011).

* Tue Apr 04 2006 Chris Lumens <clumens@redhat.com> 11.1.0.3-1
- Fix up for rhpxl Modes changes.
- Fix handling of video driver if there's no list of drivers available.
- Add modes files and libuser to images.
- Allow updates to contain entire directories that may be missing.
- Clean up deprecation warnings.

* Tue Mar 28 2006 Chris Lumens <clumens@redhat.com> 11.1.0.2-1
- Remove reference to pythondeps.

* Tue Mar 28 2006 Chris Lumens <clumens@redhat.com> 11.1.0.1-1
- Prompt for reformatting ancient swap partitions (dcantrel, #122101)
- Fix lots of deprecation warnings (dcantrel)
- Check for suspend signatures in swap (dcantrel, #186018)
- Support logging command in kickstart
- Clean up URLs we try to fetch in the loader
- Fix SELinux conditional inclusion (pjones)
- Remove customClass
- Always ignore disks listed in ignoredisks (#186438)
- Fix loader segmentation fault (#186210)
- Reiser fs label avoidance (dcantrel, #183183)
- Remove traceonly mode
- Add rhpl to minstg2.img (#185840)
- Remove lots of unneeded code in isys, iutil, and elsewhere
  (clumens, dcantrel, pnasrat)

* Tue Mar 21 2006 Jeremy Katz <katzj@redhat.com> - 11.1.0.0-1
- Fix text for rescue images
- Fix some file contexts (#182252)
- Update for new xen kernel names
- Don't try to download package being erased (clumens, #184531)
- Don't show group selection on ks upgrade (pnasrat, #184528)
- Ignore conflicts on upgrade (pnasrat, #184461)
- Don't traceback trying to mount auto fs's (clumens, #182730)
- String fixes (clumens, #181916)
- rootpath fix (clumens, #185172) 
- Prompt for missing images on hd installs (clumens, #185274)
- Don't clobber network on upgrades (pnasrat, (#183203)
- Fix some syntax errors (#185275)
- Cap pe size at 128M (#185272)
- Conditionalize selinux (msw)
- Remove some obsolete code (msw, katzj)
- Ensure we don't ask for no longer needed cds if packages are 
  deselected (pnasrat, #185437) 
- Remove amharic and thai since we don't have fonts (clumens)
- Let's try not doing traceonly and see the size difference for minstg2.img
- Fix i5 (pnasrat, #186070)
- Misc cleanups to iutil (clumens)
- Use system-config-date for text-mode timezone too (clumens)

* Mon Mar  6 2006 Jeremy Katz <katzj@redhat.com> - 10.92.17-1
- fix traceback in size check
- disable size check on upgrade (clumens, #184112)
- try to catch more failures to read repo metadata (clumens)
- only do runlevel 5 if graphical install (dcantrel, #184013)
- adjust to new xen kernel package naming
- add 'vesa' flag to force the use of the vesa driver
- more meaningful error messages on conflicts (pnasrat)
- ensure some dirs are labelled correct (#182252)

* Fri Mar  3 2006 Paul Nasrat <pnasrat@redhat.com> - 10.92.16-1
- Support Everything/globs in ks (pnasrat, clumens, #177621)
- Allow changes if not enough disk space (clumens, #183878)
- Set controlling tty in rescue mode (dcantrel,#182222)
- Sort list of languages (dcantrel)

* Fri Mar  3 2006 Jeremy Katz <katzj@redhat.com> - 10.92.15-1
- conditional code is now in yum (pnasrat)
- sort network devices smarter (clumens, #166842)
- select needed fs entries (#183271)
- more serbian fixes (#182591)

* Tue Feb 28 2006 Jeremy Katz <katzj@redhat.com> - 10.92.14-1
- fix traceback in pkgorder
- don't display xen 
- make partitioning type combo wider (dcantrel)
- handle Serbian locales properly (#182591)

* Mon Feb 27 2006 Jeremy Katz <katzj@redhat.com> - 10.92.12-1
- Dependency whiteout to fix ordering (clumens)
- Fix swap on RAID in kickstart (#176537)
- Add keymap overrides
- Fix segfault with USB CD/DVD drives (#182589)

* Fri Feb 24 2006 Jeremy Katz <katzj@redhat.com> - 10.92.11-1
- fix traceback with segv handler (pjones)
- various language fixes (dcantrel)
- be clearer about askmethod (#182535)

* Thu Feb 23 2006 Jeremy Katz <katzj@redhat.com> - 10.92.10-1
- more bogl removal (dcantrel)
- make the exception dumping less braindead about things we don't 
  want dumped (clumens)
- add backtrace handler to anaconda (pjones)
- fix warnings with new yum in pkgorder
- make conditional packages on deps work (pnasrat)
- suppress some warnings (dcantrel)
- text mode language fixes (dcantrel)

* Thu Feb 23 2006 Jeremy Katz <katzj@redhat.com> - 10.92.9-1
- Fix text mode traceback (dcantrel)
- Skip a few more things in traceback dumps
- Attempt to fix pkgorder so that we require less CDs for "normal" installs

* Wed Feb 22 2006 David Cantrell <dcantrell@redhat.com> 10.92.8-1
- Removed obsolete bogl code (katzj)
- Removed unused code in upgrade.py (pnasrat)
- Check version and packages to upgrade (pnasrat)
- Removed old IDE RAID code from isys (katzj)
- Various traceback fixes
- Don't use underline in device names for hotkeys in bootloader gui (pjones)
- Mount /selinux in rescue mode (katzj)

* Tue Feb 21 2006 Chris Lumens <clumens@redhat.com> 10.92.7-1
- Give Language a default display_mode (dcantrel)
- Get languages that need a default from localeInfo (dcantrel)

* Tue Feb 21 2006 Chris Lumens <clumens@redhat.com> 10.92.6-1
- Set a default language on text mode CJK installs (dcantrel, #180417)
- Fix case-sensitive matching of devices (notting, #182231)
- Be smarter about required media (pnasrat)
- Set MTU in the loader (katzj)
- Add dev package to remove blacklist (katzj, #181593)
- Try to mount device as ext3 in hard drive installs (katzj)
- Sanity check unknown package & group names (pnasrat)
- Reboot after writing exception dump (#181745)
- Confirm in interactive kickstart installs (#181741)
- Fix showing kickstart package selection again
- Don't traceback if we find a %%include file that doesn't exist yet (#181760)
- Skip partitioning if logvol or raid is given in ks (#181806)
- Initialize UTC checkbox (#181737)

* Tue Feb 14 2006 Jeremy Katz <katzj@redhat.com> - 10.92.5-1
- Fix traceback in language group selection
- No remote save traceback button if not network (clumens)
- More fixes for minstg2.img (clumens)
- Disable next/back while installing packages (dcantrel)
- Bump minimum amounts for install, graphical and early swap
- Enable Arabic for text mode (notting)

* Tue Feb 14 2006 Jeremy Katz <katzj@redhat.com> - 10.92.4-1
- improve globbing for xen guest kernels
- Don't add a kernel if one is already selected.

* Mon Feb 13 2006 Jeremy Katz <katzj@redhat.com> - 10.92.3-1
- Don't debug log about missing help text (clumens)
- Reduce deps for pkgorder
- Updated kickstart docs (clumens)

* Mon Feb 13 2006 Jeremy Katz <katzj@redhat.com> - 10.92.2-1
- more x86_64 xen guest fixing

* Mon Feb 13 2006 Jeremy Katz <katzj@redhat.com> - 10.92.1-1
- try to fix x86_64 xen guest

* Sun Feb 12 2006 Jeremy Katz <katzj@redhat.com> - 10.92.0-1
- Fix length of package name in text install (dcantrel, #180469)
- Various minor cleanups
- Support conditional packages for langsupport (pnasrat, #178029)

* Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 10.91.19-1
- Fix loader typo.

* Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 10.91.18-1
- Add iscsi support (Patrick Mansfield <patmans AT us.ibm.com>)
- Allow retry if CD image isn't found on NFS server (#109051, dcantrel)
- Fix location of video modes data files
- Add x86_64 kernel-xen-guest (katzj)
- Better loader debugging support (katzj)

* Wed Feb 08 2006 Paul Nasrat <pnasrat@redhat.com> - 10.91.17-1
- Handle bind mounts correctly (#160911, dcantrel)
- Upgrade package black list and make upgrades work
- Disable repo conf for now 
- loader debuginfo
- kickstart - suggest fix (#174597, clumens)

* Mon Feb  6 2006 Jeremy Katz <katzj@redhat.com> - 10.91.16-1
- fix writing out instdata for root password, etc (#180310)

* Mon Feb  6 2006 Jeremy Katz <katzj@redhat.com> - 10.91.15-1
- Remove debugging code that broke showing the Xen option on the task screen
- More sqlite files (#171232)
- Fix traceback for new method pirut depends on
- Ensure /dev/root exists (Patrick Mansfield)
- Force buttonbar on main screen active in congrats (dcantrel, #179924)
- Always pass loglevel (dcantrel)
- BR libXt-devel (dcantrel)
- Don't try to make /dev/mapper devs (pjones)
- More consistency in dev naming for dmraid (pjones)
- Start of iscsi patches (Patrick Mansfield)
- Fix pre-existing RAID chunksize reading (#178291)

* Fri Feb  3 2006 Jeremy Katz <katzj@redhat.com> - 10.91.14-1
- Handle reiserfs labels (dcantrel, #125939)
- Skip more steps in root mode (Jasper Hartline)
- Update driver list for current kernels
- Don't put mapper/ in the swap label (pjones)
- Set file contexts on blkid.tab* (pjones)
- Increase logical volume label field to 32 chars (dcantrel, #174661)
- More exception trimming (clumens)
- Fix args to writeConfiguration (clumens, #179928)
- Fix format strings in label device, proper max for swap labels (pjones)
- Make task definition more dynamic
- Add a hack to remove the xen group if we're running on xen (#179387)

* Thu Feb  2 2006 Jeremy Katz <katzj@redhat.com> - 10.91.13-1
- Speed up timezone screen (clumens)
- Make kickstart interactive mode work (clumens)
- Fix package selection screen (clumens)
- Add sqlite to traceonly to help http/ftp memory usage
- Write out repo config (pnasrat)
- Fix colors on boot splashes (#178033)
- Select lang groups before going to the screen (#178673)
- Clean up handling of grub vs no boot loader (#159658)

* Thu Feb  2 2006 Jeremy Katz <katzj@redhat.com> - 10.91.12-1
- improves %%packages section some more (clumens)
- give a better error on kickstart lvm syntax errors (clumens)
- display vncconnect error messages (clumens)
- make swap labels shorter for cciss (dcantrel, #176074)
- Make /dev/root for mkinitrd (#171662)
- Use pirut stuff for graphical group selection

* Tue Jan 31 2006 Paul Nasrat <pnasrat@redhat.com> - 10.91.11-1
- Factor some yum stuff into yum
- Text Clarification (#178105)
- Don't use install only pkgs (#179381)
- Various dmraid and bootloader fixes (pjones)

* Tue Jan 31 2006 Peter Jones <pjones@redhat.com> - 10.91.10-1
- add dmraid device renaming support for kickstart (pjones)
- fix paths for expat (clumens)
- remove unused functions (clumens)

* Mon Jan 30 2006 Jeremy Katz <katzj@redhat.com> - 10.91.9-1
- Skip partition and bootloader screens if requested for textmode 
  (dcantrel, #178739)
- Don't create /etc/X11/X symlink (dcantrel, #179321)
- Add ethiopic fonts
- Fix traceback in upgrade examine (clumens)
- Free up depsolving storage (pnasrat)
- Fix group selection screen that I mistakenly removed (oops)
- Remove some dead pieces (pnasrat, katzj)

* Thu Jan 26 2006 Jeremy Katz <katzj@redhat.com> - 10.91.8-1
- Remove rpm whiteout (clumens, #178540)
- Fix text in upgrade continue button (dcantrel, #178096)
- Make %%packages in anaconda-ks.cfg shorter (pnasrat)
- Fix text-mode drawing (clumens, #178386)
- Release notes viewer fixes (dcantrel)
- Reset -> reboot (dcantrel, #178566)
- Create ia64 images again (prarit, #175632)
- Make sure boot loader screen gets skipped (clumens, #178815)
- Don't ask about VNC in kickstart
- Don't ask for keyboard under Xen if it fails
- Add more basic "task" selection screen
- Text mode group selection is better now
- Remove some dead code
- Require squashfs-tools  (clumens)
- Fix rescue mode (dcantrel)
- Don't have devices disappear out from under us (Patrick Mansfield)

* Fri Jan 20 2006 David Cantrell <dcantrell@redhat.com> - 10.91.7-1
- Save state when moving back to "upgrade or install" window (#178095).
- Eject CD when in kickstart and given --eject parameter (clumens, #177554).
- Translate combo box and comments (clumens, #178250).
- Disable backend debugging mode for writeKS().
- Added a PYTHONSTARTUP file to autoload readline, etc. (pjones).
- Write %%packages section in template kickstart file (clumens, pnasrat).

* Wed Jan 18 2006 David Cantrell <dcantrell@redhat.com> - 10.91.6-1
- i18n fixes (katzj)

* Wed Jan 18 2006 David Cantrell <dcantrell@redhat.com> - 10.91.5-1
- i386 and ppc rescue image script fixes (jkeating)
- fix kickstart package deselection (clumens, #177530)
- fix header download issues (pnasrat, #177596)
- interface improvements on scp exception dialog (clumens, #177738)
- rescue image additions (pjones, dcantrell, #155399)
- misc kickstart fixes (clumens, #178041, #177519)
- fix fetching repo data on http installs (clumens, #178001)
- add gdk-pixbuf handler for XPM images (#177994)
- timezone screen fixes (clumens, #178140)
- add LSI mptsas driver to module-info (#178130)
- dmraid fixes for kickstart installs (pjones)
- add sr@Latn to lang-table (katzj, #175611)

* Wed Jan 11 2006 Jeremy Katz <katzj@redhat.com> - 10.91.4-1
- Add xen kernels

* Wed Jan 11 2006 Jeremy Katz <katzj@redhat.com> - 10.91.3-1
- remove some unneeded bits from the ppc boot.iso to make it smaller
- fix some text display (notting, #177537)
- Misc kickstart fixes (clumens)

* Tue Jan 10 2006 Jeremy Katz <katzj@redhat.com> - 10.91.2-1
- fix hard drive installs (pjones)

* Tue Jan 10 2006 Jeremy Katz <katzj@redhat.com> - 10.91.1-1
- more ppc rescue image (jkeating)
- actually commit the dmraid fix (pjones)

* Mon Jan  9 2006 Jeremy Katz <katzj@redhat.com> - 10.91.0-1
- tweaked selection stuff a little to be the same code as pirut
- tweak exception window to have an image and be better sized (dcantrell)
- write out RAID device name (clumens)
- scroll group list properly (dcantrell)
- fix ppc rescue image (jkeating)
- dmraid detection fix (pjones)

* Fri Jan  6 2006 Jeremy Katz <katzj@redhat.com> - 10.90.25-1
- no sr@Latn yet since the po files haven't been added

* Fri Jan  6 2006 Jeremy Katz <katzj@redhat.com> - 10.90.24-1
- move a11y stuff earlier
- fix the text mode progress bar (pnasrat, #176367)
- fix ppc drive unreadable warnings (#176024)
- add serbian locales (#175611)
- preserve review checkbox between combo box selections (dcantrell, #176212)
- quote ethtool args (#176918)
- various spacing cleanups (dcantrell)
- a few fixes to the group selector (dcantrell)
- don't try to make the timezone widget bigger than screen (clumens, #176025)
- fix rescue mode traceback (clumens)
- fix message wording on package retry (clumens, #155884)
- quiet debug spew in anaconda.log (clumens, #171663)
- add ppc rescue script from jkeating (#177003)

* Tue Dec 20 2005 Jeremy Katz <katzj@redhat.com> - 10.90.23-1
- more pkgorder fixes (pnasrat)
- fix some debug spew (notting)
- segfaults in the loader should at least give us a stacktrace to work from
- fix some padding on the network screen

* Mon Dec 19 2005 Jeremy Katz <katzj@redhat.com> - 10.90.22-1
- add more encoding modules to traceonly (clumens, #175853)
- Fix text installs (pnasrat, #175773)
- Fix for yum API changes (pnasrat)
- Don't install the smp kernel even if NX is available
- Adjust to be more dynamic about colors with syslinux-splash's
- Use the selected language for default keyboard layout (clumens, #172266)
- Better naming for psuedo-filesystems in /etc/fstab (dcantrel, #176149)
- Clean up image handling for new graphics
- Don't do the splashscreen stuff anymore.  If the window is too slow to 
  appear, we should fix that instead

* Thu Dec 15 2005 Jeremy Katz <katzj@redhat.com> - 10.90.21-1
- fix pkgorder for new group code
- fix ub vs usb-storage
- remove some redundant code (clumens)

* Thu Dec 15 2005 Jeremy Katz <katzj@redhat.com> - 10.90.20-1
- Fixes for new timezone stuff (pnasrat)
- Fix transaction sorting (pnasrat)
- Enable dmraid by default

* Wed Dec 14 2005 Chris Lumens <clumens@redhat.com> 10.90.19-1
- Use system-config-date for timezone selection UI (#155271).
- Work on vnc+shell spawning (dcantrell).
- Whiteout fixes (pnasrat, katzj).
- Progress bar fixes (katzj).
- Depsolving speedups (katzj).

* Mon Dec 12 2005 Jeremy Katz <katzj@redhat.com> - 10.90.18-1
- Handle monitor configuration in kickstart via "monitor" keyword instead of 
  "xconfig" consistently (clumens)
- Fix joe as nano (#175479)
- Try to get hard drive installs working again
- First steps towards using ub
- Fix depcheck progress bar to actually give progress.  

* Sun Dec 11 2005 Peter Jones <pjones@redhat.com> - 10.90.17-1
- Full dmraid support.  (still disabled by default)

* Sat Dec 10 2005 Jeremy Katz <katzj@redhat.com> - 10.90.16-1
- Ensure upgrades to depsolve and remove db locks (pnasrat)
- Tweak for improved and sortable groups/categories
- Put back basic text-mode package selection (#175443)

* Thu Dec  8 2005 Jeremy Katz <katzj@redhat.com> - 10.90.15-1
- Fix various typos in the new group selection code (clumens)
- Support bytesPerInode on RAID (Curtis Doty, #175288)
- Stub some more for the loader to fix line-drawing chars again
- Handle file read failures better (pnasrat)
- Initial support for upgrades again (pnasrat)
- Minor padding tweaks to the UI

* Thu Dec  8 2005 Jeremy Katz <katzj@redhat.com> - 10.90.14-1
- Fix up for moved x locale data
- Remove vnc hack now that VNC knows where to look for fonts
- Don't go to text mode for no mouse (notting)
- Update to work with yum 2.5.0 cvs snap
- New package selection code
- Add new chinese font back now that we're using squashfs (#172163)
- The return of locale-archive usage

* Mon Dec 05 2005 Chris Lumens <clumens@redhat.com> 10.90.13-1
- Reword media check dialog (dcantrell, #174530).
- gcc41 compile fixes (pjones).
- Add genhomedircon, setfiles, and /etc/shells for selinux.

* Thu Dec  1 2005 Jeremy Katz <katzj@redhat.com> - 10.90.12-1
- some release notes viewer fixing (dcantrell)
- allow %%pre scripts in an %%include (clumens, #166100)
- fix the squashfs stuff to actually work
- hack around slang not initializing utf8 mode so that we have line 
  drawing chars (#174761) 

* Thu Dec  1 2005 Jeremy Katz <katzj@redhat.com> - 10.90.11-1
- reworded media check prompt (dcantrell, #174472)
- let's try squashfs... 

* Wed Nov 30 2005 Jeremy Katz <katzj@redhat.com> - 10.90.10-1
- Don't split transactions on not split install types (pnasrat, #174033)
- Fix None vs "" for vncpasswd in test mode (Patrick Mansfield)
- Make release notes viewer as large as the screen (dcantrell)
- Allow system-logos instead of fedora-logos for the package name
- Try to build SELinux policy so that things work with selinux 
  2.x policy (#174563)

* Tue Nov 29 2005 Chris Lumens <clumens@redhat.com> 10.90.9-1
- Another stab at including email.Utils everywhere (#173169).
- Remove unneeded isys.sync calls (pjones).
- Fix /dd.ig in initrd (Dan Carpenter).
- Report no DNS servers if a hostname used (pnasrat, #168957).
- Fix ppc32 from CD (katzj, #174135).
- Don't look for hdlist when booting CD1 and using FTP/HTTP (katzj).
- Fullscreen release notes viewer (dcantrell).

* Mon Nov 21 2005 Jeremy Katz <katzj@redhat.com> - 10.90.8-1
- don't load pcspkr on ppc to avoid crashes on the g5

* Sun Nov 20 2005 Jeremy Katz <katzj@redhat.com> - 10.90.7-1
- fix backwards whiteout handling (#173738)
- fix bug in depsolver which would bring in a package for an already 
  satisfied dep

* Sat Nov 19 2005 Jeremy Katz <katzj@redhat.com> - 10.90.6-1
- fix removal of packages to not traceback
- fix anaconda.dmraid logging (clumens)

* Fri Nov 18 2005 Paul Nasrat <pnasrat@redhat.com> - 10.90.5-1
- Disable sqlite cache for pkgorder
- Fix for new selinux context types (katzj)
- vnc parameter handling (clumens)
- Add ellipsis (notting)

* Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.4-1
- don't traceback on unresolvable deps (#173508)
- fix pkg.arch for %%packages
- another hack for vnc
- debug prints to log.debug (#173533)

* Thu Nov 17 2005 Paul Nasrat <pnasrat@redhat.com> - 10.90.3-1
- Add group processing to buildinstall
- Add createrepo requires

* Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.2-1
- more pkgorder fixing (clumens)
- fix cd installs to not fall into the "not a real install method" case :)

* Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.1-1
- add handling for dmraid/nodmraid
- fix removals of packages which have already been removed
- turn off dmraid by default
- fix pkgorder (clumens)

* Thu Nov 17 2005 Jeremy Katz <katzj@redhat.com> - 10.90.0
- more tree build fixes
- fix group removal 
- non iso install fixes (clumens)
- pkgorder fixing (clumens)
- dmraid support (pjones)
- crude language support group hack

* Wed Nov 16 2005 Chris Lumens <clumens@redhat.com> 10.89.20.1-1
- Fix indentation.

* Wed Nov 16 2005 Paul Nasrat <pnasrat@redhat.com> - 10.89.20-1
- Restore YumSorter for pkgorder
- Single anaconda installer yum class
- Switching CD method 

* Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 10.89.19.1-1
- be explict about pango-devel being needed

* Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 10.89.19-1
- Fix vt switching with modular X
- Lots of CD install fixes (clumens, pnasrat)
- Clean up exception dump stuff
- Some more steps towards dm-raid support (pjones)
- Log info messages

* Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 10.89.18-1
- remove new chinese font since its too big for cramfs (#172163)
- Fix typo in trimpciids (notting)
- Don't build locale-archive for now since its too big for cramfs

* Tue Nov 15 2005 Jeremy Katz <katzj@redhat.com> - 10.89.17-1
- missed an x lib somehow

* Tue Nov 15 2005 Jeremy Katz <katzj@redhat.com> - 10.89.16-1
- lots of updates for modular X
- allow a shell on tty1 if using vnc
- various fixes for cd/install method stuff (pnasrat, clumens, katzj)
- install smp kernel if NX present (#172345)
- work with multiple videoaliases files (notting)

* Tue Nov 15 2005 Jeremy Katz <katzj@redhat.com> - 10.89.15-1
- fix up for new selinux policy

* Mon Nov 14 2005 Paul Nasrat <pnasrat@redhat.com> 10.89.14-1
- Move sorter for CD/pkgorder into yuminstall
- Add support for ub devices (katzj)

* Mon Nov 14 2005 Paul Nasrat <pnasrat@redhat.com> 10.89.13-1
- Reinstate image based install methods (excluding hd for now)
- Clean up install method classes
- device-mapper support (pjones)
- Log warning on no network link (katzj)
- Clean up error handling for pkgorder (clumens)

* Fri Nov 11 2005 Chris Lumens <clumens@redhat.com> 10.89.12-1
- Add buildreq for yum (katzj)
- Fix loader log levels (katzj)
- Add more libraries for dogtail (katzj)

* Thu Nov 10 2005 Jeremy Katz <katzj@redhat.com> - 10.89.11-1
- Fix stdout logging to print stuff (clumens)
- Start of some sorting/splitting stuff for CDs (pnasrat) 
- Make missing modules lower priority
- Look for xen devices
- Add some of the necessary requirements to try to get dogtail working (#172891)

* Thu Nov 10 2005 Chris Lumens <clumens@redhat.com> 10.89.10-1
- Add e2fsprogs-libs to the install images.

* Wed Nov  9 2005 Jeremy Katz <katzj@redhat.com> - 10.89.9-1
- Create interface earlier to prevent kickstart traceback (clumens)
- Logging fixes, everything should be in the logfile (clumens)
- Get rid of help which is irrelevant
- Clean up loader log levels

* Tue Nov  8 2005 Jeremy Katz <katzj@redhat.com> - 10.89.8-1
- Fix backwards message on upgrade (#172030)
- New chinese fonts (#172163)
- Don't try to update a progress window that's already popped (clumens, #172232)
- Fix snack deprecation warnings (clumens, #172232)
- Get rid of some cruft in traceback dumps (clumens)
- Add a method to check for "real" consoles, add xen console to the list 
  of weird stuff
- Basic support for transaction errors other than tracebacks...
- Fix a kickstart traceback for authconfig
- Add xenblk and xennet to module-info

* Mon Nov  7 2005 Jeremy Katz <katzj@redhat.com> - 10.89.7-1
- More detailed error logging (pnasrat)
- Add bnx2 driver (pjones)
- Various kickstart fixes (clumens, #172356)
- Fix shadow password convert (clumens)

* Fri Oct 28 2005 Jeremy Katz <katzj@redhat.com> - 10.89.6-1
- Make char devices slightly later to avoid tracebacks during tree compose
- Extract kernel-xen-guest for vmlinuz and initrd in images/xen
- Kickstart fix (clumens)
- Add some support for xen xvd blockdevs
- Select kernel-xen-guest as appropriate
- Ensure proper arch of glibc is selected (#171997)
- Select all proper multilib parts of a package (#171026) 

* Thu Oct 27 2005 Jeremy Katz <katzj@redhat.com> - 10.89.5-1
- Another fix for kickstart + help hiding
- Fix finding of kernel type
- Make synaptics device nodes before X starts (clumens)
- Use nofb by default
- Add pycairo stuff (clumens)
- Set minimum displayed log level to WARNING, everything is still in 
  the logfiles (clumens)
- Try to clean up syslog (clumens)
- Allow installation of hypervisor + xen host kernel by booing with 'xen0' on 
  the installer command line
- Fix x86_64 traceback

* Mon Oct 24 2005 Jeremy Katz <katzj@redhat.com> - 10.89.4-1
- changed the wrong field in lang-table

* Mon Oct 24 2005 Jeremy Katz <katzj@redhat.com> - 10.89.3-1
- don't do xsetroot anymore
- allow retrieving updates.img with 
  updates=(http|ftp)://host/path/to.img (clumens)
- some upd-instroot fixes (clumens)
- only get yum filelists when needed (pnasrat)
- clean up exception scp'ing (clumens)
- don't write empty authconfig line (clumens, #171558)
- make kickstart errors report line number of error (clumens)
- select most appropriate kernel (kernel-smp, etc)
- ensure we get a boot loader package installed
- minor fix for ia64 image creation
- tweaks to backend setup 
- don't have help as visible in the glade file so we don't have the pane 
  appear when doing a kickstart install
- use pl2 keymap for Polish (3171583)
- allow passing product information with env vars to help live cd

* Thu Oct 20 2005 Jeremy Katz <katzj@redhat.com> - 10.89.2-1
- fix references to second stage module stuff that caused breakage

* Thu Oct 20 2005 Jeremy Katz <katzj@redhat.com> - 10.89.1-1
- fix for mkcramfs -> mkfs.cramfs
- Use minstg2.img instead of netstg2.img/hdstg2.img in the loader

* Thu Oct 20 2005 Jeremy Katz <katzj@redhat.com> - 10.89.0-1
- Fix SELinux policy loading (clumens)
- Fix translation import for kickstart (laroche)
- Add yumcache (pnasrat)
- Upgrade blacklisting (pnasrat)
- Clean up exception copying (clumens)
- Improve text mode exception dialog too (clumens)
- Don't allow bootable partitions on XFS
- Some speed improvements, progress bars, etc for package stuff (pnasrat)
- Clean up image creation, move all modules to initrd.img.  

* Fri Oct 14 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.32-1
- fix typo causing traceback (pnasrat)
- Create character device nodes to fix synaptics (clumens)

* Wed Oct 12 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.31-1
- Handle missing metadata (pnasrat)
- Give indication of kickstarts scriptlets running (#170017)
- Fix a traceback with RAID (#170189)
- Fix an FTP install traceback (#170428)
- Clean up floppy stuff (clumens)
- Clean up some warnings (clumens)
- Make IDE device node creation cleaner
- Change location of modes data files

* Mon Oct 10 2005 Chris Lumens <clumens@redhat.com> 10.3.0.30-1
- Fix requirements for s390, s390x, ppc64.
- Fix typo in scripts/upd-instroot.

* Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 10.3.0.29-1
- Deal with new load_policy. (katzj)
- Create an SELinux config. (katzj)
- Use rhpxl instead of rhpl for X configuration.
- Use pykickstart.

* Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 10.3.0.28-1
- Add yuminstall (katzj, #169228)
- Skip bootloader screen unless modifying partitions (katzj, #169817)
- Don't skip manual partitioning on custom (katzj, #169001)
- Partitioning UI fixes (katzj)
- Don't overwrite empty strings in ksdata with None.
- Move kickstart file handling into pykickstart package.
- Kickstart LVM and RAID partitioning fixes.

* Fri Sep 30 2005 Chris Lumens <clumens@redhat.com> 10.3.0.27-1
- More kickstart script fixes.

* Tue Sep 27 2005 Chris Lumens <clumens@redhat.com> 10.3.0.26-1
- kickstart script fixes

* Sat Sep 24 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.25-1
- single ppc boot images stuff from dwmw2 (pnasrat, #166625)
- ppc netboot stuff from dwmw2 (pnasrat, #165239)
- fix some of the yum backend for yum changes
- Add a button to the traceback dialog to allow saving via scp (clumens)
- Don't load the parallel port module (#169135)
- Fix group deselection to not remove everything
- Move repo setup and group selection earlier (pnasrat)

* Tue Sep 20 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.24-1
- Some kickstart %packages fixes (clumens)
- Don't copy null bytes into syslog (clumens)
- New exception dialog (clumens)
- Fix a traceback (pnasrat)
- FTP/HTTP installation might now work (pnasrat)
- Very basic group selection in the UI

* Mon Sep 19 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.23-1
- fix a silly typo that would cause tracebacks
- Look for help in /tmp/updates too (#168155)
- Add skge driver (#168590)
- Some fixes to hopefully get x86_64 trees working

* Fri Sep 16 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.22-1
- Fix segfaults with nfs mounting
- Start of url install methods (pnasrat)
- Basic package/group selection is back in kickstart
- Macro magic fixups
- Use onboot by default for network devices in kickstart

* Thu Sep 15 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.21-1
- Run pre scripts for kickstart (clumens)
- Another tree fix
- Handle NULL for device->driver from kudzu (notting)
- Clean up internal mount stuff to be more extend-able 

* Wed Sep 14 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.20-1
- Fix runlevel setting (pnasrat)
- More dead stuff fixing.

* Tue Sep 13 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.19-1
- Fix pcmcia import traceback
- Some more kickstart fixing (clumens)
- Make SELinux/firewall defaults be done by the objects, not in the UI
  - This fixes booting with selinux=0, policy load failure, etc
- Allow sparse updates.img with yum, urlgrabber and rpmUtils too
- Some dead code removal
- PCMCIA for the loader again (notting)
- install.log tweaking

* Mon Sep 12 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.18-1
- Add back genhdlist to try to fix multiarch composes (pnasrat)
- Really fix disabling of upgrades
- Some typo fixes for X configuration and post-install config
- Remove some dead code related to boot disks, using fdisk/fdasd, X 
  configuration, pcmcia
- Move ppc X stuff to rhpl (clumens)
- Fix some kickstart stuff (clumens)
- Fix RPM logging output -> the log file
- Use gtkhtml2 for release notes

* Fri Sep  9 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.17-1
- more X fixage
- build against new kudzu that doesn't segfault :)

* Fri Sep  9 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.16-1
- More typo fixes (notting)
- Fix rhpl requires

* Fri Sep  9 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.15-1
- Fix typo that broke image building.
- Start of getting post-install stuff working (pnasrat)

* Fri Sep 09 2005 Chris Lumens <clumens@redhat.com> 10.3.0.14-1
- logging fix when running in test mode

* Fri Sep 09 2005 Bill Nottingham <notting@redhat.com> 10.3.0.13-1
- adapt to new X driver model in kudzu and associated rhpl changes
- pcitable/modules.pcimap/modules.usbmap are no longer used in probing;
  remove support for them and add modules.alias usage
- Turn off help (katzj)
- Kickstart fixes (clumens)

* Wed Sep 07 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.12-1
- yum backend selinux file_context 
- Start using new kickstart code (clumens)
- Error handling and messages for kickstart (clumens)
- Partitioning kickstart fixups (clumens)

* Thu Sep 01 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.11-1
- Yum backend work (macro support, whitelist)
- qla2100 (katzj, #167065)
- Kickstart Parser (clumens)
- authconfig handling changes (clumens)
- Autopartitiong Traceback fix (katzj)

* Fri Aug 26 2005 Jeremy Katz <katzj@redhat.com>
- More work from pnasrat on getting the yum backend working
- Don't set some irrelevant network TYPE= (#136188, #157193)
- New and improved autopartitioning screen

* Fri Aug 19 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.10-1
- Working towards new backend architecture

* Thu Aug 18 2005 Chris Lumens <clumens@redhat.com> 10.3.0.9-1
- Rebuild for new cairo.
- Add support for ksdevice=bootif (Alex Kiernan, #166135).
- Fix /dev/tty3 logging problems.
- Add support for Pegasos machines (dwmw2, #166103).
- Switch to Sazanami font (#166045).
- Fix for autopart not in lvm (msw).

* Mon Aug 15 2005 Chris Lumens <clumens@redhat.com> 10.3.0.8-1
- Remove dead --ignoredeps code (katzj, #165224).
- New logging system with log levels and remote logging capabilities.
- Fix typo in network code (pnasrat, #165934).
- Fix buffer overrun in md5sum code (Dustin Kirkland).
- Add mptspi and mptfc drivers (katzj).
- Timestamp fixes (dgregor, #163875).

* Thu Jul 21 2005 Chris Lumens <clumens@redhat.com> 10.3.0.7-1
- Remove firewall configuration screen.  Open SSH by default and set
  SELinux to enforced.

* Wed Jul 20 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.6-1
- Ensure boot flag only on correct partition on pmac (#157245)
- Plug in yum for nfs:/ by default
- Include sungem_phy for pmac

* Wed Jul 13 2005 Chris Lumens <clumens@redhat.com> 10.3.0.5-1
- Fix pygtk bug on progress bars.
- Bump ia64 boot.img size (katzj, #162801).
- Fix for clearpart --none (katzj, #162445).
- yum dependancy fixes (pnasrat).
- name.arch fix for kickstart (pnasrat).
- Fix multiple NICs in kickstart config files (#158556).

* Thu Jul 07 2005 Paul Nasrat <pnasrat@redhat.com> 10.3.0.4-1
- Select kernel-devel (katzj #160533)
- Fixups for ia64 images from prarit (katzj #162072)
- Include yum libraries in stage2
- Remove gzread.py (clumens)

* Wed Jun 29 2005 Chris Lumens <clumens@redhat.com> 10.3.0.3-1
- Mount "auto" filesystems on upgrade (#160986).
- Add cairo for new pango/gtk (katzj).
- Delete labels on swap and ext3 partitions before formatting.
- Remove langsupport keyword from kickstart.

* Mon Jun 20 2005 Bill Nottingham <notting@redhat.com> - 10.3.0.2-1
- fix genhdlist

* Fri Jun 17 2005 Jeremy Katz <katzj@redhat.com> - 10.3.0.1-1
- Fix release notes for ftp installs (#160262)
- Fix fd leak in edd support (Jon Burgess, #160693)
- Fix typo breaking pseries console (pnasrat, #160573)
- Allow ignoring packages without specifying the arch (clumens, #160209)
- Add gpart (clumens, #55532)
- Some warning fixes.
- Use full bterm font if available (#159505)
- Fix quoting of pvs in anaconda-ks.cfg (#159193)
- Fix segfault on upgrades
- String tweaks (clumens, #159044, #156408)
- Don't traceback on preexisting RAID (clumens, #159079, #159182)
- Fix display size of PVs (clumens, #158696)
- Don't consider drives without free space for partitions (pjones)
- Langsupport fixes (clumens, #154572, #158389)
- Hack around usb-storage slowness at finding devices that leads to the 
  reload not occurring
- Handle FC3 swap label format and convert to right format (#158195)
- Only set things up to change the default kernel if we're booting us (#158195)
- Fix deps on upgrades (#157754)
- Try to keep install screen from moving with length of strings
- Fix autopart problem leaving some freespace the size of where you 
  started your partition growing
- Allow excluding name.arch in kickstart (Dave Lehman, #158370)
- Don't spew an error if essid or wepkey isn't set (#158223)
- Add megaraid and other new drivers (#157420) 
- Left pad RAID uuid (clumens, #136051)
- synaptics tweak (pnasrat)
- Fix telnetd to use devpts instead of legacy ptys (#124248)

* Thu May 19 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.64-1
- Handle longer arch strings (notting)
- Fix traceback in network screen (#158134)
- Include synaptics for X config (pnasrat)
- Magic boot for mac vs mac64 on disc1/dvd (pnasrat)
- Bump point at which we use graphical stage2 for http/ftp (#157274)
- Use uuid in mdadm.conf, stop using copy of md.h (#136051)
- Support deletion of bootloader entries in text mode (#125358)
- Support RAID /boot on pSeries along with handling of multiple PReP 
  partitions (Dustin Kirkland)

* Tue May 17 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.63-1
- add arch to buildstamp (notting, #151927)
- Fix am.po format strings

* Tue May 17 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.62-1
- Fix execcon used for anaconda (pjones)
- Fix traceback on tui netstg2.img install (#157709)
- Fix various splittree bugs (clumens, #157722, #157721, #157723)
- Blacklist perl.i386 on x86_64 to be removed on upgrade (pnasrat, #156658)
- Fix drive sorting (clumens)
- Remove %%installclass support for kickstart since it's never worked (#149690)
- Fix name.arch in packages (pnasrat)
- Remove bogus pre-existing RAID info on kickstart installs (clumens, #88359)
- Pretend to have nano in the rescue environment
- Don't load stage2.img into RAM for rescue mode if booted 
  with 'linux text' (#155398)

* Thu May  5 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.61-1
- and fix pkgorder for the gfs stuff

* Thu May  5 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.60-1
- Better handling of the langsupport group (clumens)
- Don't install the gfs stuff for all kernel variants, that brings in 
  kernel-smp on an everything install (#156849)
- Don't grow a partition beyond the largest freespace on a drive
- HFS+ support
- Pull in more selinux policy files to try to get /home labeled right
- Fix typo causing segfault (pnasrat)

* Tue May  3 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.59-1
- Try to use the fb res on pmac
- Always reset terminal attrs on ppc (notting, #156411)
- Remove bogus preexisting LVM info when doing kickstart 
  installs (clumens, #156283)

* Mon May  2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.58-1
- Beep on CD insertion, not after
- Fix language support selection (clumens)
- Fix nfsiso (clumens)
- Misc X config fixes for ppc.  Boot with "usefbx" to use fbdev 
  instead again (#149188)

* Thu Apr 28 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.57-1
- Fix bind mounts (clumens, #151458)
- Fix hard drive installs (clumens)
- Re-add bluecurve icons
- Attempt to fix Chinese

* Wed Apr 28 2005 Peter Jones <pjones@redhat.com> - 10.2.0.56-1
- Fix mediacheck calls from cdinstall.c, and make mediacheck.c include
  its own header so typechecking works.

* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.55-1
- Don't spam about package downloads in cmdline mode (#155250)
- Apply jnovy's patch to fix space calculations for > 2 TB devices (#155709)
- Set default font for CJK better (clumens, #156052)
- Add --label for part in kickstart (clumens, #79832)
- Ensure decimal IP addrs (#156088)
- Apply patch from Joe Pruett for rpmarch= fixes (#101971)
- Don't set SUPPORTED unnecessarily (#115847)
- Give more room for cyl #s (#119767)
- Bump size of diskboot.img
- Add back button for required media message (#114770)
- Fix lvs showing up with a mountpoint of 0 (#153965)
- Nuke some debug code
- Don't try to unmount (tmpfs) /dev
- Write a minimal mtab to avoid fsck/mount complaints (pjones)

* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.54-1
- Only select kernel-smp that matches the arch of kernel (#149618)
- Apply the read of Dustin Kirkland's checkpoint fragment sum patch
- Fix order of retry/reboot (#155884)
- Probe macio (pnasrat, #154846)

* Tue Apr 26 2005 Chris Lumens <clumens@redhat.com> 10.2.0.53-1
- Beep at CD prompt and on install completion (katzj, #109264, #116681).
- Add kernel-smp-devel and kernel-hugemem-devel to exclude list (katzj).
- Fix buffer overflow when CD/DVD images are several directories deep
  (#154715).
- Fix media check (pjones).
- Set language on CD and no pass installs (#149688).
- Fix disappearing button bar (#151837).
- Upgrade PReP on iSeries (pnasrat).

* Thu Apr 21 2005 Chris Lumens <clumens@redhat.com> 10.2.0.52-1
- Allow mediacheck in kickstart (katzj, #116429)
- Check for a drive being selected in autopart (katzj, #124296)
- Fix traceback in language selection screen (#155103)
- Mark "Downloading" for translation (katzj, #155214)
- Applied Dustin Kirkland's checkpoint fragment sum patch for mediacheck.
- Make anaconda-ks.cfg ro (pnasrat)
- Ensure there are <= 27 RAID members (katzj, #155509)
- Fix fsoptions for preexisting partitions in kickstart (#97560).

* Fri Apr 15 2005 Chris Lumens <clumens@redhat.com> 10.2.0.51-1
- Decode source URL for writing to anaconda-ks.cfg (#154149).
- Add kernel-xen?-devel to the exclude list (katzj, #154819).
- Fix text wrapping (#153071, #154786).
- Various UI fixes.
- Select language packages for all selected languages (#153748, #154181).

* Wed Apr 13 2005 Peter Jones <pjones@redhat.com> - 10.2.0.50-1
- revert last week's nptl hack in upd-instroot

* Wed Apr 13 2005 Peter Jones <pjones@redhat.com> - 10.2.0.49-1
- Cut summaries off to avoid layout problems (katzj, #154459)
- Add script to update loader in initrd (katzj)
- Typo fixes in upgrade.py (katzj, #154522)
- Fix rescue mode network enabling (katz, #153961)
- Add libaudit to the graphical stage2 file list, for Xorg
- Various language fixes (clumens, #152404)

* Mon Apr 11 2005 Peter Jones <pjones@redhat.com> - 10.2.0.48-1
- Typo fixes in gui.py (menthos, #154324)
- Don't try to do early swap in test mode, and use yesno not okcancel (msw)
- If the install language is an unknown locale, use en_US.UTF_8
- Fix upgrade to make devices available in the changeroot

* Thu Apr  7 2005 Peter Jones <pjones@redhat.com> - 10.2.0.47-1
- put ncurses in the net images, too.
- (notting) put redhat-artwork in the GR images.

* Thu Apr  7 2005 Peter Jones <pjones@redhat.com> - 10.2.0.46-1
- put readline in the net images
- fix linxuthreads warnings in upd-instroot
- (clumens) fix build-locale-archive

* Wed Apr  6 2005 Elliot Lee <sopwith@redhat.com> - 10.2.0.45-1
- Deal with GUI-mode language traceback

* Wed Apr  6 2005 Elliot Lee <sopwith@redhat.com> - 10.2.0.44-1
- Deal with text-mode language traceback
- (clumens) Don't set SYSFONTACM 

* Wed Apr 06 2005 Peter Jones <pjones@redhat.com> - 10.2.0.43-1
- Don't remove libraries in stage2 that don't match the one from linuxthreads/

* Tue Apr 05 2005 Peter Jones <pjones@redhat.com> - 10.2.0.42-1
- Use linuxthreads libraries even if they're not the default, unless
  explicitly told to use nptl

* Tue Apr 05 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.41-1
- Make sure $LANG is set right for the second stage.
- Fix kickstart traceback trying to skip a nonexistant step.
- Import encodings.idna (sopwith, #153754).
- Fix image building problems.
- Fix kickstart traceback when using shortened forms of language names
  (#153656).

* Mon Apr 04 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.40-1
- Add locale information for 'C' to fix RPM building.

* Sat Apr  2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.39-1
- fix makefile deps to fix build

* Fri Apr 01 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.38-1
- Set default language for /etc/sysconfig/i18n (#149688).
- Make sure hostname option isn't greyed out if using static IP (#149116).
- Remove unused packages, python library bits, and locale info (katzj).
- Add missing Indic font packages (katzj).
- Various language fixups.

* Wed Mar 30 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.37-1
- try not using maxcpus=1 for arches which still had it
- don't use the reserved variable name str (sopwith)
- various language fixups (clumens)

* Tue Mar 29 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.36-1
- tree build fix

* Tue Mar 29 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.35-1
- dead files can't really be installed (aka, fix the build)

* Tue Mar 29 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.34-1
- Adjust pcmcia module loading for new in-kernel ds (pjones, #151235)
- Make the rescue images identify which arch they're for (pjones, #151501)
- Delete LV snapshots before the parent LV (pjones, #151524)
- Check various forms of a language nick.
- Allow setting MTU on the command line (katzj, #151789)
- Remove dead code in config file handling and sparc booting (katzj)
- Product name and path simplification (katzj)
- Fixes for lang-table format change (katzj, clumens)

* Fri Mar 25 2005 Bill Nottingham <notting@redhat.com> - 10.2.0.33-1
- fix typo in partedUtils.py

* Thu Mar 24 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.32-1
- Switch theme to clearlooks
- Add new Solaris partition id
- Mark some more strings for translation
- Fix xfs fs creation (Lars Hamann, #151378)

* Wed Mar 23 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.31-1
- Add libgcc for images.
- Rewrite language handling.
- Fix readImageFromFile deprecation warning (katzj).
- Don't hide groups which just have metapkgs (katzj, #149182).
- Load SELinux booleans (katzj, #151896).

* Tue Mar 22 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.30-1
- Try harder on the libstdc++ include.
- Fix /etc/resolv.conf fir interactive kickstart installs (#151472).

* Mon Mar 21 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.29-1
- Fix beta nag translation
- Fix button growing (clumens, #151208)
- Add libstdc++ for images (clumens)
- Clean up congrats screen (clumens, #149526)
- Fix CD ejecting in loader (pnasrat, #151232)
- Exclude Xen kernels from everything install (#151490)
- Add reserve_size for ppc to leave room on disc1 (#151234)
- Add some more locales 

* Mon Mar 14 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.28-1
- fix swap detection on upgrade (pjones)
- don't use os.read to make a buffer of '\x00' (pjones)
- move availRaidLevels to raid.py from fsset.py (pjones)
- fix Xvnc parameters (clumens, #150498)
- unmount loopback-mounted ISO images to free loop0 (clumens, #150887)
- fix warnings about gtk.TRUE and gtk.FALSE, partly based on a patch
  from Colin Charles. (pjones)
- sqlite3->sqlite (pnasrat)
- support longer package names in hdlist (pnasrat, #146820)
- Fix handling of --debug (Ingo Pakleppa, #150920, #150925)
- Fix for font location changes (#150889)
- More cjk text shuffling (#149039)

* Mon Mar  7 2005 Peter Jones <pjones@redhat.com> - 10.2.0.27-1
- supress lvm fd warning messages
- fewer log messages when growing partitions
- clamp LVs to pesize during grow

* Mon Mar  7 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.26-1
- urlgrabber stuff is in its own package now

* Sun Mar  6 2005 Peter Jones <pjones@redhat.com> - 10.2.0.25-1
- Empty blacklist in upgrade.py (notting, #142893)
- Add new font package names (katzj)
- Yet another fix of autopart with lvm (pjones)

* Tue Mar  1 2005 Peter Jones <pjones@redhat.com> - 10.2.0.24-1
- gcc4 fixes (clumens, pjones)
- build C files with -D_FORTIFY_SOURCE=2 (pjones)

* Mon Feb 28 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.23-1 
- Don't write out filesystems to fstab we haven't mounted (katzj, #149091).
- Deal with multiple Apple Bootstrap partitions (pnasrat).
- Set hostname sensitivity UI bug.
- Eject CD when failing (pnasrat, #147272).
- Better handling of Apple Bootstrap throughout (pjones).
- Do ethtool setup everywhere (pnasrat, #145522).
- Fix "debug" command line arg (pjones).
- Import new libkrb5support library (#149856).
- Add -once to ensure Xvnc exits (katzj, #137337).

* Sun Feb 20 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.22-1
- revert some of the ppc changes so that lvm is used (nasrat)
- Try to fix bogl stuff some more (#149039)
- x86_64 install fixes (#149040)

* Sun Feb 20 2005 Peter Jones <pjones@redhat.com> - 10.2.0.21-1
- get rid of lilo
- make grub work with raid1 /boot and /root

* Sat Feb 19 2005 Paul Nasrat <pnasrat@redhat.com> - 10.2.0.20-1
- Pull in translations
- s390 linuxrc silence nonexistant group warnings (karsten)
- ppc mac autopartitioning and G5 boot.iso (#121266) and (#149081)

* Sat Feb 12 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.19-1
- fix x86_64 installs for bad urlgrabber import
- Fix traceback with no %post (clumens)
- Put hostname in the text entry (clumens, #132826)

* Tue Feb  8 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.18-1
- Remove some old cruft
- Fix-up for new module naming in gnome-python2-canvas 2.9.x 
- Add needed requirements for rpm 4.4
- Fix segfault when rpm tries to write to non-existent fd during 
  transaction ordering
- Support --erroronfail as an option for %pre/%post (clumens, #124386)

* Tue Feb  8 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.17-1
- Use rhpl.archscore to fix iseries upgrades (pnasrat, #146915)
- Only configure ksdevice if no --device (pnasrat, #138852)
- Don't redraw help if disasbled on next button click (clumens, #145691)
- Fix exception in exception handler (msw)
- Rebuild for new librpm

* Fri Feb  4 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.16-1
- Support setting fs options in kickstart via --fsoptions  (#97560)
- Fix tracebacks

* Wed Feb  2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.15-1
- Fix some bugs in the reduce-font changes
- Fix urlgrabber import
- Remove langsupport screen, base additional language support off of groups 
  selected

* Wed Feb  2 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.14-1
- Fix deprecation warnings for pygtk 2.5 (clumens)
- Fix bootloader --location=none (clumens, #146448)
- Use urlgrabber (clumens)
- Create reduced bogl font at upd-instroot time to include more 
  characters (#92146, #140208)
- Allow passing --src-discs=0 to get no srpm discs from splittree 
  (based on patch from Armijn Hemel, #119070)
- Mount pseudo-fs's with a more descriptive device name (#136820)
- Minor tweaks to completion message (#138688)

* Tue Jan 25 2005 Peter Jones <pjones@redhat.com> - 10.2.0.13-1
- Hopefully fix LVM size bug (#145183)
- Support multiple iso sets in the same directory (#146053)

* Wed Jan 19 2005 Chris Lumens <clumens@redhat.com> - 10.2.0.12-1 
- Fix partitioning bugs (#101432, #137119)
- Support --bytes-per-inode on a per-partition basis (#57550)

* Thu Jan 13 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.11-1
- Fix some tracebacks with the new glade code
- Use busybox ash instead of ash for netstg2.img/hdstg2.img
- Initialize terminals to avoid color palette change from 
  bterm (pjones, #137849)

* Thu Jan 13 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.10-1
- Handle /sbin/lvm not existing anymore
- Allow installclasses to turn off showing the upgrade option
- Ensure that Core exists in your comps file (#143930)
- Don't fall back to text mode if we fail to start graphics in test mode
- Display better error messages for HTTP/FTP errors (clumens, #144546)
- Switch main UI to use glade, set up infrastructure for use of glade
- Remove some old code
- Add buildprereq for intltool (fixed for b.g.o 163981)

* Wed Jan  5 2005 Jeremy Katz <katzj@redhat.com> - 10.2.0.9-1
- Fix some typos (#143257, #144006)
- Fix from Matthew Miller for multiple dns servers (#84409)
- Fix formatting of fcp disks (#144199)
- Include a README for x86_64 images (clumens, #143366)
- Make an x86_64 rescue image (clumens, #143366)
- Add libXfixes for new gtk2

* Thu Dec 23 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.8-1
- Use tmpfs not ramfs for /dev
- Blacklist "root" as a VG name (#142785)
- Better error message if swap can't be mounted (clumens, #143000)
- Some fixes to the new /dev handling in init
- Make more certain hwaddr gets written out (#143535)
- Handle new swap label format (#143447)
- Let the user know they're in rescue mode earlier (clumens, #136171)

* Mon Dec 20 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.7-1
- Better error handling on device creation (#142273)
- Reset package selection to defaults if selected (#142415)
- LVM on RAID1 fix (nasrat, #141781)
- Add support for biosdev in driverdisk from Rez Kabir (#142738)
- Some more SX8 fixes
- Create /dev as a tmpfs (#141570)
- Remove some old code
- Improve quoting of fstype in anaconda-ks.cfg (Danen Brücker)

* Wed Dec  8 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.6-1
- Write out wepkey better (#140645)
- Try to skip source isos with nfsiso (#106017)
- Don't traceback for bad/missing / in fstab (nasrat, #141174)
- Include pesize in generated ks.cfg (#141370)
- Loop less on shutdown
- Better handling of partial volume groups (#139058)

* Tue Nov 30 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.5-1
- CTCPROT fix (karsten, #133088)
- Fix LVM partitions becoming negative sized (nasrat, #141268)
- Fix removal/editing of zfcp devices in gui (#140559)
- Fix segfault (#140541, #140876)
- Fix handling of pre-existing parts on disks that we then ignore (#131333)

* Tue Nov 23 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.4-1
- Update python version in urllib hack
- /init in initramfs instead of /linuxrc
- Improved ppc console detection (nasrat, #134397)
- Better handling of going back when out of space (#133773)
- Better handling of LVM failures (#134263)
- Set a default when boot loader to upgrade is indeterminate (#139603)
- No more diet on i386

* Tue Nov 16 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.3-1
- Create initramfs images instead of initrds for boot media
- Remove some old code in a few places
- Allow passing --notksdevice in network lines of a ks.cfg to avoid 
  confusion with multiple network lines and a ksdevice= (#136903)
- Allow going back to change the network device if ksdevice= is 
  passed and isn't correct (#136903)
- Fix for console= to automatically imply serial as needed (#137971)

* Mon Nov 15 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.2-1
- Do some more unmounts if we run out of space (#133773)
- Fix for obsoletes E being long (nasrat, #138485)
- Make serial imply nofb (#134167)
- Set fstype to vfat if user selected /boot/efi in the 
  mountpoint dropdown (#138580)
- Copy the X log to the installed system
- Add fix from HJ Lu to fix hang with no bootloader install (#138932)
- Fix splittree error msg (nasrat, #139391)
- Ignore IBM *STMF disks (#137920)

* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.1-1
- whrandom is deprecated in python 2.4, use random instead
- fix some syntax errors
- fallback to English for languages that can't do text-mode (#138308)
- More CTCPROT/PORTNAME tweaks (karsten)

* Sun Nov  7 2004 Jeremy Katz <katzj@redhat.com> - 10.2.0.0-1
- Switch to python 2.4
- Clean up warning on network screen from pygtk
- Parse pxelinux IPAPPEND for loader network info, patch 
  from Bastien Nocera (#134054)
- Clean up handling of binaries busybox should override
- Do misc package selection earlier so we know all the CDs needed 
  when confirming the install (#122017)
- Mark some strings for translation (#137197)
- Don't reference boot disks in boot loader screen (#135851)
- Add hardware address information to network screen (#131814)
- Fix exception handling in label reading

* Thu Nov  4 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.4-1
- Fix traceback with CJK upgrades (#137345)
- Allow 128 bit WEP keys (#137447)
- Fix race condition with X client startup (krh, #108777)
- Fix segfault in hd kickstart install (twaugh, #137533)
- Better handling of errors reading labels (#137846)
- Try harder to find LCS interface names (karsten)
- Improve CTCPROT handling (karsten)
- Fix traceback going back in rescue mode network config (#137844)
- Don't use busybox shutdown, poweroff, reboot (#137948)
- Set permissions on anaconda logs
- Make autopartioning better with native storage on legacy iSeries
- Sync onboot behavior of gui/text network screens (#138011)
- Load some drivers later to try to avoid having FC disks be sda
- Sizes in ks.cfg need to be an integer (#138109)

* Tue Oct 26 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.3-1
- Pull in firefox on upgrade if mozilla/netscape were installed (#137244)
- Fix s390 tracebacks (#130123, #137239)

* Tue Oct 26 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.2-1
- Handle our LVM autopart lines slightly better (#137120)
- Use busybox sleep for s390 since sleep requires librt again (#131167)
- Handle onboot in ks.cfg properly in the loader (#136903)
- Punjabi shouldn't try to do text mode (#137030)
- Add sgiioc4 driver for Altix CD installs (#136730)
- pci.ids trimming (notting)

* Wed Oct 20 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.1-1
- Create a netboot.img again for ppc64 (#125129)

* Wed Oct 20 2004 Jeremy Katz <katzj@redhat.com> - 10.1.1.0-1
- Lowercase OSA addresses from the parm file too (karsten)

* Tue Oct 19 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.21-1
- Lowercase OSA addresses to make the kernel happy (#133190)
- Don't hard code the VG name used for auto-partitioning to avoid 
  colliding with existing ones
- Make sure that we don't do runlevel 5 if people don't have X, etc 
  installed (#135895)
- Update for new Indic font filenames

* Mon Oct 18 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.20-1
- Fix traceback with %post logging (Gijs Hollestelle, #136154)
- When using a local stage2.img for FTP/HTTP install, give an error earlier 
  if you point at an invalid tree (#135603, #117155, #120101)
- Add a trailing newline to /etc/sysconfig/kernel
- Try to fix the icon theme
- Rebuild against new dietlibc, hopefully fixes CJK text installs

* Sun Oct 17 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.19-1
- Fix font size to fit on disk display better (#135731)
- Write out part lines for autopart lvm correctly (#135714)
- Remove empty row in drive order for boot loader (#135944)
- Replace % in URLs to avoid format string weirdness (#135929)
- Bind mount /dev for rescue mode (#135860)
- Fix Dutch and Danish keyboard defaults (#135839)
- add s2io 10GbE driver

* Thu Oct 14 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.18-1
- Add fonts for ta, gu, bn, hi, pa (#119283)
- Re-enable bterm for testing (#113910)
- Fix segfault when using biospart with a ks hdinstall.  Patch from 
  Rez Kabir (#135609)
- Write out /etc/sysconfig/kernel for use with new-kernel-pkg changes (#135161)
- Fix telnet logins for s390 (karsten)
- Hardcode LCS as eth instead of tr (karsten)

* Tue Oct 12 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.17-1
- Only use "our" LVM partitions with auto-partitioning (#135440)
- Remove localboot option from syslinux.cfg for diskboot.img (#135263)
- Handle the great input method switch on upgrade (#129218)
- Don't save the hwaddr for qeth (#135023)
- Add rhgb boot loader arguments in postinstall (msw)
- Reverse Norwegian blacklisting (#129453) (notting)
- Add sata_nv, sata_sx4, ixgb, ahci, sx8 modules to the initrd (notting)

* Thu Oct  7 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.16-1
- s390/s390x: Fix traceback with unpartitioned disks (karsten)
- improve fit of bengali network screen (#134762)
- don't allow formatting of a pre-existing partition without also 
  mounting it (#134865)
- Don't show "0" as a mountpoint for an LV that's not being mounted (#134867)
- Add prelink config bits (#117867)
- Sort packages in text package group details (#123437)
- Don't traceback on upgrade if /dev/mapper/control exists (#124092)

* Tue Oct  5 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.15-1
- Fix creation of scsi device nodes (#134709)
- Fix multiple kickstart scriptlets with different interpreters (#134707)

* Mon Oct  4 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.14-1
- Some zfcp fixes
- Don't traceback if we have a %%include inside a scriptlet (#120252)
- Fix SELinux for text-mode ftp/http installs (#134549)

* Mon Oct  4 2004 Mike McLean <mikem@redhat.com> - 10.0.3.12-1
- add command line options to pkgorder (mikem)

* Mon Oct  4 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.11-1
- Handle 32 raid devs (#134438)
- Fix LCS PORTNAME (#134487)
- Add logging of kickstart scripts with --log to %post/%pre
- Copy /tmp/anaconda.log and /tmp/syslog to /var/log/anaconda.log 
  and /var/log/anaconda.syslog respectively (#124370)
- Fix Polish (#134554)
- Add arch-specific package removal (#133396)
- Include PPC PReP Boot partition in anaconda-ks.cfg (#133934)
- Fix changing of VG name going through to boot loader setup (#132213)
- Add support for > 128 SCSI disks (#134575)

* Fri Oct  1 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.10-1
- add kickstart zfcp configuration (#133288, #130070)
- Use NFSv3 for NFS installs.  Fixes NFSISO installs from DVD (#122032)
- Fix megaraid_mbox module name (#134369)
- Another uninitialized fix (#133996)
- Add the zh_CN font (#133330)

* Thu Sep 30 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.9-1
- translation updates
- Install compat-arch-support by default (#133514)
- Warn if an older version is chosen for upgrading if product is RHEL (#134523)
- Fix traceback on upgrade with possible lvm1 (#134258)
- Make changing the DNS server work (#122554)
- More fixes from pnasrat for arch handling on upgrade

* Thu Sep 30 2004 Paul Nasrat <pnasrat@redhat.com> - 10.0.3.8-1
- Fix missing rpm.ts (#133045)

* Wed Sep 29 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.7-1
- Don't ask about mouse type on remote X display (#133902)
- Label swap filesystems (#127892)
- Fix possible crash on hd kickstart installs (#133996)
- Improve multiarch upgrade (#133045)
- Avoid changing the default language when selecting additional 
  language support (#134040)
- Remove spurious blank option in upgrade combo (#134058)
- Fix driver disk hang (#131112, #122952)
- Fix detection of unformatted dasd (#130123)

* Mon Sep 27 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.6-1
- Fix traceback from auto-partitioning if you don't have enough space (#131325)
- Update FCP config for adding SCSI LUNs (#133290)

* Mon Sep 27 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.5-1
- Fix driver disk segfault when using a partition (#133036)
- Let driver disk images on ext2 partitions work
- Fix nonet/nostorage
- Allow name.arch syntax in ks.cfg (#124456)
- Fix traceback unselecting last language (#133164)
- Skip version 0 swap (#122101)
- Handle /dev being present in device names of ks.cfg (#121486)
- Use no instead of no-latin1 for Norwegian keyboard (#133757)
- include other dm modules (#132001)

* Fri Sep 24 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.4-1
- fix megaraid module name (notting)
- don't prompt for a driver disk on pSeries boxes with just 
  virtual devices (#135292)
- don't use PROBE_LOADED for cd probe (#131033)
- i2o devices don't use a "p" separator (#133379)
- switch back zh_CN font to default (#133330)
- add 3w-9xxx to modules.cgz (#133525)
- fix showing of freespace (#133425)

* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.3-1
- fix going back unmount of /dev/pts (#133301)
- fix SRPMs disc (#122737)
- add localboot option to isolinux.cfg (#120687)
- fix tree build on ia64 and x86_64
- fix a syntax error for text mode selinux config 

* Tue Sep 21 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.2-1
- some fixes for Arabic (#122228)
- support using ksdevice=macaddr (#130605)
- add an images/pxeboot directory on ia64

* Tue Sep 21 2004 Jeremy Katz <katzj@redhat.com> - 10.0.3.1-1
- improve handling of non-physical consoles on some ppc and ia64 machines
- add Bengali(India) and Gujarati to the lang-table (#126108)
- add support for setting the CTC protocol on s/390 (#132324, #132325)
- don't offer to do vnc if we don't have active nwtorking (#132833)
- various typo/grammar fixes
- add support for 'nostorage' and 'nonet' command line options to avoid 
  auto-loading just network or storage devices
- fix editing of pre-existing lvm (#132217)
- fix going back from the partitions list on a driver disk (#132096)
- don't show login error if silent errors (#132673)

* Thu Jun  3 2004 Jeremy Katz <katzj@redhat.com>
- require system-logos and anaconda-help, obsolete anaconda-images

* Fri Apr 30 2004 Jeremy Katz <katzj@redhat.com>
- Update description, remove prereq on stuff that was only needed 
  for reconfig mode 

* Tue Feb 24 2004 Jeremy Katz <katzj@redhat.com>
- buildrequire libselinux-devel

* Thu Nov  6 2003 Jeremy Katz <katzj@redhat.com>
- require booty (#109272)

* Tue Oct  8 2002 Jeremy Katz <katzj@redhat.com>
- back to mainstream rpm instead of rpm404

* Mon Sep  9 2002 Jeremy Katz <katzj@redhat.com>
- can't buildrequire dietlibc and kernel-pcmcia-cs since they don't always
  exist

* Wed Aug 21 2002 Jeremy Katz <katzj@redhat.com>
- added URL

* Thu May 23 2002 Jeremy Katz <katzj@redhat.com>
- add require and buildrequire on rhpl

* Tue Apr 02 2002 Michael Fulbright <msf@redhat.com>
- added some more docs

* Fri Feb 22 2002 Jeremy Katz <katzj@redhat.com>
- buildrequire kernel-pcmcia-cs as we've sucked the libs the loader needs 
  to there now

* Thu Feb 07 2002 Michael Fulbright <msf@redhat.com>
- goodbye reconfig

* Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
- update the BuildRequires a bit

* Fri Jan  4 2002 Jeremy Katz <katzj@redhat.com>
- ddcprobe is now done from kudzu

* Wed Jul 18 2001 Jeremy Katz <katzj@redhat.com>
- own /usr/lib/anaconda and /usr/share/anaconda

* Fri Jan 12 2001 Matt Wilson <msw@redhat.com>
- sync text with specspo

* Thu Aug 10 2000 Matt Wilson <msw@redhat.com>
- build on alpha again now that I've fixed the stubs

* Wed Aug  9 2000 Michael Fulbright <drmike@redhat.com>
- new build

* Fri Aug  4 2000 Florian La Roche <Florian.LaRoche@redhat.com>
- allow also subvendorid and subdeviceid in trimpcitable

* Fri Jul 14 2000 Matt Wilson <msw@redhat.com>
- moved init script for reconfig mode to /etc/init.d/reconfig
- move the initscript back to /etc/rc.d/init.d
- Prereq: /etc/init.d

* Thu Feb 03 2000 Michael Fulbright <drmike@redhat.com>
- strip files
- add lang-table to file list

* Wed Jan 05 2000 Michael Fulbright <drmike@redhat.com>
- added requirement for rpm-python

* Mon Dec 06 1999 Michael Fulbright <drmike@redhat.com>
- rename to 'anaconda' instead of 'anaconda-reconfig'

* Fri Dec 03 1999 Michael Fulbright <drmike@redhat.com>
- remove ddcprobe since we don't do X configuration in reconfig now

* Tue Nov 30 1999 Michael Fulbright <drmike@redhat.com>
- first try at packaging reconfiguration tool