summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: bc26d773302bbcd2fdc3f1dcdc6805cb5bf76fb7 (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
2007-01-15 09:40  Pixel <pixel at mandriva.com>

	* rebootin: - grub: handle short labels (cf BOOT_IMAGE=<label>)
	  - call usage before calling detectloader when no parameter are
	  given
	  - add options to "usage: rebootin ..."
	  - clean (including some perl_checker compliance)
	  - drop dead variable $grub_once

2006-11-24 08:02  Pixel <pixel at mandriva.com>

	* rebootin: fix noreboot with grub (#27292)

2006-11-14 16:12  Pixel <pixel at mandriva.com>

	* kheader.pl: don't depend on cmp, it's not useful (?)

2006-10-25 10:18  Pixel <pixel at mandriva.com>

	* Makefile: handle "savedefault --once" (grub, #26700)

2006-10-25 10:16  Pixel <pixel at mandriva.com>

	* Makefile, bootloader-utils.spec: move .spec to build system

2006-10-25 10:14  Pixel <pixel at mandriva.com>

	* rebootin: handle "savedefault --once" (grub, #26700)

2006-10-25 10:02  Pixel <pixel at mandriva.com>

	* rebootin.8: remove obsolete mail address of chmouel

2006-10-25 09:42  Pixel <pixel at mandriva.com>

	* .cvsignore: obsolete

2006-08-11 07:12  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* soft/bootloader-utils/trunk/bootloader-utils.spec,
	  soft/bootloader-utils/trunk/kheader.pl: handle default, legacy &
	  xen0 kernels

2006-08-11 05:19  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* soft/bootloader-utils/trunk/ChangeLog: Generated by svn2cl the
	  11_Aug


2006-05-30 13:34  Pixel <pixel at mandriva.com>

	* soft/bootloader-utils/trunk/bootloader-utils.spec:

2006-05-30 13:10  Pixel <pixel at mandriva.com>

	* soft/bootloader-utils/trunk/bootloader-utils.spec,
	  soft/bootloader-utils/trunk/kheader.pl: rename *desktop586 and
	  *desktop686 to *desktop for better consistency

2006-05-30 07:39  Pixel <pixel at mandriva.com>

	* soft/bootloader-utils/trunk/bootloader-utils.spec,
	  soft/bootloader-utils/trunk/kheader.pl: - add support for mdv
	  extension (eg: 1mdv instead of 1mdk)
	  - add support for "laptop" kernels (was mm kernels)
	  (from Thomas Backlund)

2006-05-23 20:24  Olivier Blin <oblin at mandriva.com>

	* soft/bootloader-utils/trunk,
	  soft/initscripts/trunk/mandrake/loader: move
	  soft/initscripts/trunk/mandrake/loader in
	  soft/bootloader-utils/trunk

2006-05-16 08:21  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 16_May

2006-05-16 08:19  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec: -
	  kheader: add support for tmb kernels
	  - /etc/init.d/kheader should not be a config file
	  - s/Mandrakesoft/Mandriva/

2006-05-15 10:29  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kheader.pl: add support
	  for tmb kernels

2006-05-11 12:45  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/gprintify.py,
	  soft/initscripts/trunk/mandrake/loader/detectloader,
	  soft/initscripts/trunk/mandrake/loader/detectloader.8,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/kernel_remove_initrd,
	  soft/initscripts/trunk/mandrake/loader/kheader.pl,
	  soft/initscripts/trunk/mandrake/loader/rebootin,
	  soft/initscripts/trunk/mandrake/loader/rebootin.8,
	  soft/initscripts/trunk/mandrake/mandrake_everytime,
	  soft/initscripts/trunk/mandrake/mandrake_firstime,
	  soft/initscripts/trunk/mandrake/partmon/partmon.pl,
	  soft/initscripts/trunk/mandrake/supermount.8: more
	  s/Mandrakesoft/mandriva/

2006-01-08 23:06  Olivier Blin <oblin at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 09_jan
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.9-6mdk

2006-01-08 20:45  Olivier Blin <oblin at mandriva.com>

	* soft/initscripts/trunk/mandrake/dm,
	  soft/initscripts/trunk/mandrake/loader/kheader.pl,
	  soft/initscripts/trunk/mandrake/partmon/partmon,
	  soft/initscripts/trunk/rc.d/init.d/netfs,
	  soft/initscripts/trunk/rc.d/init.d/network,
	  soft/initscripts/trunk/rc.d/init.d/rawdevices: convert
	  X-Parallel- tags to LSB

2006-01-01 17:45  Olivier Blin <oblin at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 01_jan

2006-01-01 17:43  Olivier Blin <oblin at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.9-5mdk

2006-01-01 17:42  Olivier Blin <oblin at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/Makefile: workaround
	  presence of debug package to detect correct version and release

2006-01-01 17:35  Olivier Blin <oblin at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kheader.pl: parallel init
	  support

2005-08-29 11:28  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec,
	  soft/initscripts/trunk/mandrake/loader/installkernel: nice
	  handling of "make modules_install" not done
	  (when installing own built kernel) (bugzilla #17981)

2005-08-11 01:14  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  commit Nicolas Lécureuil's changes

2005-04-01 13:05  Olivier Blin <oblin at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: do not
	  warn that the kernel is a boot kernel when removing it

2004-11-12 09:43  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 12_Nov
	* soft/initscripts/trunk/mandrake/loader,
	  soft/initscripts/trunk/mandrake/loader/.cvsignore,
	  soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec,
	  soft/initscripts/trunk/mandrake/loader/kheader,
	  soft/initscripts/trunk/mandrake/loader/kheader.pl: - kheader is
	  now generated from kheader.pl when building package
	  - kheader: add i586-up-1GB and i686-up-64GB (bugzilla #12189)

2004-09-09 08:09  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kheader: add i586-up-1GB

2004-08-26 05:58  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 26_Aug

2004-08-26 05:55  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 26_Aug

2004-08-26 05:54  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec,
	  soft/initscripts/trunk/mandrake/loader/installkernel: added -C
	  option to use cramfs

2004-08-26 05:53  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 26_Aug

2004-07-18 04:51  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 18_Jul

2004-07-18 04:50  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.8-6mdk
	* soft/initscripts/trunk/mandrake/loader/installkernel: don't do
	  anything DURING_INSTALL

2004-07-18 04:39  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 18_Jul
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.8-5mdk
	* soft/initscripts/trunk/mandrake/loader/installkernel: - ensure
	  the PATH contains /sbin and /usr/sbin
	  - force rebuilding the initrd in "copy" mode
	  (since one may build more than one kernel with the same
	  version)
	  - use --no-short-name in "copy" mode

2004-07-05 02:38  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 05_Jul

2004-07-05 02:37  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec,
	  soft/initscripts/trunk/mandrake/loader/installkernel:
	  bootloader-config prefers --no-short-name instead of --no-link

2004-07-01 08:39  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 01_Jul

2004-07-01 08:38  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  require drakxtools-backend instead of drakxtools-newt

2004-06-30 01:29  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 30_Jun
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.8-2mdk

2004-06-30 01:20  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: -
	  installkernel *is* used for copying installing kernels in /boot
	  (cf arch/i386/boot/install.sh used by kernel's "make install")
	  - some "cleanup"

2004-06-29 04:58  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 29_Jun

2004-06-29 04:50  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec,
	  soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/detectloader,
	  soft/initscripts/trunk/mandrake/loader/detectloader.8,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig,
	  soft/initscripts/trunk/mandrake/loader/lilo,
	  soft/initscripts/trunk/mandrake/loader/make-initrd,
	  soft/initscripts/trunk/mandrake/loader/yaboot: - installkernel:
	  - it is now a wrapper to bootloader-config (in drakxtools-newt)
	  - always have option AUTOREMOVE
	  - always have option NOCOPY (was useful to copy your home
	  built kernel)
	  => option NOCONFIG deprecated
	  - force option -s when installing and -S when removing
	  (ie always do/remove the "build" symlink to the source tree)
	  - force bootloader auto-detection (options AUTODETECT and
	  LOADER are deprecated)
	  - option OPTIONS is removed (what was it for exactly?)
	  - detectloader is now a wrapper to bootloader-config (in
	  drakxtools-newt)
	  - helper scripts make-initrd, lilo, grub and yaboot obsolete

2004-06-22 11:59  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/make-initrd: fix typo

2004-05-17 06:44  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  add prereq on rpm-helper

2004-05-17 06:37  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 17_Mae

2004-05-17 06:36  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.7-1mdk

2004-05-17 06:30  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm:
	  (getroot_from_fstab) sanitize /etc/fstab parsing:
	  - strip comments
	  - strip all spaces
	  - do not match "/foobar/" when looking for "/"
	  - name fstab fields (purely cosmetic change)
	  - simplify by reusing cat_()
	* soft/initscripts/trunk/mandrake/loader/grub: simplify
	  /boot/grub/menu.lst writing by reusing MDK::Common's
	  substInFile()
	* soft/initscripts/trunk/mandrake/loader/grub:
	  (get_boot_partitions) simplify by reusing cat_()

2004-05-17 06:29  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/grub:
	  (get_boot_partitions) handle "LABEL=foobar" when looking for
	  boot device:
	  - copy unmakedev from libDrakX's common.pm
	  - use it to lookup /dev/root into /proc/partitions when a label
	  is found
	  (minimal LABEL=foobar managment for mdkmove+, generic
	  LABEL=foobar support
	  is still lacking)
	* soft/initscripts/trunk/mandrake/loader/grub:
	  (get_boot_partitions) name fstab fields (purely cosmetic change)
	* soft/initscripts/trunk/mandrake/loader/grub:
	  (get_boot_partitions) sanitize loop:
	  - strip all spaces
	  - do not match "/foobar/" when looking for "/"
	  - do not match "/foobar/boot" when looking for "/boot"

2004-03-02 11:38  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 02_mar

2004-03-02 11:37  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.6-7mdk

2004-03-02 11:36  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/yaboot: getroot() don't
	  have argument

2004-03-02 11:14  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 02_mar

2004-03-02 11:13  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.6-6mdk

2004-03-02 11:01  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 02_mar

2004-03-02 10:36  Nicolas Planel <nplanel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: remove
	  hdX=ide-scsi for 2.4 and 2.6 kernel

2004-03-01 17:16  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: fix append
	  parsing

2004-02-27 14:38  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  add bug ref in changelog

2004-02-27 08:09  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: kill
	  getVarsFromSh() gratuitously copied from MDK::Common whereas we
	  already use MDK::Common

2004-02-27 07:53  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 27_C'hw
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.6-5mdk

2004-02-27 07:51  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/kernel_remove_initrd,
	  soft/initscripts/trunk/mandrake/loader/lilo,
	  soft/initscripts/trunk/mandrake/loader/make-initrd,
	  soft/initscripts/trunk/mandrake/loader/rebootin: from Thomas
	  Backlund <tmb@mandrake.org>:
	  - typo fixes
	  - make some messages somewhat more understandable

2004-02-27 07:45  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/grub: when boot loader is
	  grub, do not remove unrelated kernel entries

2004-02-27 07:43  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: in debugging
	  mode, ignore missing kernels

2004-01-26 14:33  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: *** empty log
	  message ***

2004-01-26 14:28  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: (cat_) make it
	  perl_checker compliant

2004-01-26 14:27  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: use
	  s/grep/any/ when possible

2004-01-26 14:26  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: reindent

2004-01-26 14:24  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: perl_checker fixes

2004-01-19 14:28  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: cleanup
	  sanitize_ver

2003-11-12 12:38  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 12_Nov
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec,
	  soft/initscripts/trunk/mandrake/loader/detectloader: fix
	  detectloader typo (perl now reports an error instead of silently
	  ignoring the pb)

2003-09-17 10:21  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  typo fix

2003-09-17 10:06  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 17_sep

2003-09-17 10:05  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.6-3mdk
	* soft/initscripts/trunk/mandrake/loader/grub: when configuring
	  grub, find finding the root partition when /etc/fstab
	  has commented out lines
	  
	  else, get_boot_partitions() may return "#/dev/hda1" instead of
	  "/dev/hda1" and the convert_grub_part() caller horribly die with
	  the
	  (cryptic) "Can't convert grub_partition" message.

2003-09-17 10:02  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/Makefile: add localsrpm
	  target

2003-09-08 12:47  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 08_Sep
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.6-2mdk

2003-09-05 07:48  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 05_Sep

2003-09-05 03:54  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.6 version

2003-09-05 03:42  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kheader: kheader makes
	  more sense

2003-09-05 03:15  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: remove unused
	  code & add support for -mdkver-cpu-nproc-ver kernels

2003-09-03 14:45  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 03_Sep
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.5-1mdk
	* soft/initscripts/trunk/mandrake/loader/Makefile: added kheader
	  management

2003-09-03 14:44  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kheader: first version

2003-09-03 08:24  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: fix typo
	  (Thomas Backlund)

2003-08-30 19:10  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 30_Aug
	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.4-1mdk

2003-08-29 17:17  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  remove more slashes and convince it that new kernels are also
	  from Mandrake

2003-08-29 17:16  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  remove more slashes and convince it that new kernels are also
	  from Mandrake

2003-08-29 17:15  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: Add more
	  things to strip names.

2003-08-21 09:08  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 21_Aug

2003-08-21 09:05  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  Obsoletes/Provides kernel-utils

2003-08-21 09:03  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/lilo: also strip \n

2003-08-21 00:21  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  1.3 version

2003-08-21 00:20  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 21_Aug

2003-08-21 00:17  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: cd only
	  for NOCOPY

2003-08-18 15:06  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec:
	  renamed bootloader-utils

2003-08-18 08:38  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec: 1.2

2003-08-18 08:37  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/Makefile: switch name to
	  bootloader-utils

2003-08-18 08:36  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/bootloader-utils.spec:
	  first version

2003-08-14 09:36  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/lilo: "blah" and blah
	  should match only blah

2003-08-13 20:16  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 13_Aug
	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: v 1.1

2003-08-13 20:13  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 13_Aug
	* soft/initscripts/trunk/mandrake/loader/installkernel: add proper
	  quoting

2003-08-13 20:12  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: v 0.8

2003-08-13 18:30  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: shell
	  don't like spaces after =

2003-08-13 18:19  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 13_Aug
	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: 0.7
	  version

2003-08-13 18:16  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 13_Aug
	* soft/initscripts/trunk/mandrake/loader/installkernel: be sure
	  that -S and -s works

2003-08-13 14:25  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 13_Aug

2003-08-13 12:53  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: add variable

2003-08-13 12:52  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec:
	  version 0.5

2003-08-13 12:50  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: new sanitize
	  ver for new kernels

2003-08-13 11:57  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: v 0.4
	  & use _sbindir

2003-08-13 11:56  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: minor cleanup
	* soft/initscripts/trunk/mandrake/loader/Makefile:
	  kernel_remove_initrd is also a SH script

2003-08-13 11:33  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/lilo: this time spaces at
	  the end of lines doesn't matter

2003-08-13 11:31  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: spelling typo

2003-08-13 09:57  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: add
	  kernel_remove_initrd

2003-08-13 09:55  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel_remove_initrd:
	  file to remove initrd's

2003-08-13 09:54  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: cleanup
	  and add source options

2003-08-13 00:36  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: remove -q
	  (quiet option) not implemented

2003-08-13 00:31  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: remove -r
	  unused option and add cd

2003-08-12 14:35  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo,
	  soft/initscripts/trunk/mandrake/loader/yaboot: remove vmlinuz-
	  from sanity_ver and all its callers

2003-08-07 23:25  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/lilo: work when kernel
	  name ends in spaces

2003-08-04 19:07  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 04_Aug
	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec:
	  0.2-1mdk

2003-08-04 14:49  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: Generated by
	  cvs2cl the 04_Aug

2003-08-04 14:44  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: 0.1

2003-07-21 20:55  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/ChangeLog: first version

2003-07-21 20:51  Juan Quintela <quintela at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: this
	  is a test

2003-07-21 20:45  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: added
	  a conflict with the initscripts packages that contains the same
	  files

2003-07-21 20:35  Frederic Lepied <flepied at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/Makefile: added rules to
	  build rpm packages
	* soft/initscripts/trunk/mandrake/loader/kernel-utils.spec: first
	  version from Juan

2003-07-14 19:27  Thierry Vignaud <tvignaud at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/detectloader: fix
	  bootloader detection when getting devfs names

2003-07-03 11:26  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/detectloader: Allow
	  detectloader to run on non-lilo systems. (Ben Reser)

2003-03-20 14:00  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: Make backup of old
	  entry when it not exiting for the old default
	  (problem show all the time at first new kernel ugprade).

2003-03-20 12:58  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Change adress
	  reporting to Cooker.

2003-03-20 12:57  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Don't
	  regenerate if the initrd is already here.

2003-03-17 15:26  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/detectloader: Update mbr
	  detection table from drakx. First try to detect the
	  partition from boot= of lilo.

2003-02-03 15:28  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Add list option.

2003-02-03 10:52  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Support of
	  latest kernel naming scheme

2003-01-13 11:01  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Correct
	  lilo.conf entry detection when there is " inside.

2002-11-16 21:30  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/yaboot: Update ofpath,
	  ybin paths.

2002-11-07 13:09  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/detectloader: PPC -
	  Handle RS6K yaboot detection.

2002-11-07 11:59  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/detectloader: Rework PPC
	  detection, can't always count on "bootstrap" for user created.

2002-08-15 10:11  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: Fix
	  installkernel to handle user built mdkcustom without emailing
	  Chmouel

2002-08-01 13:12  Warly <warly at mandriva.com>

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig,
	  soft/initscripts/trunk/mandrake/loader/make-initrd: add oden
	  option to pass option to make-initrd

2002-06-23 19:12  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/loader/grub:
	  mandrake/loader/grub: handle fstab devices using devfs names
	  (fix problem reported by Alexander Skwar)

2002-03-12 15:12  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/yaboot: fix installkernel
	  yaboot entry for seperate /boot

2002-02-14 16:34  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/detectloader: Return
	  always aboot on alpha.

2002-02-08 16:23  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Don't add
	  quiet to options when the bootsplash theme say no.

2002-02-08 15:51  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  Bootsplash things are moved to his config files.

2002-02-04 17:00  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  Add option LOGO_CONSOLE=no Say yes here if you want to leave the
	  logo on the console.

2002-01-30 14:39  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  Add option SPLASH= for boot splash image.

2002-01-29 22:09  Guillaume Cottenceau

	* soft/initscripts/trunk/mandrake/loader/detectloader: duplicate
	  signatures for grub unecessary

2002-01-24 22:47  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/loader/detectloader:
	  mandrake/loader/installkernel: detect the now-nice-magic of grub

2002-01-24 16:50  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/make-initrd: Add support
	  for BOOT kernel, cleanup remove_link make it a litle less stupid
	  (and i am if i wrote that stuff)

2002-01-24 16:48  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/detectloader: Add
	  detection for latest grub (pixel)

2002-01-24 15:40  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: forgot to
	  remove the preceeding fi

2002-01-24 15:32  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel: add PPC
	  version of check for bootloader config

2002-01-24 14:28  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Make the
	  check for /boot/grub/menu.lst /etc/lilo.conf only x86 archs.

2002-01-22 20:22  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Remove the
	  DURING_INSTALL check it breaks rpmdrake instead checking
	  menu.lst, lilo.conf before generating..

2002-01-16 21:39  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Don't exist
	  when kernel_version_of_entry don't follow
	  initrd_version_of_entry just warning.

2002-01-07 15:52  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/detectloader,
	  soft/initscripts/trunk/mandrake/loader/detectloader.8,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/lilo,
	  soft/initscripts/trunk/mandrake/loader/make-initrd,
	  soft/initscripts/trunk/mandrake/loader/rebootin,
	  soft/initscripts/trunk/mandrake/loader/yaboot: Update copyright.

2002-01-04 16:54  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel:
	  make-initrd is sh script now (gb)

2001-12-24 13:16  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Add
	  documentation and cleaning.

2001-12-24 11:37  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/make-initrd: Add linus
	  and mosix to valid mdk kernels.
	  Check if it is a valid mdk kernels even when no initrd.
	  installkernel different links for different vmlinuz version.

2001-12-10 10:02  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/Makefile: make-initrd is
	  now sh script.

2001-12-05 11:36  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/make-initrd: Copyright
	  update

2001-12-05 11:35  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/make-initrd: Rewrite it
	  in shell no need to do perl when we launch only shell command.

2001-12-05 10:56  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: fix comment.

2001-12-05 10:54  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Do
	  something smarter with arg parsing.

2001-12-04 14:37  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo,
	  soft/initscripts/trunk/mandrake/loader/yaboot: New function
	  sanitize_ver to detect all kind of kernels naming and
	  sanitize (new_mdk, old_mdk, linus-vanilla, linus-pre) like the
	  old one
	  to still have backward compatibility with old config files. Make
	  the
	  loader using it.

2001-12-04 14:22  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/detectloader,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo,
	  soft/initscripts/trunk/mandrake/loader/make-initrd,
	  soft/initscripts/trunk/mandrake/loader/rebootin,
	  soft/initscripts/trunk/mandrake/loader/yaboot: Remove trailing
	  whitespace.

2001-12-04 13:19  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Make the
	  copy to vmlinuz.old more robust check if it is a link before
	  and try to copy the vmlinuz.old only if the one installed != the
	  one
	  already installed (guess nobody will understand that but yes
	  this is
	  smarter things update ;)).

2001-11-20 08:53  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: When
	  NOLINK=yes set the right options (andrej).

2001-11-15 11:46  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Remove memtest
	  crunch from here

2001-11-15 11:34  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Call with
	  perl the configurator

2001-10-30 23:43  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/yaboot: another yaboot
	  mod for PPC, eliminate root=root=/dev/hdX

2001-10-30 16:12  Stew Benedict <sbenedict at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/yaboot: update yaboot
	  script to work with new common.pm setup

2001-10-18 10:11  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin.8: Upgrade
	  documentation with new -n option.

2001-10-18 10:10  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Add switch -n
	  to allow to just set the flags but don't reboot directly.

2001-10-17 15:43  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Close file after
	  open it before moving.

2001-10-17 15:12  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Don't
	  make-initrd when we are in REMOVE mode.

2001-10-17 14:26  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Die instead of
	  print STDERR if we have in unknow option.

2001-10-17 14:18  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/make-initrd: Fix stupid
	  bug in make-initrd when -L is used in argument parsing.

2001-10-17 08:31  Stefan Siegel <siegel at linux-mandrake.com>

	* soft/initscripts/trunk/mandrake/loader/common.pm: s/Look/Looks/
	  s/unknow/unknown/

2001-10-16 11:51  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Fix another
	  bug in kernel/initrd comparaisons.

2001-10-15 12:51  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Really check
	  comparaision of kernel between initrd and vmlinuz among
	  with others cleanup/fixes.

2001-10-15 11:42  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Fix stupid bug
	  of too fast bugfixes :p
	* soft/initscripts/trunk/mandrake/loader/make-initrd: Add check if
	  there is a /lib/modules/$kernel_version before launching
	  mkinitrd.

2001-10-11 15:14  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Fix
	  check_default_entry() cleanup the code there also...

2001-10-08 09:28  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: When adding
	  from fstab return with root= the partition.

2001-10-05 14:56  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: Rework the root
	  detection to make sure to include the sysconfig
	  options, use the same root strategey for lilo and grub. Make
	  sure to
	  don't add too much \n in the config files and nasty it.

2001-10-05 13:19  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: When we are in
	  remove and there are no entry then exit.

2001-10-05 13:08  Stefan Siegel <siegel at linux-mandrake.com>

	* soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  fixed a typo ("yo" instead of "you")

2001-10-05 12:40  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/lilo: Cleanup code for
	  getroot;

2001-10-05 08:28  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/make-initrd: Make
	  relative symlinks.

2001-10-05 08:21  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  Ignore the Autoremove=yes we use it only when install rpm kernel.

2001-09-28 11:32  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/detectloader,
	  soft/initscripts/trunk/mandrake/loader/detectloader.8,
	  soft/initscripts/trunk/mandrake/loader/rebootin,
	  soft/initscripts/trunk/mandrake/sound/alsa.utils,
	  soft/initscripts/trunk/mandrake/supermount.8: Upgrade copyright.

2001-09-24 14:06  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  Fix wrong comment.

2001-09-17 09:00  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: If NOLINK
	  then even for initrd don't do a link.

2001-08-23 15:03  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Use fstab to
	  get the root filesystem if we fail in /proc/cmdline (aka:
	  not for grub).

2001-08-16 12:54  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub: Fix grub removal.

2001-08-16 09:09  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Do a -f.

2001-08-04 19:58  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/detectloader: re-add
	  yaboot detection

2001-08-03 22:07  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/loader/detectloader: - make
	  detectloader works with devfs device naming (even when devfs is
	  not mounted :)
	  - detectloader now requires perl-MDK-Common, adding it to
	  Requires (i wonder why perl-base was not required yet!)

2001-06-14 13:32  Chmouel Boudjnah

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/Makefile,
	  soft/initscripts/trunk/mandrake/loader/Makefile: Bump to version
	  5_87
	  Fix install with new fileutils install.

2001-05-23 11:35  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/yaboot: Set the name of
	  Stew instead of my (aka: bug him for yaboot ;)).

2001-05-23 11:33  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/Makefile: Install yaboot
	  file on ppc.

2001-05-23 11:31  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/detectloader,
	  soft/initscripts/trunk/mandrake/loader/detectloader.8,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/rebootin,
	  soft/initscripts/trunk/mandrake/loader/yaboot: Add yaboot
	  support from Stew Benedict <sbenedict@mandrakesoft.com>.

2001-04-30 19:37  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/detectloader: If user has
	  specified a variable DEFAULT_LOADER="lilo" or grub then
	  print it and exist (aka: don't detect).

2001-04-30 05:09  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Detect which vga we
	  running by the BOOT_IMAGE= we have booted (via
	  cmdline) and what it set lilo.conf.

2001-04-27 14:27  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Fix typo in
	  message by David Relson <relson@osagesoftware.com>.

2001-04-20 09:42  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Don't
	  remove default System.map and default config.

2001-04-17 15:49  Fançois Pons

	* soft/initscripts/trunk/mandrake/loader/detectloader: if multiple
	  MBR are found, try the first one instead of the last one. Usefull
	  for ackbar or multiple IDE devices with MBR initialized.

2001-04-14 17:58  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/make-initrd: Don't do the
	  same link for kernel22 as others.

2001-04-12 01:21  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/make-initrd: Add support
	  for secure kernel.
	* soft/initscripts/trunk/mandrake/loader/installkernel: Add
	  support for secure kernel, and don't do System.map or config link
	  since it done by rc.sysinit at boot time.

2001-04-11 04:11  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: Add enterprise
	  support.

2001-04-11 03:54  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Add
	  do_remove_link to clean orphaned link when removing.

2001-04-11 03:03  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/make-initrd: Add
	  enterprise support.
	* soft/initscripts/trunk/mandrake/loader/installkernel: Correct
	  installation of kernel-smp and add enterprise support.

2001-04-09 14:29  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Add support for
	  memtest86.

2001-04-09 13:07  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: More option to
	  don't get with lilo.

2001-04-09 11:39  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Fix when doing
	  detection of /proc/cmdline under 2.2.x since it's
	  different there.

2001-04-09 11:24  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Call
	  detectloader with -q, allow to pass argument when rebooting lilo
	  (grub support come after).

2001-04-09 11:22  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Don't call perl
	  with -w to don't have usless warn.

2001-04-08 14:41  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig,
	  soft/initscripts/trunk/mandrake/loader/lilo: By default parse
	  the /proc/cmdline to get the options we have booted, if user has
	  specified NOCMDLINE then don't do it but try in any case to get
	  the root= device, various bugfixes also.

2001-04-08 14:35  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel:
	  NOCOPY="yes" if we are in REMOVE mode.

2001-04-07 16:51  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub: don't put a . when
	  /boot is on another partition but just a /

2001-04-07 14:28  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Call
	  detectloader with -q.
	* soft/initscripts/trunk/mandrake/loader/detectloader: Add -q to
	  don't warn message.

2001-04-07 14:23  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Exit if we
	  are DURING_INSTALL.

2001-04-06 00:38  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  If user has specified AUTOREMOVE=yes then always AUTOREMOVE if
	  specified =no then always Don't autoremove (even if specified on
	  the command line).

2001-04-05 19:48  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig,
	  soft/initscripts/trunk/mandrake/loader/lilo: If use has
	  specified an OPTIONS="" in sysconfig file then append it to
	  generated entry.

2001-04-05 19:08  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: .config
	  can be based also in ../../../.config when called from make
	  install from kernel source.

2001-04-05 19:06  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Correct print
	  message.

2001-04-05 19:05  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Don't die()
	  when doing do_check to don't break make install when doing
	  from kernel.

2001-04-05 19:03  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/Makefile: Do check when
	  doing make install.

2001-04-05 18:30  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  Add copy of .config entry and ability in sysconfig to don't want
	  to add entry.

2001-04-04 16:34  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub: Fix devices.map
	  regexp parsing.

2001-04-03 20:35  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub: Fix initrd entry
	  (specify the grub_partition where to locate it).

2001-04-03 15:39  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub: Add slash to $boot

2001-04-03 15:27  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub: Don't add /boot
	  when /boot is on another partitions.

2001-04-01 00:42  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Don't
	  do_link when removing.

2001-04-01 00:34  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin,
	  soft/initscripts/trunk/mandrake/loader/rebootin.8: Add -f
	  (fastboot) option.

2001-03-31 23:22  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Update
	  usage to last options.

2001-03-31 23:16  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  comment example fixes.

2001-03-31 23:05  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Fancy.
	* soft/initscripts/trunk/mandrake/loader/installkernel.sysconfig:
	  New configuration file for installkernel.

2001-03-31 23:03  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Check if there
	  is more than 0 entries in lilo.conf, check if the
	  default we want is present before doing lilo -R.

2001-03-31 22:48  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel:
	  s|NOCOPY|NOLINK|;

2001-03-31 22:42  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Add
	  support for global configuration file in /etc/sysconfig if
	  present,
	  by default produce link unless NOLINK is specified.

2001-03-31 22:41  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Add checks of
	  lilo.conf.
	* soft/initscripts/trunk/mandrake/loader/grub: don't call do_check
	  in $remove;

2001-03-31 22:40  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/Makefile: Add
	  installkernel sysconfig configuration here.

2001-03-22 18:03  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/Makefile,
	  soft/initscripts/trunk/mandrake/loader/Makefile: Move
	  detectloader to loader/ directory.

2001-03-20 15:42  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/rebootin.8: Add
	  rebootin.8 manpages.

2001-03-20 15:09  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/rebootin: Fix mispelling
	  errors.

2001-03-20 13:54  Chmouel Boudjnah

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/rebootin: Add rebootin
	  here from grub and make it support lilo via detecting loader.

2001-03-18 17:11  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: Backup config files
	  before doing anything.

2001-03-16 16:52  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Fix stupid
	  error syntax.

2001-03-16 16:46  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm: Add debug.
	  Don't get_the_first_kernel get the kernel we going to
	  uninstall. Don't detect only mdk kernel in
	  get_the_first_kernel. Reactive generation of mkinitrd.

2001-03-16 16:43  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Add remove
	  options.
	* soft/initscripts/trunk/mandrake/loader/lilo: Fix regexp when
	  doing remove.

2001-03-16 16:42  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/grub: Add remove options
	  for grub.

2001-03-13 13:31  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: add -d to
	  getopts.

2001-03-13 00:08  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: set $debug to 0 :p.

2001-03-13 00:05  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: copy image
	  with -$version and create link from vmlinuz-$version to
	  vmlinuz (also for system.map)
	  Autodetect by default.

2001-03-11 22:31  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: Add remove entry
	  option for lilo, fix some display information in common.pm.

2001-03-11 18:05  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/common.pm,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/lilo: Export common
	  function to common.pm, and fix some bugs.

2001-03-11 15:43  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Improve debug.

2001-03-11 15:23  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/installkernel: Fix
	  argument parsing.

2001-03-11 15:22  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/lilo: Remove debug stuff.

2001-03-11 15:05  Chmouel Boudjnah

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/Makefile,
	  soft/initscripts/trunk/mandrake/loader/Makefile,
	  soft/initscripts/trunk/mandrake/loader/grub,
	  soft/initscripts/trunk/mandrake/loader/installkernel,
	  soft/initscripts/trunk/mandrake/loader/lilo,
	  soft/initscripts/trunk/mandrake/loader/make-initrd: Add new
	  installkernel.

2001-02-27 13:24  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/detectloader: fix
	  detection of grub for new grub

2000-09-20 11:32  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/mandrake/loader/detectloader: patch
	  detectloader to skip cdroms (otherwise stops cd-audios)

2000-09-05 11:49  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/loader/detectloader: - modify
	  detectloader for new grub

2000-08-21 14:48  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake/loader/detectloader: Fix the
	  print of the loader type.

2000-08-05 17:15  Pixel <pixel at mandriva.com>

	* soft/initscripts/trunk/ChangeLog,
	  soft/initscripts/trunk/initscripts.spec,
	  soft/initscripts/trunk/mandrake/loader/detectloader: no_comment

2000-07-30 05:07  Chmouel Boudjnah

	* soft/initscripts/trunk/mandrake,
	  soft/initscripts/trunk/mandrake/.cvsignore,
	  soft/initscripts/trunk/mandrake/Makefile,
	  soft/initscripts/trunk/mandrake/inputrc.csh,
	  soft/initscripts/trunk/mandrake/inputrc.sh,
	  soft/initscripts/trunk/mandrake/installkernel,
	  soft/initscripts/trunk/mandrake/is_depmod_necessary.c,
	  soft/initscripts/trunk/mandrake/kheader,
	  soft/initscripts/trunk/mandrake/listhome,
	  soft/initscripts/trunk/mandrake/loader,
	  soft/initscripts/trunk/mandrake/loader/detectloader,
	  soft/initscripts/trunk/mandrake/loader/detectloader.8,
	  soft/initscripts/trunk/mandrake/mandrake_everytime,
	  soft/initscripts/trunk/mandrake/mandrake_firstime,
	  soft/initscripts/trunk/mandrake/modules,
	  soft/initscripts/trunk/mandrake/rc.modules,
	  soft/initscripts/trunk/mandrake/sound,
	  soft/initscripts/trunk/mandrake/sound/sound.init,
	  soft/initscripts/trunk/mandrake/supermount,
	  soft/initscripts/trunk/mandrake/supermount.8,
	  soft/initscripts/trunk/mandrake/tmpdir.csh,
	  soft/initscripts/trunk/mandrake/tmpdir.sh,
	  soft/initscripts/trunk/mandrake/usb: Initial revision

2006-05-16 10:19  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec: - kheader: add support for tmb kernels -
	  /etc/init.d/kheader should not be a config file -
	  s/Mandrakesoft/Mandriva/

2006-05-15 12:29  Pixel <pixel at mandriva.com>

	* kheader.pl: add support for tmb kernels

2006-05-11 14:45  Thierry Vignaud <tvignaud at mandriva.com>

	* detectloader, detectloader.8, installkernel,
	  kernel_remove_initrd, kheader.pl, rebootin, rebootin.8: more
	  s/Mandrakesoft/mandriva/

2006-01-09 00:06  Olivier Blin <oblin at mandriva.com>

	* bootloader-utils.spec: 1.9-6mdk

2006-01-08 21:45  Olivier Blin <oblin at mandriva.com>

	* kheader.pl: convert X-Parallel- tags to LSB

2006-01-01 18:43  Olivier Blin <oblin at mandriva.com>

	* bootloader-utils.spec: 1.9-5mdk

2006-01-01 18:42  Olivier Blin <oblin at mandriva.com>

	* Makefile: workaround presence of debug package to detect correct
	  version and release

2006-01-01 18:35  Olivier Blin <oblin at mandriva.com>

	* kheader.pl: parallel init support

2005-12-20 00:25  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* bootloader-utils.spec, detectloader: fix detectloader to get boot
	  partition from yaboo.conf on ppc

2005-12-19 23:23  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* bootloader-utils.spec, kheader: fix kheader initscript for
	  -power5 kernels

2005-12-15 15:28  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* bootloader-utils.spec, yaboot: fix default links on ppc kernel
	  removal, i.e. correctly update kernel image & initrd symlinks for
	  default kernel entry

2005-12-15 14:48  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* common.pm: "p5" sublabel is used for -power5 kernels

2005-12-13 17:08  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* yaboot: revert last changes, spaces support is an extension from
	  suse "bastardized" yaboot variant

2005-12-13 16:09  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* yaboot: yaboot.conf has no particular constraints on token
	  separators, i.e. "image =" is a valid entry

2005-12-12 18:14  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* detectloader: merge yaboot detection with 2006.0 bits + add
	  support for yaboot in PReP

2005-12-12 18:13  Gwenole Beauchesne <gbeauchesne at mandriva.com>

	* Makefile, bootloader-utils.spec: ppc64 fixes

2005-08-29 13:28  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec, installkernel: nice handling of "make
	  modules_install" not done (when installing own built kernel)
	  (bugzilla #17981)

2005-08-11 03:14  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec: commit Nicolas Lécureuil's changes

2005-04-01 15:05  Olivier Blin <oblin at mandriva.com>

	* installkernel: do not warn that the kernel is a boot kernel when
	  removing it

2004-11-12 10:43  Pixel <pixel at mandriva.com>

	* .cvsignore, Makefile, bootloader-utils.spec, kheader, kheader.pl:
	  - kheader is now generated from kheader.pl when building package
	  - kheader: add i586-up-1GB and i686-up-64GB (bugzilla #12189)

2004-09-09 10:09  Nicolas Planel <nplanel at mandriva.com>

	* kheader: add i586-up-1GB

2004-08-26 07:54  Juan Quintela <quintela at mandriva.com>

	* bootloader-utils.spec, installkernel: added -C option to use
	  cramfs

2004-07-18 06:50  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec: 1.8-6mdk

2004-07-18 06:50  Pixel <pixel at mandriva.com>

	* installkernel: don't do anything DURING_INSTALL

2004-07-18 06:39  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec: 1.8-5mdk

2004-07-18 06:39  Pixel <pixel at mandriva.com>

	* installkernel: - ensure the PATH contains /sbin and /usr/sbin -
	  force rebuilding the initrd in "copy" mode   (since one may build
	  more than one kernel with the same version) - use --no-short-name
	  in "copy" mode

2004-07-05 04:37  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec, installkernel: bootloader-config prefers
	  --no-short-name instead of --no-link

2004-07-01 10:38  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec: require drakxtools-backend instead of
	  drakxtools-newt

2004-06-30 03:29  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec: 1.8-2mdk

2004-06-30 03:20  Pixel <pixel at mandriva.com>

	* installkernel: - installkernel *is* used for copying installing
	  kernels in /boot   (cf arch/i386/boot/install.sh used by kernel's
	  "make install") - some "cleanup"

2004-06-29 06:50  Pixel <pixel at mandriva.com>

	* Makefile, bootloader-utils.spec, common.pm, detectloader,
	  detectloader.8, grub, installkernel, installkernel.sysconfig,
	  lilo, make-initrd, yaboot: - installkernel:	- it is now a
	  wrapper to bootloader-config (in drakxtools-newt)   - always have
	  option AUTOREMOVE   - always have option NOCOPY (was useful to
	  copy your home built kernel)	   => option NOCONFIG deprecated
	  - force option -s when installing and -S when removing     (ie
	  always do/remove the "build" symlink to the source tree)   -
	  force bootloader auto-detection (options AUTODETECT and LOADER
	  are deprecated)   - option OPTIONS is removed (what was it for
	  exactly?) - detectloader is now a wrapper to bootloader-config
	  (in drakxtools-newt) - helper scripts make-initrd, lilo, grub and
	  yaboot obsolete

2004-06-22 13:59  Pixel <pixel at mandriva.com>

	* make-initrd: fix typo

2004-05-17 08:44  Thierry Vignaud <tvignaud at mandriva.com>

	* bootloader-utils.spec: add prereq on rpm-helper

2004-05-17 08:36  Thierry Vignaud <tvignaud at mandriva.com>

	* bootloader-utils.spec: 1.7-1mdk

2004-05-17 08:30  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm: (getroot_from_fstab) sanitize /etc/fstab parsing: -
	  strip comments - strip all spaces - do not match "/foobar/" when
	  looking for "/" - name fstab fields (purely cosmetic change) -
	  simplify by reusing cat_()

2004-05-17 08:30  Thierry Vignaud <tvignaud at mandriva.com>

	* grub: simplify /boot/grub/menu.lst writing by reusing
	  MDK::Common's substInFile()

2004-05-17 08:30  Thierry Vignaud <tvignaud at mandriva.com>

	* grub: (get_boot_partitions) simplify by reusing cat_()

2004-05-17 08:29  Thierry Vignaud <tvignaud at mandriva.com>

	* grub: (get_boot_partitions) handle "LABEL=foobar" when looking
	  for boot device: - copy unmakedev from libDrakX's common.pm - use
	  it to lookup /dev/root into /proc/partitions when a label is
	  found   (minimal LABEL=foobar managment for mdkmove+, generic
	  LABEL=foobar support	 is still lacking)

2004-05-17 08:29  Thierry Vignaud <tvignaud at mandriva.com>

	* grub: (get_boot_partitions) name fstab fields (purely cosmetic
	  change)

2004-05-17 08:29  Thierry Vignaud <tvignaud at mandriva.com>

	* grub: (get_boot_partitions) sanitize loop: - strip all spaces -
	  do not match "/foobar/" when looking for "/" - do not match
	  "/foobar/boot" when looking for "/boot"

2004-03-02 12:37  Nicolas Planel <nplanel at mandriva.com>

	* bootloader-utils.spec: 1.6-7mdk

2004-03-02 12:36  Nicolas Planel <nplanel at mandriva.com>

	* yaboot: getroot() don't have argument

2004-03-02 12:13  Nicolas Planel <nplanel at mandriva.com>

	* bootloader-utils.spec: 1.6-6mdk

2004-03-02 11:36  Nicolas Planel <nplanel at mandriva.com>

	* common.pm: remove hdX=ide-scsi for 2.4 and 2.6 kernel

2004-03-01 18:16  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm: fix append parsing

2004-02-27 15:38  Thierry Vignaud <tvignaud at mandriva.com>

	* bootloader-utils.spec: add bug ref in changelog

2004-02-27 09:09  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm: kill getVarsFromSh() gratuitously copied from
	  MDK::Common whereas we already use MDK::Common

2004-02-27 08:53  Thierry Vignaud <tvignaud at mandriva.com>

	* bootloader-utils.spec: 1.6-5mdk

2004-02-27 08:51  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm, grub, installkernel, kernel_remove_initrd, lilo,
	  make-initrd, rebootin: from Thomas Backlund <tmb@mandrake.org>: -
	  typo fixes - make some messages somewhat more understandable

2004-02-27 08:45  Thierry Vignaud <tvignaud at mandriva.com>

	* grub: when boot loader is grub, do not remove unrelated kernel
	  entries

2004-02-27 08:43  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm: in debugging mode, ignore missing kernels

2004-01-26 15:28  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm: (cat_) make it perl_checker compliant

2004-01-26 15:27  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm: use s/grep/any/ when possible

2004-01-26 15:26  Thierry Vignaud <tvignaud at mandriva.com>

	* grub, lilo: reindent

2004-01-26 15:24  Thierry Vignaud <tvignaud at mandriva.com>

	* common.pm, grub, lilo: perl_checker fixes

2004-01-19 15:28  Pixel <pixel at mandriva.com>

	* common.pm: cleanup sanitize_ver

2003-11-12 13:38  Pixel <pixel at mandriva.com>

	* bootloader-utils.spec, detectloader: fix detectloader typo (perl
	  now reports an error instead of silently ignoring the pb)

2003-09-17 12:21  Thierry Vignaud <tvignaud at mandriva.com>

	* bootloader-utils.spec: typo fix

2003-09-17 12:05  Thierry Vignaud <tvignaud at mandriva.com>

	* bootloader-utils.spec: 1.6-3mdk

2003-09-17 12:05  Thierry Vignaud <tvignaud at mandriva.com>

	* grub: when configuring grub, find finding the root partition when
	  /etc/fstab has commented out lines

	  else, get_boot_partitions() may return "#/dev/hda1" instead of
	  "/dev/hda1" and the convert_grub_part() caller horribly die with
	  the (cryptic) "Can't convert grub_partition" message.

2003-09-17 12:02  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: add localsrpm target

2003-09-08 14:47  Frederic Lepied <flepied at mandriva.com>

	* bootloader-utils.spec: 1.6-2mdk

2003-09-05 05:54  Juan Quintela <quintela at mandriva.com>

	* bootloader-utils.spec: 1.6 version

2003-09-05 05:42  Juan Quintela <quintela at mandriva.com>

	* kheader: kheader makes more sense

2003-09-05 05:15  Juan Quintela <quintela at mandriva.com>

	* common.pm: remove unused code & add support for
	  -mdkver-cpu-nproc-ver kernels

2003-09-03 16:45  Frederic Lepied <flepied at mandriva.com>

	* bootloader-utils.spec: 1.5-1mdk

2003-09-03 16:45  Frederic Lepied <flepied at mandriva.com>

	* Makefile: added kheader management

2003-09-03 16:44  Frederic Lepied <flepied at mandriva.com>

	* kheader: first version

2003-09-03 10:24  Frederic Lepied <flepied at mandriva.com>

	* installkernel: fix typo (Thomas Backlund)

2003-08-30 21:10  Frederic Lepied <flepied at mandriva.com>

	* bootloader-utils.spec: 1.4-1mdk

2003-08-29 19:16  Juan Quintela <quintela at mandriva.com>

	* bootloader-utils.spec: remove more slashes and convince it that
	  new kernels are also from Mandrake

2003-08-29 19:15  Juan Quintela <quintela at mandriva.com>

	* common.pm: Add more things to strip names.

2003-08-21 11:05  Juan Quintela <quintela at mandriva.com>

	* bootloader-utils.spec: Obsoletes/Provides kernel-utils

2003-08-21 11:03  Juan Quintela <quintela at mandriva.com>

	* lilo: also strip \n

2003-08-21 02:21  Juan Quintela <quintela at mandriva.com>

	* bootloader-utils.spec: 1.3 version

2003-08-21 02:17  Juan Quintela <quintela at mandriva.com>

	* installkernel: cd  only for NOCOPY

2003-08-18 17:06  Frederic Lepied <flepied at mandriva.com>

	* kernel-utils.spec: renamed bootloader-utils

2003-08-18 10:38  Frederic Lepied <flepied at mandriva.com>

	* bootloader-utils.spec: 1.2

2003-08-18 10:37  Frederic Lepied <flepied at mandriva.com>

	* Makefile: switch name to bootloader-utils

2003-08-18 10:36  Frederic Lepied <flepied at mandriva.com>

	* bootloader-utils.spec: first version

2003-08-14 11:36  Juan Quintela <quintela at mandriva.com>

	* lilo: "blah" and blah should match only blah

2003-08-13 22:16  Juan Quintela <quintela at mandriva.com>

	* kernel-utils.spec: v 1.1

2003-08-13 22:13  Juan Quintela <quintela at mandriva.com>

	* installkernel: add proper quoting

2003-08-13 22:12  Juan Quintela <quintela at mandriva.com>

	* kernel-utils.spec: v 0.8

2003-08-13 20:30  Juan Quintela <quintela at mandriva.com>

	* installkernel: shell don't like spaces after =

2003-08-13 20:19  Juan Quintela <quintela at mandriva.com>

	* kernel-utils.spec: 0.7 version

2003-08-13 20:16  Juan Quintela <quintela at mandriva.com>

	* installkernel: be sure that -S and -s works

2003-08-13 14:53  Juan Quintela <quintela at mandriva.com>

	* common.pm: add  variable

2003-08-13 14:52  Juan Quintela <quintela at mandriva.com>

	* kernel-utils.spec: version 0.5

2003-08-13 14:50  Juan Quintela <quintela at mandriva.com>

	* common.pm: new sanitize ver for new kernels

2003-08-13 13:57  Juan Quintela <quintela at mandriva.com>

	* kernel-utils.spec: v 0.4 & use _sbindir

2003-08-13 13:56  Juan Quintela <quintela at mandriva.com>

	* common.pm: minor cleanup

2003-08-13 13:56  Juan Quintela <quintela at mandriva.com>

	* Makefile: kernel_remove_initrd is also a SH script

2003-08-13 13:33  Juan Quintela <quintela at mandriva.com>

	* lilo: this time spaces at the end of lines doesn't matter

2003-08-13 13:31  Juan Quintela <quintela at mandriva.com>

	* common.pm: spelling typo

2003-08-13 11:57  Juan Quintela <quintela at mandriva.com>

	* Makefile, kernel-utils.spec: add kernel_remove_initrd

2003-08-13 11:55  Juan Quintela <quintela at mandriva.com>

	* kernel_remove_initrd: file to remove initrd's

2003-08-13 11:54  Juan Quintela <quintela at mandriva.com>

	* installkernel: cleanup and add source options

2003-08-13 02:36  Juan Quintela <quintela at mandriva.com>

	* installkernel: remove -q (quiet option) not implemented

2003-08-13 02:31  Juan Quintela <quintela at mandriva.com>

	* installkernel: remove -r unused option and add cd

2003-08-12 16:35  Juan Quintela <quintela at mandriva.com>

	* common.pm, grub, lilo, yaboot: remove vmlinuz- from sanity_ver
	  and all its callers

2003-08-08 01:25  Juan Quintela <quintela at mandriva.com>

	* lilo: work when kernel name ends in spaces

2003-08-04 21:07  Frederic Lepied <flepied at mandriva.com>

	* kernel-utils.spec: 0.2-1mdk

2003-08-04 16:44  Frederic Lepied <flepied at mandriva.com>

	* kernel-utils.spec: 0.1

2003-07-21 22:51  Juan Quintela <quintela at mandriva.com>

	* kernel-utils.spec: this is a test

2003-07-21 22:45  Frederic Lepied <flepied at mandriva.com>

	* kernel-utils.spec: added a conflict with the initscripts packages
	  that contains the same files

2003-07-21 22:35  Frederic Lepied <flepied at mandriva.com>

	* Makefile: added rules to build rpm packages

2003-07-21 22:35  Frederic Lepied <flepied at mandriva.com>

	* kernel-utils.spec: first version from Juan

2003-07-14 21:27  Thierry Vignaud <tvignaud at mandriva.com>

	* detectloader: fix bootloader detection when getting devfs names

2003-07-03 13:26  Stew Benedict <sbenedict at mandriva.com>

	* detectloader: Allow detectloader to run on non-lilo systems. (Ben
	  Reser)

2003-03-20 15:00  Chmouel Boudjnah

	* grub, lilo: Make backup of old entry when it not exiting for the
	  old default (problem show all the time at first new kernel
	  ugprade).

2003-03-20 13:58  Chmouel Boudjnah

	* common.pm: Change adress reporting to Cooker.

2003-03-20 13:57  Chmouel Boudjnah

	* common.pm: Don't regenerate if the initrd is already here.

2003-03-17 16:26  Chmouel Boudjnah

	* detectloader: Update mbr detection table from drakx. First try to
	  detect the partition from boot= of lilo.

2003-02-03 16:28  Chmouel Boudjnah

	* rebootin: Add list option.

2003-02-03 11:52  Chmouel Boudjnah

	* common.pm: Support of latest kernel naming scheme

2003-01-13 12:01  Chmouel Boudjnah

	* rebootin: Correct lilo.conf entry detection when there is "
	  inside.

2002-11-16 22:30  Stew Benedict <sbenedict at mandriva.com>

	* yaboot: Update ofpath, ybin paths.

2002-11-07 14:09  Stew Benedict <sbenedict at mandriva.com>

	* detectloader: PPC - Handle RS6K yaboot detection.

2002-11-07 12:59  Stew Benedict <sbenedict at mandriva.com>

	* detectloader: Rework PPC detection, can't always count on
	  "bootstrap" for user created.

2002-08-15 12:11  Stew Benedict <sbenedict at mandriva.com>

	* common.pm: Fix installkernel to handle user built mdkcustom
	  without emailing Chmouel

2002-08-01 15:12  Warly <warly at mandriva.com>

	* installkernel.sysconfig, make-initrd: add oden option to pass
	  option to make-initrd

2002-06-23 21:12  Pixel <pixel at mandriva.com>

	* grub: mandrake/loader/grub: handle fstab devices using devfs
	  names   (fix problem reported by Alexander Skwar)

2002-03-12 16:12  Stew Benedict <sbenedict at mandriva.com>

	* yaboot: fix installkernel yaboot entry for seperate /boot

2002-02-14 17:34  Chmouel Boudjnah

	* detectloader: Return always aboot on alpha.

2002-02-08 17:23  Chmouel Boudjnah

	* common.pm: Don't add quiet to options when the bootsplash theme
	  say no.

2002-02-08 16:51  Chmouel Boudjnah

	* installkernel.sysconfig: Bootsplash things are moved to his
	  config files.

2002-02-04 18:00  Chmouel Boudjnah

	* installkernel.sysconfig: Add option LOGO_CONSOLE=no Say yes here
	  if you want to leave the logo on the console.

2002-01-30 15:39  Chmouel Boudjnah

	* installkernel.sysconfig: Add option SPLASH= for boot splash
	  image.

2002-01-29 23:09  Guillaume Cottenceau

	* detectloader: duplicate signatures for grub unecessary

2002-01-24 23:47  Pixel <pixel at mandriva.com>

	* detectloader: mandrake/loader/installkernel: detect the
	  now-nice-magic of grub

2002-01-24 17:50  Chmouel Boudjnah

	* common.pm, installkernel, make-initrd: Add support for BOOT
	  kernel, cleanup remove_link make it a litle less stupid (and i am
	  if i wrote that stuff)

2002-01-24 17:48  Chmouel Boudjnah

	* detectloader: Add detection for latest grub (pixel)

2002-01-24 16:40  Stew Benedict <sbenedict at mandriva.com>

	* installkernel: forgot to remove the preceeding fi

2002-01-24 16:32  Stew Benedict <sbenedict at mandriva.com>

	* installkernel: add PPC version of check for bootloader config

2002-01-24 15:28  Chmouel Boudjnah

	* installkernel: Make the check for /boot/grub/menu.lst
	  /etc/lilo.conf only x86 archs.

2002-01-22 21:22  Chmouel Boudjnah

	* installkernel: Remove the DURING_INSTALL check it breaks rpmdrake
	  instead checking menu.lst, lilo.conf before generating..

2002-01-16 22:39  Chmouel Boudjnah

	* common.pm: Don't exist when kernel_version_of_entry don't follow
	  initrd_version_of_entry just warning.

2002-01-07 16:52  Chmouel Boudjnah

	* common.pm, detectloader, detectloader.8, grub, installkernel,
	  lilo, make-initrd, rebootin, yaboot: Update copyright.

2002-01-04 17:54  Chmouel Boudjnah

	* installkernel: make-initrd is sh script now (gb)

2001-12-24 14:16  Chmouel Boudjnah

	* common.pm: Add documentation and cleaning.

2001-12-24 12:37  Chmouel Boudjnah

	* common.pm, installkernel, make-initrd: Add linus and mosix to
	  valid mdk kernels.  Check if it is a valid mdk kernels even when
	  no initrd.  installkernel different links for different vmlinuz
	  version.

2001-12-10 11:02  Chmouel Boudjnah

	* Makefile: make-initrd is now sh script.

2001-12-05 12:36  Chmouel Boudjnah

	* make-initrd: Copyright update

2001-12-05 12:35  Chmouel Boudjnah

	* make-initrd: Rewrite it in shell no need to do perl when we
	  launch only shell command.

2001-12-05 11:56  Chmouel Boudjnah

	* common.pm: fix comment.

2001-12-05 11:54  Chmouel Boudjnah

	* installkernel: Do something smarter with arg parsing.

2001-12-04 15:37  Chmouel Boudjnah

	* common.pm, grub, lilo, yaboot: New function sanitize_ver to
	  detect all kind of kernels naming and sanitize (new_mdk, old_mdk,
	  linus-vanilla, linus-pre) like the old one to still have backward
	  compatibility with old config files. Make the loader using it.

2001-12-04 15:22  Chmouel Boudjnah

	* common.pm, detectloader, grub, lilo, make-initrd, rebootin,
	  yaboot: Remove trailing whitespace.

2001-12-04 14:19  Chmouel Boudjnah

	* installkernel: Make the copy to vmlinuz.old more robust check if
	  it is a link before and try to copy the vmlinuz.old only if the
	  one installed != the one already installed (guess nobody will
	  understand that but yes this is smarter things update ;)).

2001-11-20 09:53  Chmouel Boudjnah

	* installkernel: When NOLINK=yes set the right options (andrej).

2001-11-15 12:46  Chmouel Boudjnah

	* lilo: Remove memtest crunch from here

2001-11-15 12:34  Chmouel Boudjnah

	* installkernel: Call with perl the configurator

2001-10-31 00:43  Stew Benedict <sbenedict at mandriva.com>

	* yaboot: another yaboot mod for PPC, eliminate root=root=/dev/hdX

2001-10-30 17:12  Stew Benedict <sbenedict at mandriva.com>

	* yaboot: update yaboot script to work with new common.pm setup

2001-10-18 12:11  Chmouel Boudjnah

	* rebootin.8: Upgrade documentation with new -n option.

2001-10-18 12:10  Chmouel Boudjnah

	* rebootin: Add switch -n to allow to just set the flags but don't
	  reboot directly.

2001-10-17 17:43  Chmouel Boudjnah

	* lilo: Close file after open it before moving.

2001-10-17 17:12  Chmouel Boudjnah

	* installkernel: Don't make-initrd when we are in REMOVE mode.

2001-10-17 16:26  Chmouel Boudjnah

	* lilo: Die instead of print STDERR if we have in unknow option.

2001-10-17 16:18  Chmouel Boudjnah

	* make-initrd: Fix stupid bug in make-initrd when -L is used in
	  argument parsing.

2001-10-17 10:31  Stefan Siegel <siegel at linux-mandrake.com>

	* common.pm: s/Look/Looks/ s/unknow/unknown/

2001-10-16 13:51  Chmouel Boudjnah

	* common.pm: Fix another bug in kernel/initrd comparaisons.

2001-10-15 14:51  Chmouel Boudjnah

	* common.pm: Really check comparaision of kernel between initrd and
	  vmlinuz among with others cleanup/fixes.

2001-10-15 13:42  Chmouel Boudjnah

	* common.pm: Fix stupid bug of too fast bugfixes :p

2001-10-15 13:42  Chmouel Boudjnah

	* make-initrd: Add check if there is a /lib/modules/$kernel_version
	  before launching mkinitrd.

2001-10-11 17:14  Chmouel Boudjnah

	* common.pm: Fix check_default_entry() cleanup the code there
	  also...

2001-10-08 11:28  Chmouel Boudjnah

	* common.pm: When adding from fstab return with root= the
	  partition.

2001-10-05 16:56  Chmouel Boudjnah

	* common.pm, grub, lilo: Rework the root detection to make sure to
	  include the sysconfig options, use the same root strategey for
	  lilo and grub. Make sure to don't add too much \n in the config
	  files and nasty it.

2001-10-05 15:19  Chmouel Boudjnah

	* common.pm, grub, lilo: When we are in remove and there are no
	  entry then exit.

2001-10-05 15:08  Stefan Siegel <siegel at linux-mandrake.com>

	* installkernel.sysconfig: fixed a typo ("yo" instead of "you")

2001-10-05 14:40  Chmouel Boudjnah

	* common.pm, lilo: Cleanup code for getroot;

2001-10-05 10:28  Chmouel Boudjnah

	* make-initrd: Make relative symlinks.

2001-10-05 10:20  Chmouel Boudjnah

	* installkernel, installkernel.sysconfig: Ignore the Autoremove=yes
	  we use it only when install rpm kernel.

2001-09-28 13:32  Chmouel Boudjnah

	* detectloader, detectloader.8, rebootin: Upgrade copyright.

2001-09-24 16:06  Chmouel Boudjnah

	* installkernel.sysconfig: Fix wrong comment.

2001-09-17 11:00  Chmouel Boudjnah

	* installkernel: If NOLINK then even for initrd don't do a link.

2001-08-23 17:03  Chmouel Boudjnah

	* common.pm: Use fstab to get the root filesystem if we fail in
	  /proc/cmdline (aka: not for grub).

2001-08-16 14:54  Chmouel Boudjnah

	* grub: Fix grub removal.

2001-08-16 11:09  Chmouel Boudjnah

	* installkernel: Do a -f.

2001-08-04 21:58  Pixel <pixel at mandriva.com>

	* detectloader: re-add yaboot detection

2001-08-04 00:07  Pixel <pixel at mandriva.com>

	* detectloader: - make detectloader works with devfs device naming
	  (even when devfs is not mounted :) - detectloader now requires
	  perl-MDK-Common, adding it to Requires (i wonder why perl-base
	  was not required yet!)

2001-06-14 15:32  Chmouel Boudjnah

	* Makefile: Bump to version 5_87 Fix install with new fileutils
	  install.

2001-05-23 13:35  Chmouel Boudjnah

	* yaboot: Set the name of Stew instead of my (aka: bug him for
	  yaboot ;)).

2001-05-23 13:33  Chmouel Boudjnah

	* Makefile: Install yaboot file on ppc.

2001-05-23 13:31  Chmouel Boudjnah

	* Makefile, detectloader, detectloader.8, installkernel, rebootin,
	  yaboot: Add yaboot support from Stew Benedict
	  <sbenedict@mandrakesoft.com>.

2001-04-30 21:37  Chmouel Boudjnah

	* detectloader: If user has specified a variable
	  DEFAULT_LOADER="lilo" or grub then print it and exist (aka: don't
	  detect).

2001-04-30 07:09  Chmouel Boudjnah

	* lilo: Detect which vga we running by the BOOT_IMAGE= we have
	  booted (via cmdline) and what it set lilo.conf.

2001-04-27 16:27  Chmouel Boudjnah

	* common.pm: Fix typo in message by David Relson
	  <relson@osagesoftware.com>.

2001-04-20 11:42  Chmouel Boudjnah

	* installkernel: Don't remove default System.map and default
	  config.

2001-04-17 17:49  Fançois Pons

	* detectloader: if multiple MBR are found, try the first one
	  instead of the last one. Usefull for ackbar or multiple IDE
	  devices with MBR initialized.

2001-04-14 19:58  Chmouel Boudjnah

	* make-initrd: Don't do the same link for kernel22 as others.

2001-04-12 03:21  Chmouel Boudjnah

	* common.pm, make-initrd: Add support for secure kernel.

2001-04-12 03:21  Chmouel Boudjnah

	* installkernel: Add support for secure kernel, and don't do
	  System.map or config link since it done by rc.sysinit at boot
	  time.

2001-04-11 06:11  Chmouel Boudjnah

	* grub: Add enterprise support.

2001-04-11 06:06  Chmouel Boudjnah

	* common.pm, lilo: Add enterprise support.

2001-04-11 05:54  Chmouel Boudjnah

	* installkernel: Add do_remove_link to clean orphaned link when
	  removing.

2001-04-11 05:03  Chmouel Boudjnah

	* make-initrd: Add enterprise support.

2001-04-11 05:03  Chmouel Boudjnah

	* installkernel: Correct installation of kernel-smp and add
	  enterprise support.

2001-04-09 16:29  Chmouel Boudjnah

	* lilo: Add support for memtest86.

2001-04-09 15:07  Chmouel Boudjnah

	* common.pm: More option to don't get with lilo.

2001-04-09 13:39  Chmouel Boudjnah

	* common.pm: Fix when doing detection of /proc/cmdline under 2.2.x
	  since it's different there.

2001-04-09 13:24  Chmouel Boudjnah

	* rebootin: Call detectloader with -q, allow to pass argument when
	  rebooting lilo (grub support come after).

2001-04-09 13:22  Chmouel Boudjnah

	* rebootin: Don't call perl with -w to don't have usless warn.

2001-04-08 16:41  Chmouel Boudjnah

	* common.pm, grub, installkernel.sysconfig, lilo: By default parse
	  the /proc/cmdline to get the options we have booted, if user has
	  specified NOCMDLINE then don't do it but try in any case to get
	  the root= device, various bugfixes also.

2001-04-08 16:35  Chmouel Boudjnah

	* installkernel: NOCOPY="yes" if we are in REMOVE mode.

2001-04-07 18:51  Chmouel Boudjnah

	* grub: don't put a . when /boot is on another partition but just a
	  /

2001-04-07 16:28  Chmouel Boudjnah

	* installkernel: Call detectloader with -q.

2001-04-07 16:28  Chmouel Boudjnah

	* detectloader: Add -q to don't warn message.

2001-04-07 16:23  Chmouel Boudjnah

	* installkernel: Exit if we are DURING_INSTALL.

2001-04-06 02:38  Chmouel Boudjnah

	* installkernel, installkernel.sysconfig: If user has specified
	  AUTOREMOVE=yes then always AUTOREMOVE if specified =no then
	  always Don't autoremove (even if specified on the command line).

2001-04-05 21:48  Chmouel Boudjnah

	* common.pm, grub, installkernel.sysconfig, lilo: If use has
	  specified an OPTIONS="" in sysconfig file then append it to
	  generated entry.

2001-04-05 21:08  Chmouel Boudjnah

	* installkernel: .config can be based also in ../../../.config when
	  called from make install from kernel source.

2001-04-05 21:06  Chmouel Boudjnah

	* common.pm: Correct print message.

2001-04-05 21:05  Chmouel Boudjnah

	* common.pm: Don't die() when doing do_check to don't break make
	  install when doing from kernel.

2001-04-05 21:03  Chmouel Boudjnah

	* Makefile: Do check when doing make install.

2001-04-05 20:30  Chmouel Boudjnah

	* installkernel, installkernel.sysconfig: Add copy of .config entry
	  and ability in sysconfig to don't want to add entry.

2001-04-04 18:34  Chmouel Boudjnah

	* grub: Fix devices.map regexp parsing.

2001-04-03 22:35  Chmouel Boudjnah

	* grub: Fix initrd entry (specify the grub_partition where to
	  locate it).

2001-04-03 17:39  Chmouel Boudjnah

	* grub: Add slash to $boot

2001-04-03 17:27  Chmouel Boudjnah

	* grub: Don't add /boot when /boot is on another partitions.

2001-04-01 02:42  Chmouel Boudjnah

	* installkernel: Don't do_link when removing.

2001-04-01 02:34  Chmouel Boudjnah

	* rebootin, rebootin.8: Add -f (fastboot) option.

2001-04-01 01:22  Chmouel Boudjnah

	* installkernel: Update usage to last options.

2001-04-01 01:16  Chmouel Boudjnah

	* installkernel.sysconfig: comment example fixes.

2001-04-01 01:05  Chmouel Boudjnah

	* rebootin: Fancy.

2001-04-01 01:05  Chmouel Boudjnah

	* installkernel.sysconfig: New configuration file for
	  installkernel.

2001-04-01 01:03  Chmouel Boudjnah

	* rebootin: Check if there is more than 0 entries in lilo.conf,
	  check if the default we want is present before doing lilo -R.

2001-04-01 00:48  Chmouel Boudjnah

	* installkernel: s|NOCOPY|NOLINK|;

2001-04-01 00:42  Chmouel Boudjnah

	* installkernel: Add support for global configuration file in
	  /etc/sysconfig if present, by default produce link unless NOLINK
	  is specified.

2001-04-01 00:41  Chmouel Boudjnah

	* lilo: Add checks of lilo.conf.

2001-04-01 00:41  Chmouel Boudjnah

	* grub: don't call do_check in $remove;

2001-04-01 00:40  Chmouel Boudjnah

	* Makefile: Add installkernel sysconfig configuration here.

2001-03-22 19:03  Chmouel Boudjnah

	* Makefile: Move detectloader to loader/ directory.

2001-03-20 16:42  Chmouel Boudjnah

	* Makefile, rebootin.8: Add rebootin.8 manpages.

2001-03-20 16:09  Chmouel Boudjnah

	* rebootin: Fix mispelling errors.

2001-03-20 14:54  Chmouel Boudjnah

	* Makefile, rebootin: Add rebootin here from grub and make it
	  support lilo via detecting loader.

2001-03-18 18:11  Chmouel Boudjnah

	* grub, lilo: Backup config files before doing anything.

2001-03-16 17:52  Chmouel Boudjnah

	* installkernel: Fix stupid error syntax.

2001-03-16 17:46  Chmouel Boudjnah

	* common.pm: Add debug. Don't get_the_first_kernel get the kernel
	  we going to uninstall. Don't detect only mdk kernel in
	  get_the_first_kernel. Reactive generation of mkinitrd.

2001-03-16 17:43  Chmouel Boudjnah

	* installkernel: Add remove options.

2001-03-16 17:43  Chmouel Boudjnah

	* lilo: Fix regexp when doing remove.

2001-03-16 17:42  Chmouel Boudjnah

	* grub: Add remove options for grub.

2001-03-13 14:31  Chmouel Boudjnah

	* installkernel: add -d to getopts.

2001-03-13 01:08  Chmouel Boudjnah

	* lilo: set $debug to 0 :p.

2001-03-13 01:05  Chmouel Boudjnah

	* installkernel: copy image with -$version and create link from
	  vmlinuz-$version to vmlinuz (also for system.map) Autodetect by
	  default.

2001-03-11 23:31  Chmouel Boudjnah

	* common.pm, grub, lilo: Add remove entry option for lilo, fix some
	  display information in common.pm.

2001-03-11 19:05  Chmouel Boudjnah

	* Makefile, common.pm, grub, lilo: Export common function to
	  common.pm, and fix some bugs.

2001-03-11 16:43  Chmouel Boudjnah

	* lilo: Improve debug.

2001-03-11 16:23  Chmouel Boudjnah

	* installkernel: Fix argument parsing.

2001-03-11 16:22  Chmouel Boudjnah

	* lilo: Remove debug stuff.

2001-03-11 16:05  Chmouel Boudjnah

	* Makefile, grub, installkernel, lilo, make-initrd: Add new
	  installkernel.

2001-02-27 14:24  Pixel <pixel at mandriva.com>

	* detectloader: fix detection of grub for new grub

2000-09-20 13:32  Pixel <pixel at mandriva.com>

	* detectloader: patch detectloader to skip cdroms (otherwise stops
	  cd-audios)

2000-09-05 13:49  Pixel <pixel at mandriva.com>

	* detectloader: - modify detectloader for new grub

2000-08-21 16:48  Chmouel Boudjnah

	* detectloader: Fix the print of the loader type.

2000-08-05 19:15  Pixel <pixel at mandriva.com>

	* detectloader: no_comment

2000-07-30 07:07  Chmouel Boudjnah

	* detectloader, detectloader.8: First_import

2000-07-30 07:07  Chmouel Boudjnah

	* detectloader, detectloader.8: Initial revision