/

1ca0a6'>treecommitdiffstats
path: root/anaconda.spec
blob: e81a090210e6bb33f416d2076ca52a42a07b2a24 (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
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
Name: anaconda
Version: 11.1.2.143
Release: 1
License: GPL
Summary: Graphical system installer
Group: Applications/System
Source: anaconda-%{PACKAGE_VERSION}.tar.bz2
BuildPreReq: kudzu-devel >= 1.2.57.1.18, 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: libdhcp-devel >= 1.20-5, mkinitrd-devel >= 5.1.2-1
BuildPreReq: audit-libs-devel, libnl-devel >= 1.0-0.10.pre5.5
%ifnarch s390 s390x
BuildPreReq: iscsi-initiator-utils >= 6.2.0.868-0.9
%endif
Requires: rpm-python >= 4.2-0.61, rhpl >= 0.170, booty
Requires: parted >= 1.7.1, pyparted >= 1.7.2
Requires: kudzu >= 1.2.57.1.18, 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: e4fsprogs
Requires: python-pyblock >= 0.26-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
Requires: xml-common
Requires: libxml2
Requires(post): /usr/bin/xmlcatalog
Requires(postun): /usr/bin/xmlcatalog

%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

%post runtime
CATALOG=/etc/xml/catalog
/usr/bin/xmlcatalog --noout --add "rewriteSystem" \
    "comps.dtd" \
    "/usr/share/xml/comps/1.0/comps.dtd" $CATALOG || :
/usr/bin/xmlcatalog --noout --add "rewriteURI" \
    "comps.dtd" \
    "/usr/share/xml/comps/1.0/comps.dtd" $CATALOG || :

%postun runtime
if [ $1 = 0 ]; then
    CATALOG=/etc/xml/catalog
    /usr/bin/xmlcatalog --noout --del \
        "/usr/share/xml/comps/1.0/comps.dtd" $CATALOG || :
fi

%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
/usr/share/xml/comps

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

%changelog
* Wed Oct 15 2008 Joel Granados <jgranado@redhat.com>  11.1.2.143-1
- Change order when calling dasdFmt to avoid race condition while formating dasd drives (jgranado).
  Resolves: rhbz:#466474

* Tue Oct 14 2008 Joel Granados <jgranado@redhat.com> 11.1.2.142-1
- Add the enic driver (jgranado).
  Resolves: rhbz:#462387
- Get the right list elements for the iscsi text interface (clumens).
  Resolves: rhbz:#466902
- Fix detection of ext4/ext4dev root partitions in rescue (rvykydal).
  Resolves: rhbz:#466868

* Mon Oct 13 2008 Joel Granados <jgranado@redhat.com> 11.1.2.141-1
- Prevent creation of encrypted swraid partitions (dlehman).
  Resolves: rhbz:#456283
- Enable the iBFT by default and set the fallbacks to mimic the w/o iBFT behaviour (msivak).
  Resolves: rhbz:#445721

* Fri Oct 10 2008 Peter Jones <pjones@redhat.com> - 11.1.2.140-1
- Don't display errors from nl_set_device_mtu() (dcantrell)
  Resolves: rhbz#466305
- Use a correct path for addnote, since the one in the original patch
  wasn't what the kernel group thought they were telling me.
  Related: rhbz#462663

* Thu Oct 09 2008 Chris Lumens <clumens@redhat.com> 11.1.2.139-1
- Handle None in luks device name rectification (pjones).
  Resolves: rhbz#466348

* Wed Oct 08 2008 Peter Jones <pjones@redhat.com> - 11.1.2.138-2
- Start the iBFT configured drives during iSCSI startup (msivak)
  Resolves: rhbz#445721

* Wed Oct 08 2008 Peter Jones <pjones@redhat.com> - 11.1.2.138-1
- Add note to bootable kernel image on ppc64 (dhowells)
  Related: rhbz#462663

* Mon Oct 06 2008 Chris Lumens <clumens@redhat.com> 11.1.2.137-2
- Better error checking when retrieveing info from iBFT (msivak).
  Related: rhbz#445721
- Fix a typo in the anaconda-runtime %post scriptlets.
  Resolves: rhbz#465441

* Fri Oct 3 2008 Joel Granados <jgranado@redhat.com> 11.1.2.136-2
- Fix build.
  Related: rhbz:#445721

* Fri Oct 3 2008 Joel Granados <jgranado@redhat.com> 11.1.2.136-1
- Rebuild to make brew happy.
  Related: rhbz:#445721

* Fri Oct 3 2008 Joel Granados <jgranado@redhat.com> 11.1.2.135-1
- iBFT has MAC addresses with wrong case, use strcasecmp to compare them (msivak).
  Resolves: rhbz:#445721
- Look up correct luks name before trying to decide on our boot device (pjones).
  Resolves: rhbz:#464769
- Add new LUKS devices to partitions.encryptedDevices (dlehman).
  Resolves: rhbz:#464769
- Add a workaround for lvm-on-raid size miscomputation (clumens).
  Resolves: rhbz:#463431
- Do not use labels to specifiy LUKS devices in /etc/fstab (dlehman).
  Resolves: rhbz:#461702

* Thu Oct 2 2008 Joel Granados <jgranado@redhat.com> 11.1.2.134-1
- Fix traceback when using kickstart and device encryption (pjones).
  Resolves: rhbz:#461700
- Fix traceback when using encryption with kickstart (pjones).
  Resolves: rhbz:#461700
- Fix ext4/ext4dev detection on existing partitions (rvykydal).
  Resolves: rhbz:#465248

* Tue Sep 30 2008 Joel Granados <jgranado@redhat.com> 11.1.2.133-1
- Set a label on /etc/sysconfig/keyboard (clumens).
  Resolves: rhbz:#463785
- Add comps.dtd to anaconda-runtime package (dcantrell).
  Resolves: rhbz:#442138
- Make sure /etc/xml/catalog is updated on package removal (dcantrell).
  Resolves: rhbz:#442138
- Fix a logging traceback in the encryption code (clumens).
  Resolves: rhbz:#464771
- Fix lvm partitioning in gui that was broken (rvykydal).
  Resolves: rhbz:#415871
- Fix computing of lvm partition sizes wrt physical extent size in gui (rvykydal).
  Resolves: rhbz:463780
- Add pointer initialization (rvykydal).
  Resolves: rhbz#439461

* Fri Sep 26 2008 Joel Granados <jgranado@redhat.com> 11.1.2.132-1
- When we use kickstart with specified UI mode, do not prompt for VNC (msivak).
  Resolves: rhbz##453551

* Thu Sep 25 2008 Chris Lumens <clumens@redhat.com> 11.1.2.131-1
- Fix rescue mode typo.
  Resolves: rhbz#463920
- Fix traceback accessing obsolete data member (dlehman).
  Resolves: rhbz#463778

* Tue Sep 23 2008 Chris Lumens <clumens@redhat.com> 11.1.2.130-1
- Fix the test for if we should remove the Virt group.
  Resolves: rhbz#462907.

* Mon Sep 22 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.129-1
- Fix mk-s390-cdboot so it doesn't SIGSEGV when generating images (dcantrell)
  Related: rhbz#184648
- Add libfipscheck to initrd for sshd on s390x (clumens)
  Resolves: rhbz#463273

* Fri Sep 19 2008 Chris Lumens <clumens@redhat.com> 11.1.2.128-1
- Include the correct version of the spec file in the source archive.
  Related: rhbz#461700

* Fri Sep 19 2008 Chris Lumens <clumens@redhat.com> 11.1.2.127-1
- Support for system-wide passphrase for encrypted block devices (dlehman).
  Resolves: rhbz#461700

* Wed Sep 17 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.126-1
- Add a stub to cmdline UI for getLuksPassphrase (dlehman)
  Resolves: rhbz#462491
- Don't add a LUKSDevice to autopart PVs unless we're encrypting (dlehman)
  Resolves: rhbz#462640
- Support upgrade of systems that use encrypted block devices (dlehman)
  Resolves: rhbz#461696
- Disallow use or creation of encrypted software RAID partitions (dlehman)
  Resolves: rhbz#456283
- Use UUIDs instead of device nodes in crypttab (dlehman)
  Resolves: rhbz#461702
- Add support for OSA Express 2 ports per CHPID (rvykydal)
  Resolves: rhbz#439461
- Fix kickstart timezone value checking (rvykydal)
  Resolves: rhbz#462595
  Resolves: rhbz#404321

* Tue Sep 16 2008 Chris Lumens <clumens@redhat.com> 11.1.2.125-1
- Include the programs needed to manage ext4 filesystems (clumens).
  Resolves: rhbz#462476
- Fix a reference to a variable before it exists in network.py (clumens).
  Resolves: rhbz#462480

* Mon Sep 15 2008 Chris Lumens <clumens@redhat.com> 11.1.2.124-1
- Fix blkid_dev_next return value checking (rvykydal).
  Resolves: rhbz#462175
- Add the reverse chap bits for kickstart as well (pjones).
  Related: rhbz#432819
- Make iBFT reading explicit from a higher level (pjones).
- Fix device nodes creating for more than 8 cciss devices (rvykydal).
  Resolves: rhbz#445765
- Disable iBFT support for s390 and s390x (dcantrell).

* Thu Sep 11 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.123-1
- Disable iBFT support on s390 and s390x (dcantrell)
  Related: rhbz#445721

* Thu Sep 11 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.122-1
- Add full CHAP support to iSCSI (pjones)
  Resolves: rhbz#432819
- Don't set iscsi devices to autostart (pjones)
  Resolves: rhbz#437891
- Support iSCSI CHAP and Reverse CHAP authentication (pjones)
  Resolves: rhbz#402431
  Resolves: rhbz#432819
- Partitions growing fixed (rvykydal)
  Resolves: rhbz#442628
- Do not traceback when no root partitions are found in upgrade (rvykydal)
  Resolves: rhbz#444527
- Add support for ext4dev/ext4 filesystem (rvykydal)
  Resolves: rhbz#444527
- Add support for reading NIC setup from the iBFT table (msivak)
  Resolves: rhbz#445721
- Add 802.1q driver (rvykydal)
  Resolves: rhbz#431915
- Add libfipscheck to the images (clumens)
  Resolves: rhbz#461923
- Display drive model and size in MB in partitioning UI (dcantrell)
  Resolves: rhbz#460697

* Wed Sep 03 2008 Chris Lumens <clumens@redhat.com> 11.1.2.121-1
- Enable the dlabel=on for RHEL by default (msivak).
  Related: rhbz#316481.

* Thu Aug 28 2008 Chris Lumens <clumens@redhat.com> 11.1.2.120-2
- libuuid is provided by e2fsprogs-devel.
  Related: rhbz#316481.

* Thu Aug 28 2008 Chris Lumens <clumens@redhat.com> 11.1.2.120-1
- Include the nss libraries that the new RPM is linked against.
  Resolves: rhbz#460375.
- Add automatic driver disk detection (msivak).
  Resolves: rhbz#316481.

* Wed Aug 6 2008 Joel Granados <jgranado@redhat.com> 11.1.2.119-1
- Support VDSK devices on s390x (dcantrell).
  Resolves: rhbz#264061

* Wed Jul 30 2008 Joel Granados <jgranado@redhat.com> 11.1.2.118-1
- Use fedorakmod.py plugin from yum-utils package, don't pack it in anaconda (rvykydal).
  Resolves: rhbz#434804
- Make sure bootproto=query settings carry over to stage2 (clumens).
  Resolves: rhbz#453863
- Probe BUS_VIRTIO again after probing BUS_PCI (markmc).
  Resolves: rhbz#446232
- Add virtio drives to multipath blacklist (markmc).
  Resolves: rhbz#446232
- Add virtio max partition count (markmc).
  Resolves: rhbz#446232
- Sort virtio devices first (markmc).
  Resolves: rhbz#446232
- Probe on BUS_VIRTIO for devices (markmc).
  Resolves: rhbz#446232
- Explicitly include virtio_pci in the initrd (markmc).
  Resolves: rhbz#446232
- Add virtio to module-info (markmc).
  Resolves: rhbz#446232
- Add virtio support to devMakeInode() (markmc).
  Resolves: rhbz#446232
- Offer physical NIC identification in stage 1 (dcantrell).
  Resolves: rhbz:#261101
- Suspend the curses interface before calling scripts and resume afterwards (msivak).
  Resolves: rhbz#435314

* Wed Jul 23 2008 Joel Granados <jgranado@redhat.com> 11.1.2.117-1
- Fix the build.
- Change the Makefile so it doesn't replace tags.

* Wed Jul 23 2008 Joel Granados <jgranado@redhat.com> 11.1.2.116-1
- Specify a default cio_ignore parameter for s390x (dcantrell).
  Resolves: rhbz#253075
- Call dhcpNetDevice() instead of removed pumpNetDevice() (rvykydal).
  Resolves: rhbz#452664
- Add support for the --only-use argument to RHEL5 (rvykydal).
  Resolves: rhbz#318351
- Log a message informing about the critical upgrade error (jgranado).
  Resolves: rhbz#436865
- Support booting from FCP-attached CD/DVD drive on s390 (dcantrell).
  Resolves: rhbz#184648
- The actual size of a logical volume must be rounted down (jgranado).
  Resolves: rhbz#415871
- Set network device MTU if user specified mtu= (dcantrell).
  Resolves: rhbz#435874

* Wed Jul 16 2008 Joel Granados <jgranado@redhat.com> 11.1.2.115-1
- Pass the cmdline options to the nfs structure (jgranado).
  Resolves: rhbz#432603
- Remove hicolor-icon-theme>gtk2 from whiteout.py (msivak).
  Resolves: rhbz#369251
- Ask the user if he wants to use VNC instead of text mode (msivak).
  Resolves: rhbz#453551
- Leftover bits of encrypted block device support (dlehman).
  Resolves: rhbz#229865
- Rescue of systems containing encrypted block devices (dlehman).
  Resolves: rhbz#229865
- Support preexisting encrypted block devices (dlehman).
  Resolves: rhbz#229865
- Kickstart support for encrypted block devices (dlehman).
  Resolves: rhbz#229865
- User interface for manipulating encrypted block devices (dlehman).
  Resolves: rhbz#229865
- Partitioning with encrypted block devices (dlehman).
  Resolves: rhbz#229865
- Device-level support for encrypted block devices (dlehman).
  Resolves: rhbz#229865

* Wed Jul 9 2008 Joel Granados <jgranado@redhat.com> 11.1.2.114-1
- Enable upgrades for mayor version in rhel5 only (jgranado).
  Resolves: rhbz#436865
- Handling of invalid timezone value in kickstart added (rvykydal).
  Resolves: rhbz#404321
- GCC is complaining about unchecked return value from read call (msivak).
  Resolves: rhbz#448009
- Enable re-IPL on s390x after installation (dcantrell).
  Resolves: rhbz#432416
- Change the maximum recommended swap size to "2000 + (current ram)" (jgranado).
  Resolves: rhbz#447372
- Don't show the virtualization option if we are in Xen or in Vmware (jgranado).
  Resolves: rhbz#258441
- Prepare the system a little before initializing the pcmcia devices (msivak).
  Resolves: rhbz#448009
- Change the total number of processed packages/files/.. to avoid negative counter in remaining packages (msivak).
  Resolves: rhbz#436103
- Create additional /dev/xvda device nodes (clumens).
  Resolves: rhbz#437752
- Don't use error messages from dosfslabel as the label (clumens)
  Resolves: rhbz#427457
- Add nui driver (jgranado).
  Resolves: rhbz#444820
- Allow the use of the "-" character in lvm names (jgranado).
  Resolves: rhbz#430907
- yum.remove removes installed packages, not to be installed packages (msivak).
  Resolves: rhbz#442325
- Allow removing packages by glob now that yum supports it (msivak).
  Resolves: rhbz#442325

* Wed Apr 16 2008 Chris Lumens <clumens@redhat.com> 11.1.2.113-1
- Require the latest version of libnl-devel.
  Resolves: rhbz#441922
- Fix definition of __libc_setlocale_lock for new glibc.
  Resolves: rhbz#441940
- Add support for the bcm5710 driver.
  Resolves: rhbz#442553
- Require the latest libdhcp (dcantrell).
  Resolves: rhbz#435978
- Fix networking tracebacks (pjones, clumens).
  Resolves: rhbz#442020

* Tue Apr 08 2008 Chris Lumens <clumens@redhat.com> 11.1.2.112-1
- Make isys.dhcpNetDevice() work in rescue mode (dcantrell).
  Related: rhbz#435978

* Wed Apr 02 2008 Chris Lumens <clumens@redhat.com> 11.1.2.111-1
- Don't rebuild the initrds if no modules were installed.
  Resolves: rhbz#439379
- Bootable requests can not be on logical volumes.
  Resolves: rhbz#439270
- Name the xen images for ia64 in the .treeinfo file (jgranado).
- Fix reporting on transaction errors (jgranado).
  Resolves: rhbz#437813
- Fix loop iteration in nl_ip2str (dcantrell).
  Resolves: rhbz#437773
- Allow GPT on ppc or ppc64 (dcantrell).
  Resolves: rhbz#438683

* Tue Mar 25 2008 Chris Lumens <clumens@redhat.com> 11.1.2.110-1
- Don't try to initialize iSCSI when the portal cannot be detected (msivak).
  Resolves: rhbz#435173

* Tue Mar 25 2008 Chris Lumens <clumens@redhat.com> 11.1.2.109-1
- Make sure DHCP works in rescue mode (dcantrell).
  Resolves: rhbz#435978

* Mon Mar 17 2008 Chris Lumens <clumens@redhat.com> 11.1.2.108-1
- Avoid SIGSEGV on s390x in netlink loop (dcantrell).
  Resolves: rhbz#436377

* Thu Mar  6 2008 Jeremy Katz <katzj@redhat.com> - 11.1.2.107-1
- Fix another case which could have None options
  Resolves: rhbz#435998

* Wed Mar 05 2008 Chris Lumens <clumens@redhat.com> 11.1.2.106-1
- Fix the case where we're checking for _netdev but options is None (pjones).
  Resolves: rhbz#435998

* Mon Mar 03 2008 Chris Lumens <clumens@redhat.com> 11.1.2.105-1
- Add support for _rnetdev mount option in fstab (pjones).
  Resolves: rhbz#435716
- Lots of network UI configuration fixes (dcantrell).
  Resolves: rhbz#432011
- Fix lvm error handling (msivak).
  Related: rhbz#224636

* Thu Feb 21 2008 Chris Lumens <clumens@redhat.com> 11.1.2.104-1
- Handle exceptions when setting up repos not enabled by a key.
  Resolves: rhbz#433028
- Show unconfigured interfaces as UNCONFIGURED (dcantrell).
  Related:  rhbz#275291

* Tue Feb 19 2008 Chris Lumens <clumens@redhat.com> 11.1.2.103-1
- Fix a traceback in the backported pkgorder fix.
  Resolves: rhbz#432006
- Fix wrong function names for iscsi login/start (pjones).
  Resolves: rhbz#433276

* Sat Feb 16 2008 Chris Lumens <clumens@redhat.com> 11.1.2.102-1
- Correct auth command reading problem for ks files (dcantrell).
  Related: rhbz#427388
- Use correct salt length for MD5, SHA256, & SHA512 (dcantrell).
  Related: rhbz#427388

* Wed Feb 13 2008 Chris Lumens <clumens@redhat.com> 11.1.2.101-1
- Make sure interface description is defined (dcantrell).
  Resolves: rhbz#432635
- Set an attribute when iscsid is started
  Resolves: rhbz#431904

* Mon Feb 11 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.100-1
- Better fixes for iscsi probing (pjones, jlaska)
  Related: rhbz#431924
- Make man pages work in the chrooted environment (jgranado)
  Resolves: rhbz#243443
- Use correct variable in comparison (jgranado)
  Related: rhbz#432035

* Fri Feb 08 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.99-1
- Prevent writing out IPV6ADDR=none lines to ifcfg-ethX files (jgranado)
  Resolves: rhbz#432035

* Thu Feb 07 2008 Chris Lumens <clumens@redhat.com> 11.1.2.98-1
- Fix an infinite loop in using libnl (dcantrell).
  Related: rhbz#303681

* Thu Feb 07 2008 Chris Lumens <clumens@redhat.com> 11.1.2.97-1
- Add module dependencies of qeth.ko.
  Resolves: rhbz#431922
- Make sure ISCSIADM and such are defined (pjones).
  Resolves: rhbz#431924
- Use libnl to read MAC and IP addresses (dcantrell).
  Resolves: rhbz#303681
- Fix usage of minstg2 vs. stage2 in low-mem cases (jgranado).
  Resolves: rhbz#207657

* Tue Feb 05 2008 Chris Lumens <clumens@redhat.com> 11.1.2.96-1
- Include libnssutil3.so in the initrd for s390 as well.
  Resolves: rhbz#431054
- Document the dhcptimeout parameter (msivak).
  Related: rhbz#198147, rhbz#254032

* Mon Feb 04 2008 Chris Lumens <clumens@redhat.com> 11.1.2.95-1
- Propagate hostname from stage 1 to stage 2 on s390x (dcantrell).
  Resolves: rhbz#354021

* Fri Feb 01 2008 Chris Lumens <clumens@redhat.com> 11.1.2.94-1
- Include libnssutil3.so for sshd on s390 (dcantrell).
- Remove old IP addresses from interface on reconfig (dcantrell).
  Resolves: rhbz#218273
- More fixes for .treeinfo (jgranado).

* Wed Jan 30 2008 Chris Lumens <clumens@redhat.com> 11.1.2.93-1
- Support network --bootproto=query in kickstart installs.
  Resolves: rhbz#401531
- Set the format flag for new volume groups (msivak).
  Resolves: rhbz#246523
- More fixes for .treeinfo (jgranado).
  Related: rhbz#253992

* Mon Jan 28 2008 David Cantrell <dcantrell@redhat.com> 11.1.2.92-1
- Fix remaining issues with createLuserConf() changes
  Related: rhbz#430237

* Mon Jan 28 2008 Chris Lumens <clumens@redhat.com> 11.1.2.91-1
- Include python-iniparse in stage2 for pirut.
  Resolves:  rhbz#430212
- Update the information contained in .treeinfo files (jgranado).
  Resolves: rhbz#253992
- Fix namespace issue with createLuserConf (dcantrell).
  Resolves: rhbz#430237
- Write /etc/resolv.conf and /etc/hosts in stage1 on s390 (dcantrell).
  Related: rhbz#428694, rhbz#216158

* Wed Jan 23 2008 Chris Lumens <clumens@redhat.com> 11.1.2.90-1
- Add the stage2 to the .treeinfo file (jgranado).
  Resolves: rhbz#253992
- Fix handling %packages section in output anaconda-ks.cfg file.
  Related: rhbz#280101
- Fix a traceback caused by the patch for 427388.
  Resolves: rhbz#429902
- Fix some additional errors in createLuserConf() (dcantrell).
  Resolves: rhbz#429902
- Fix iscsi so that mkinitrd can talk to the running daemon (pjones).

* Mon Jan 21 2008 Chris Lumens <clumens@redhat.com> 11.1.2.89-1
- Support SHA256/SHA512 password encoding from kickstart (dcantrell).
  Resolves: rhbz#427388

* Fri Jan 18 2008 Chris Lumens <clumens@redhat.com> 11.1.2.88-1
- Allow users to back up past instkey dialog (dlehman).
  Resolves: rhbz#252349
- Handle missing FTP files the same way as missing HTTP files (dlehman).
  Resolves: rhbz#350251
- Add support for iSCSI iBFT (msivak).
  Resolves: rhbz#307761
- Do not display NICs as UNCONFIGURED in network_text.py (dcantrell).
  Resolves: rhbz#275291
- If bootproto is dhcp, unset any static settings (dcantrell).
  Resolves: rhbz#218489
- Add support for the mptctl driver.
  Resolves: rhbz#382941
- Fix a traceback running pkgorder in non-base products (dgregor).
  Resolves: rhbz#317131
- Fix a traceback when adding zFCP disk without specifying details (msivak).
  Resolves: rhbz#428180
- Catch lvm tools errors when creating logical volumes (msivak).
  Resolves: rhbz#224636
- Add support for specifying the dhcp timeout (msivak).
  Resolves: rhbz#198147, rhbz#254032
- Don't add a trailing 1 to filesystem labels (jgranado).
  Resolves: rhbz#415861
- Add spufs support (jgranado).
  Resolves: rhbz#247720
- List iSCSI multipath devices in the installer UI. (dcantrell).
  Resolves: rhbz#391951
- Fix selected device when adding an advanced storage device (msivak).
  Resolves: rhbz#248447
- Add maketreeinfo.py script (jgranado).
  Resolves: rhbz#253992
- Make F12 work for the network config screen in text installs (jgranado).
  Resolves: rhbz#250982
- Add the ixgbe driver (jgranado).
  Resolves: rhbz#350911
- Write out IPV6INIT= to network-scripts (jgranado).
  Resolves: rhbz#243524
- Close md devices to fix RAID tracebacks (jgranado).
  Related: rhbz#208970
- Use input %packages section for anaconda-ks.cfg (msivak).
  Resolves: rhbz#280101
- Add option for selecting different comps file (msivak).
  Resolves: rhbz#352081
- Add nicdelay parameter (msivak).
  Resolves: rhbz#349521
- Be more accepting in which strings we wait for from sshd (alanm).
  Resolves: rhbz#286031
- Allow the use of double quotes in the pxeboot config file (jgranado).
  Resolves: rhbz#248170
- Read the nic info before showing the configuration window (jgranado).
  Resolves: rhbz#278451
- Make the back button work on the network config screen in loader (jgranado).
  Resolves: rhbz#233655
- Get lcs interface name correctly (msivak).
  Resolves: rhbz#237508
- Include more terminfo files to fix s390 telnet mode (msivak).
  Resolves: rhbz#231173
- Fix kickstart docs for --dhcpclass parameter (jgranado).
  Resolves: rhbz#248910
- Fix traceback when displaying autopartition error messages (jgranado).
  Resolves: rhbz#247257
- Fix comparison of unusual network interface names (jgranado).
  Resolves: rhbz#246135
- Populate the kickstart file dialog with the original value (jgranado).
  Resolves: rhbz#245936
- Make the man pages work in rescue mode (jgranado).
  Resolves: rhbz#243443
- Sort text package list (jgranado).
  Resolves: rhbz#242456
- Don't eject the cd before the %post scripts are run (jgranado).
  Resolves: rhbz#238711

* Wed Oct 17 2007 Chris Lumens <clumens@redhat.com> 11.1.2.87-1
- Prompt for manual network configuration in the loader if needed.
  Related: rhbz#296081

* Mon Oct 15 2007 Chris Lumens <clumens@redhat.com> 11.1.2.86-1
- Don't try to use DHCP in networks with static IP configuration.
  Resolves: rhbz#296081

* Wed Oct 03 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.85-1
- Check both IP structure members in getFileFromNfs()
  Resolves: rhbz#316251

* Thu Sep 27 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.84-1
- Check return values correctly on netlink_interfaces_ip2str() and
  netlink_interfaces_mac2str()
  Resolves: rhbz#230525
  Related: rhbz#209284

* Wed Sep 19 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.83-1
- Add cxgb3 driver (pjones)
  Resolves: rhbz#296791

* Tue Sep 18 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.82-1
- Fix kickstart over NFS installs on s390x (ks=nfs:host:/path)
  Resolves: rhbz#250689

* Mon Sep 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.81-1
- Make major and minor long ints in devMakeInode()
  Related: rhbz#218816

* Mon Sep 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.80-1
- Create all variations of tape drive device nodes (dlehman)
  Resolves: rhbz#218816

* Fri Sep 14 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.79-1
- Correct infinite loop problem with new recvfrom() code for reading large
  netlink messages
  Related: rhbz#230525
- Make sure we clear the netlink cache before looking up IP or MAC addrs
  Related: rhbz#235824

* Thu Sep 13 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.78-1
- Fix manual IPv4 configuration when adding an iSCSI device
  Related: rhbz#235824

* Wed Sep 12 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.77-1
- Revert netlink_init_interfaces_list() changes
  Resolves: rhbz#287541

* Tue Sep 11 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.76-1
- Fix going back to the network device selection screen in loader
  Resolves: rhbz#253285
- Rework netlink_get_interface_ip() to handle large recvfrom responses (pjones)
  Related: rhbz#230525
- Driver disk fixes (clumens)
  Related: rhbz#213318
- Make sure MACADDR is written to ifcfg-* files (bhinson)
  Related: rhbz#248049

* Wed Sep 05 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.75-1
- Fix network handling via CMS conf file on s390x
  Resolves: rhbz#278261

* Wed Sep 05 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.74-1
- Find all NICs with netlink call
  Related: rhbz#230525

* Tue Sep 04 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.73-1
- Handle empty VSWITCH parameter (bhinson AT redhat DOT com)
  Related: rhbz#248049

* Tue Sep 04 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.72-1
- Rebuild against kudzu-1.2.57.1.15
  Resolves: rhbz#276161

* Fri Aug 31 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.71-1
- Remove extra newtPopWindow() call
  Related: rhbz#260621

* Thu Aug 30 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.70-1
- Fix text wrap width on partition type combo (dlehman)
  Related: rhbz#221791
- Avoid SIGSEGV in for kickstart installs on Configure TCP/IP window
  Related: rhbz#260621

* Wed Aug 29 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.69-1
- Skip Configure TCP/IP window for kickstart installs
  Resolves: rhbz#260621
- Do not run _isys.vtActivate() on s390x
  Related: rhbz#217563
- Keep drive selection box disabled if user clicks Back (clumens)
  Related: rhbz#219207

* Mon Aug 27 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.68-1
- Do not return after NIC config for iSCSI setup
  Resolves: rhbz#233029

* Fri Aug 24 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.67-1
- Fix "no more mirrors" problems when retrieving packages (dlehman)
  Resolves: rhbz#240582
- Don't add duplicate fstab entries if the fstype is none (clumens)
  Resolves: rhbz#253485
- Allow users to change their NIC and reconfigure it in loader
  Resolves: rhbz#253285
- Validate IP addresses correctly for manual entry on s390x linuxrc
  Related: rhbz#234152
- Correct setting addon repository names (clumens)
  Related: rhbz#206152

* Fri Aug 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.66-1
- Select appropriate kernel devel package (dlehman)
  Related: rhbz#226784

* Fri Aug 17 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.65-1
- Don't assume tb[IFLA_ADDRESS] contains data
  Resolves: rhbz#252988
- Add support for VSWITCH and MACADDR conf variables on s390x
  Resolves: rhbz#248049
- Fix ks=nfs: regression on s390x
  Resolves: rhbz#250689

* Mon Aug 13 2007 Peter Jones <pjones@redhat.com> - 11.1.2.64-1
- Fix memory size comparison in PAE test.
  Related: rhbz#207573
- Add e1000e and igb modules.
  Resolves: rhbz#251733
  Resolves: rhbz#251735

* Fri Aug 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.63-1
- Disable zFCP device before removing LUN (bhinson AT redhat DOT com)
  Resolves: rhbz#249341

* Wed Aug 08 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.62-1
- Add a symlink in /etc to /mnt/runtime/etc/yum, handle kABI
  requires/provides (dlehman)
  Resolves: rhbz#241412
- Fix converting UI selections into which drives should be used for
  partitioning (clumens)
  Resolves: rhbz#247997

* Mon Aug 06 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.61-1
- Honor ip=<val>/ipv6=<val>/noipv4/noipv6 boot parameters and skip the
  loader configuration if enough settings are passed on the boot line
  Resolves: rhbz#246603

* Fri Jul 20 2007 Peter Jones <pjones@redhat.com> - 11.1.2.60-1
- Hopefully fix usb-storage reloading.  Still needs testing
  Related: rhbz#247830
- Ignore failure to unmount /mnt/source if we don't think there's a real mount
  (dlehman)
  Related: rhbz#223059
- Prevent SIGSEGV when going back from NFS entry box after manual IPv4
  configuration (dcantrell)
  Resolves: rhbz#248075
- Fix the timezone window (dcantrell)
  Resolves: rhbz#248928

* Wed Jul 18 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.59-1
- Correctly discover underlying physical disks for RAID devices (pjones)
  Resolves: rhbz#248616
- Mark iSCSI root with _netdev mount option (markmc AT redhat DOT com)
  Resolves: rhbz#244994
- Clear screen after post-install NIC settings
  Resolves: rhbz#248130
- Display mpath model and unit info on text partitioning screen
  Related: rhbz#185852

* Mon Jul 16 2007 Peter Jones <pjones@redhat.com> - 11.1.2.58-1
- Only skip redhat-lsb during dependency resolution if it's not
  the only thing left
  Resolves: rhbz#248195

* Thu Jul 12 2007 Peter Jones <pjones@redhat.com> - 11.1.2.57-1
- Only use GPT when we've got really big disks
  Resolves: rhbz#247830
- Allow ia64 virt installs without "debug" option
  Resolves: rhbz#246718
- Copy firmware files correctly from driver disks
  Related: rhbz#224076

* Thu Jul 12 2007 Peter Jones <pjones@redhat.com> - 11.1.2.56-1
- Save "nodmraid" option so mkinitrd won't turn it on during boot
  Related: rhbz#185852
- Don't mark partitions as bootable on GPT disks unless we're using EFI
  Related: rhbz#130236
- Fix size display errors with large disks
  Related: rhbz#130236

* Tue Jul 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.55-1
- Display mpath model information on the custom partitioning screen
  Related: rhbz#185852

* Tue Jul 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.54-1
- Add missing colon on an if statement in getMpathModel()
  Related: rhbz#185852
- Do not add extra 'mapper/' to fulldev in getMpathModel()
  Related: rhbz#185852

* Tue Jul 10 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.53-1
- Use scsi_id to gather WWID info in getMpathModel()
  Related: rhbz#185852
- Do not strip 'mapper/' from mpath device names in the partitioning UI
  Related: rhbz#185852

* Mon Jul 09 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.52-1
- If we have seen an mpath device, do not gather its WWID again
  Related: rhbz#185852
- Fix code indentation errors
  Related: rhbz#185852
- Fix errors in the getMpathInfo() function when executing multipath
  Related: rhbz#185852
- Display mpath devices without the 'mapper/' text
  Related: rhbz#185852
- Get WWID from bindings file if multipath command returns nothing
  Related: rhbz#185852
- Require that USB devices remain stable for a longer time period (pjones)
  Resolves: rhbz#222684

* Mon Jul 09 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.51-1
- Ignore empty lines when collecting WWIDs per mpath device
  Related: rhbz#185852
- Comment out existing blacklist and blacklist_exceptions blocks in the
  /etc/multipath.conf file
  Related: rhbz#185852
- Reset SELinux file contexts on multipath.conf and bindings files
  Related: rhbz#185852

* Fri Jul 06 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.50-1
- Read default multipath.conf values from either the target system or the
  anaconda stage2 environment.  Make sure we only read one WWID per mpath
  alias and log an error if we didn't.
  Related: rhbz#185852
- Install the PAE kernel when applicable (e.g., >4GB memory)
  Resolves: rhbz#207573
- Read mpathNNN devices when generating the bindings and multipath.conf files
  Related: rhbz#185852
- Make sure the partitioning UI screen displays WWID and model information
  for multipath devices
  Related: rhbz#185852
- Use GPT on all architectures with non-boot disks >=2TB (pjones)
  Resolves: rhbz#130236

* Thu Jul 05 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.49-1
- Generate multipath bindings and multipath.conf before package
  installation.  Use scsi_id to collect WWIDs rather than the multipath
  command to maintain consistency with what pyblock has done.
  Related: rhbz#185852

* Fri Jun 29 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.48-1
- Support new driver disk repo layout.
  Resolves: rhbz#213318
- Add missing TEXT_EDIT_BUTTON constants back (dcantrell).
  Resolves: rhbz#245606.
- Fix a traceback when writing out multipath configs (dcantrell).
  Related: rhbz#185852.

* Thu Jun 28 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.47-1
- Fix traceback when writing out repo lines.
  Resolves: rhbz#246084

* Wed Jun 27 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.46-1
- Create package header directory since yum doesn't anymore (katzj).
  Resolves: rhbz#245918
- Write out repo lines to anaconda-ks.cfg.
  Resolves: rhbz#206152
- Enable multipathd on mpath installs (dcantrell).
  Resolves: rhbz#243421
- Pull scsi_id from /lib/udev, include kpartx and mpath commands (dcantrell).
  Resolves: rhbz#185852
- Display model information in the UI for mpath devices (dcantrell).
  Resolves: rhbz#208341
- Add nspr libraries and additional nss libraries.
  Related: rhbz#245215
- Fox error reporting in iscsi connection code (pjones).

* Tue Jun 26 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.45-1
- Add keyutils-libs (clumens)
  Resolves: rhbz#245734
- Set up and use yum backend plugins (dlehman)
  Resolves: rhbz#241412
- Install debuginfo packages (james.antill)
  Resolves: rhbz#236033

* Tue Jun 26 2007 James Antill <jantill@redhat.com> - 11.1.2.44-2
- Remove default exclude for debuginfo.
- Resolves: rhbz#236033

* Fri Jun 22 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.44-1
- Fix typo in multipath part of making stage2 image (dcantrell).
- Include the scsi_id command in the stage2 image (dcantrell).
  Resolves: rhbz#185852
- Write out a minimal /etc/multipath.conf (dcantrell).
  Related: rhbz#185852

* Thu Jun 21 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.43-1
- Correct iSCSI portal discovery
  Resolves: rhbz#233029

* Thu Jun 21 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.42-1
- Handle ip=dhcp correctly so kickstart files are fetched automatically
  Resolves: rhbz#244418
- Write newline after NETWORKING_IPV6=yes line
  Resolves: rhbz#226911
- Make sure libnss3.so is included in the stage2 image
  Resolves: rhbz#245215

* Wed Jun 20 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.41-1
- Include Xen block devices in the blacklist_exception block
  Related: rhbz#243527
- Remove the lvm.conf filter modification to avoid regression
  Related: rhbz#243531
- Fix traceback when looking for multipath devices to collect WWIDs for
  Related: rhbz#185852

* Tue Jun 19 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.40-1
- Add libselinux-python to the stage2 image (clumens)
  Resolves: rhbz#244892
- Copy static multipath commands in to stage2 image
  Related: rhbz#185852
- Filter /dev/mapper/mpath* and /dev/mpath* in lvm.conf
  Related: rhbz#185852
- Run /sbin/multipath and copy generated bindings file to target system,
  populate blacklist_exception block in multipath.conf with WWIDs from
  generated bindings file
  Related: rhbz#185852

* Mon Jun 18 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.39-1
- Flush driveDict so zFCP are picked up after being brought online
  Resolves: rhbz#236903
- Warn user when more than 15 partitions found on a libata-controlled disk
  Resolves: rhbz#238858
- Add mpath filters to lvm.conf on target system
  Resolves: rhbz#243531
- Make sure target system has multipath bindings file, add multipath WWIDs
  to blacklist_exception block in multipath.conf
  Resolves: rhbz#243527
- Always print device node name for mpath devices in fstab
  Resolves: rhbz#243532

* Thu Jun 14 2007 Chris Lumens <clumens@redhat.com> - 11.1.2.38-1
- Import tempfile to fix kickstart install tracebacks.
  Resolves: rhbz#244240

* Tue Jun 12 2007 David Cantrell <dcantrell@redhat.com> - 11.1.2.37-1
- Add support for Areca RAID controllers (clumens)
  Resolves: rhbz#238014
- Pass -br to the X server so there is no more hatch (clumens)
  Resolves: rhbz#195919
- Echo 1 to each zFCP LUN to make entire device available (dcantrell)
  Resolves: rhbz#207097
- Prevent static network configuration from failing (dcantrell)
  Resolves: rhbz#221660
- Allow user to skip entering a gateway or nameserver when adding an iSCSI
  address (dcantrell)
  Resolves: rhbz#235824
- Do not log errors when unmounting /mnt/source if it was not supposed to
  be mounted in the first place (dlehman)
  Resolves: rhbz#223059
- Handle F13 shortcut key on installation key dialog (dlehman)
  Resolves: rhbz#210673
- Create nodes for and probe for tape drives (dlehman)
  Resolves: rhbz#218816
- Improve configuration screens for systems with multiple NICs (dcantrell)
  Resolves: rhbz#218200
- Per-interface IPv4 and IPv6 configuration (dcantrell)
  Resolves: rhbz#213110
  Related: rhbz#218200
- Add logging for yum logging (katzj)
  Resolves: rhbz#212259
- Only ask user to run VNC is Xvnc is present (dcantrell)
  Resolves: rhbz#217563
- Add /sbin/sfdisk (dcantrell)
  Resolves: rhbz#224297
- For /dev/hvc0 terminals, set TERM to vt320 (dcantrell)
  Resolves: rhbz#219556
- Set DHCPv6_DISABLE flag when using IPv6 auto neighbor discovery (dcantrell)
  Resolves: rhbz#231645
- Handle more than 10 Ethernet interfaces (dcantrell)
  Resolves: rhbz#230525
- Support OSA layer 2 networking on zSeries (bhinson)
  Resolves: rhbz#233376
- Handle ksdevice=BOOTIF correctly (dcantrell)
  Resolves: rhbz#209284
- Fix text wrap width in auto partitioning text mode screen (dlehman)
  Resolves: rhbz#221791
- Correctly count SCSI disk devices (dlehman)
  Resolves: rhbz#230526
- Include /usr/sbin/dmidecode on ia64 (dlehman)
  Resolves: rhbz#232947
- Bind mount /dev/pts in rescue mode (dlehman)
  Resolves: rhbz#228714
- Do not ignore productpath in pkgorder (dlehman)
  Resolves: rhbz#230487
- Describe 'nfs --opts' in kickstart-docs.txt (clumens)
  Resolves: rhbz#234187
- Sanity check network info on zSeries (dcantrell)
  Resolves: rhbz#234152
- Do not bring up network in stage 2 if it's already up (dcantrell)
  Resolves: rhbz#232400
- Do not traceback when trying to remove the /mnt/sysimage tree (dcantrell)
  Resolves: rhbz#227650
- Write correct infor to /etc/sysconfig/network (dcantrell)
  Resolves: rhbz#222147
- If custom partitioning is selected, make drive selection non
  sensitive (clumens)
  Resolves: rhbz#219207
- Do not traceback if users neglects to enter an lvsize (clumens)
  Resolves: rhbz#221253
- Do not load a module when the kickstart device line is incorrect (clumens)
  Resolves: rhbz#227510
- Handle errors resulting from malformed repositories (clumens)
  Resolves: rhbz#219274
- Remove all invalid RAID requests when using kickstart (clumens)
  Resolves: rhbz#235279
- Avoid traceback getting the PID of iscsiadm (clumens)
  Resolves: rhbz#223257
- Make sure kickstart scripts execute with correct working dir (clumens)
  Resolves: rhbz#237317
- Support multiple ksappend lines (clumens)
  Resolves: rhbz#222201
- Write out fstab after migrate (clumens)
  Resolves: rhbz#223215
- Make the packages section in anaconda-ks.cfg match UI selections (clumens)
  Resolves: rhbz#227383, rhbz#231121, rhbz#235881
- Copy volume group format attribute to new request (clumens)
  Resolves: rhbz#217585
- Use /dev/ nodes for probing RAID superblocks (clumens)
  Resolves: rhbz#208970
- Put more space between device description and the stripe for tall
  languages (clumens)
  Resolves: rhbz#217294
- Add netxen_nic driver (clumens)
  Resolves: rhbz#230245
- Provide detailed disk info in text mode partitioning screen (dcantrell)
  Resolves: rhbz#235054
- If wrong interface is selection, allow user to choose another one (clumens)
  Resolves: rhbz#213787
- Focus installation key text box and populate fields correctly (dlehman)
  Resolves: rhbz#223831
- Make sure the regkey settings are written to anaconda-ks.cfg (dlehman)
  Resolves: rhbz#221450
- Select kernel-xen-devel when optional packages selected (dlehman)
  Resolves: rhbz#226784
- Fix typo in message shown when user skips entering the install key (dlehman)
  Resolves: rhbz#224491
- If autopart selection is custom, make sure review checkbox is active and
  not sensitive. (dlehman)
  Resolves: rhbz#220951
- Write NETWORKING_IPV6=no to /etc/sysconfig/network if IPv6 is disabled
  during installation. (dcantrell)
  Resolves: rhbz#226911
- Fix input validation loop in manual network config in loader
  Resolves: rhbz#223193 (dcantrell)
- Make "description" translate correctly (pjones)
  Resolves: rhbz#216067

* 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).