~sarvatt/initramfs-tools/working

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
initramfs-tools (0.92bubuntu65) lucid; urgency=low

  * scripts/init-premount/blacklist: Move to init-top so it has a chance
    of running before udev.
  * scripts/init-top/blacklist: Automatically blacklist vga16fb when vga=
    or video= specified on kernel command-line. 

 -- Scott James Remnant <scott@ubuntu.com>  Wed, 17 Feb 2010 12:35:22 +0000

initramfs-tools (0.92bubuntu64) lucid; urgency=low

  * Allow specifying multiple break points using a comma delimiter.

 -- Evan Dandrea <evand@ubuntu.com>  Wed, 10 Feb 2010 11:18:26 +0000

initramfs-tools (0.92bubuntu63) lucid; urgency=low

  * init, scripts/functions: Add support for specifying a network interface
    by MAC address, using hwaddr= on the command line or HWADDR in an
    initramfs configuration file (LP: #473036).

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 05 Feb 2010 11:49:34 -0800

initramfs-tools (0.92bubuntu62) lucid; urgency=low

  * src/wait-for-root.c:
    - device records we obtain from udev may not have a device node name
      yet, check to avoid strcmp between NULL and our path.  LP: #499422.
    - device records from the queue may not exist at all, check to avoid
      calling udev_device_unref on NULL (which should be safe anyway).
    - eliminate a race condition; by checking the filesystem before the
      queue, there was a small chance that udev could finish processing
      between our calls

 -- Scott James Remnant <scott@ubuntu.com>  Tue, 22 Dec 2009 19:30:01 +0000

initramfs-tools (0.92bubuntu61) lucid; urgency=low

  * init: Mount devtmpfs on /dev, falling back to a tmpfs if not supported
    by the kernel.

  * src/wait-for-root.c: accept the timeout on the command-line too rather
    than using an environment variable.
  * scripts/local: Pass $ROOTDELAY or 30
  * scripts/local-premount/resume: pass $RESUMEDELAY or 5

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 21 Dec 2009 23:06:53 +0000

initramfs-tools (0.92bubuntu60) lucid; urgency=low

  * src/wait-for-root.c:
    - Fix a bug where we checked queue entries for ID_FS_TYPE too; would
      mean we thought a device directly named (e.g. /dev/md0) wasn't
      in the queue when it was, and wouldn't wait for it.
    - Fix another bug where we didn't clear udev_device after iterating
      the queue.
    - Rather than mucking around with sequence numbers in the queue, just
      wait using the monitor if we identify the device as being in the
      queue.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 18 Dec 2009 14:47:30 +0000

initramfs-tools (0.92bubuntu59) lucid; urgency=low

  * src/wait-for-root.c: handle the case where we're given UUID= or LABEL=
    and the device already exists (we need to stat the /dev/disk path).
  * scripts/local-premount/resume: this means we can use wait-for-root for
    resume handling too.
  * mkinitramfs: drop the PAGE_SIZE conf, it's no longer needed since we
    rely on udev finding out it's a hibernated image through blkid.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 18 Dec 2009 04:34:04 +0000

initramfs-tools (0.92bubuntu58) lucid; urgency=low

  * Add new initramfs-tools-bin package containing a binary that uses
    libudev to wait for udev to create the udev device, or wait for udev
    to finish processing if we catch it in the act, and returns the
    filesystem type as already probed by udev.
    - This avoids calls to udevadm settle, which make us wait for irrelevant
      modules that we don't need.
    - This avoids duplicate calls to blkid, which since they probe the block
      device directly, are expensive
    - This does not use fstype; which avoids issues with that and blkid
      returning different answers (since everything else throughout the
      entire system now uses blkid)
  * scripts/local: Rewrite to use wait-for-root rather than looping over
    our own shell attempts to do the same.
  * mkinitramfs:
    - include wait-for-root
    - mkinitramfs: Don't quote modules.*map, so we actually expand it.
  * hooks/thermal:
    - don't force load fan or thermal, they're generally built-in and if not
      will be loaded by udev anyway
  * scripts/panic/keymap:
    - auto-generated from the init-top keymap file, with the OPTION= removed,
      so keymap will always be set on panic

  * Remove accidentally included test initramfs.  :-)

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 18 Dec 2009 03:18:28 +0000

initramfs-tools (0.92bubuntu57) lucid; urgency=low

  * debian/initramfs-tools.dirs:
    - add scripts/panic directory

  * scripts/functions:
    - if tsort is available, use it instead of custom sorting code
    - if a pre-cached order file is available, use that instead
    - run panic scripts before giving a root shell
  * mkinitramfs:
    - generate a pre-cached order file for each scripts directory in the
      output initramfs
    - call depmod before packing the initramfs, so it contains the output
      already
  * init:
    - drop depmod call

 -- Scott James Remnant <scott@ubuntu.com>  Wed, 16 Dec 2009 17:47:49 +0000

initramfs-tools (0.92bubuntu56) lucid; urgency=low

  * scripts/init-top/keymap: We don't need to load keymaps unless we're
    loading the framebuffer module (and thus have a splash screen). 

 -- Scott James Remnant <scott@ubuntu.com>  Tue, 15 Dec 2009 14:57:29 +0000

initramfs-tools (0.92bubuntu55) lucid; urgency=low

  * hooks/framebuffer: Change the inclusion option from USPLASH to
    FRAMEBUFFER, in hindsight that option name wasn't very forward-thinking
    of me.
  * scripts/init-top/framebuffer:
    - Make conditional on new option name.
    - As well as waiting for fb0 to show up, we also should wait for fbcon
      and dri/card0 to show up as well, since we'll almost certainly want
      a console and direct rendering.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 30 Nov 2009 23:45:44 +0000

initramfs-tools (0.92bubuntu54) lucid; urgency=low

  * hook-functions: check both /lib/firmware/$(uname -r) and /lib/firmware
    for the firmware that we wish to copy; in any cases where we want to
    suppress a firmware-using module from the initramfs, we should do that
    explicitly and not by accidentally failing to include the firmware.
    LP: #328550.
  * hook-functions: cherry pick fix from Debian upstream version to not warn
    about missing firmware for modules whose names are merely /like/ those of
    modules listed in /proc/modules.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Thu, 19 Nov 2009 00:47:55 -0600

initramfs-tools (0.92bubuntu53) karmic; urgency=low

  * Explicitly check for fb0 so we don't false-positive on the graphics
    subsystem having been initialised (should cure some issues with usplash
    using svgalib instead of KMS, and vanishing part way through).
  * Don't force load the vesafb driver, we never did this before, so it
    seems silly to do it now.

 -- Scott James Remnant <scott@ubuntu.com>  Wed, 14 Oct 2009 04:41:37 +0100

initramfs-tools (0.92bubuntu52) karmic; urgency=low

  * Include all usb/storage drivers, not just usb-storage.ko  LP: #419231

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 09 Oct 2009 15:34:43 +0100

initramfs-tools (0.92bubuntu51) karmic; urgency=low

  * scripts/init-top/framebuffer: wait for udev to settle before loading
    command-line specified framebuffer driver to ensure that any needed
    device nodes are available.  LP: #437871.

 -- Scott James Remnant <scott@ubuntu.com>  Sat, 03 Oct 2009 07:55:35 +0100

initramfs-tools (0.92bubuntu50) karmic; urgency=low

  LP: #392039, #431812.
  * hooks/framebuffer:
    - rename from hooks/kernelextras, this is much more descriptive and
      actually matches the associated script
    - copy kernel-mode-setting drivers (drivers/gpu) into the initramfs
    - include the vesafb driver, which we previously relied on being in
      the special initrd directory
    - don't force load fbcon
    - don't force load things from the initrd directory
  * scripts/init-top/framebuffer:
    - add udev as a pre-requisite
    - remove mknods since udev will make those now
    - remove intel_agp and i915 code
    - don't unset MODPROBE_OPTIONS, just override for the modprobe call
      (since we want video= to override the blacklist)
    - if we didn't pick up a framebuffer from vga= or video=, and don't
      have one from udev, wait for udev to finish then if we still don't
      have one, load vesafb
    - settle after loading drivers to ensure the device is ready
  * debian/control:
    - increase dependency on udev to that which loads fbcon
    - add breaks on older usplash to force upgrade

 -- Scott James Remnant <scott@ubuntu.com>  Wed, 23 Sep 2009 14:25:00 -0700

initramfs-tools (0.92bubuntu49) karmic; urgency=low

  * Re-add the OPTION=VAR checking to scripts/functions, since we actually do
    need this when calling the hooks at initramfs generation; but add a second
    argument to call_scripts, "optional", that we check for before doing these
    checks since we definitely don't want this to be conditional in the
    initramfs at runtime.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Tue, 22 Sep 2009 09:44:00 -0700

initramfs-tools (0.92bubuntu48) karmic; urgency=low

   * Don't do OPTION=VAR checking at runtime, only do it when assembling the
     initramfs; this spares us having to add extra config files to the
     initramfs to enable functionality that's already been selected.
     LP: #433773.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Tue, 22 Sep 2009 00:17:13 -0700

initramfs-tools (0.92bubuntu47) karmic; urgency=low

  * Silence output when trying to resume, since the only output is bitching
    that we can't resume because we didn't hibernate in the first place.
    LP: #432585.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 21 Sep 2009 16:07:10 -0700

initramfs-tools (0.92bubuntu46) karmic; urgency=low

  FFE LP: #427356.

  * mkinitramfs: Allow scripts to specify OPTION=VAR, and unless VAR is
    set to something other than "n", the script will not be included.
  * scripts/functions: Likewise when running scripts (for hooks)

  * Make usplash-related components optional, you need to set USPLASH=y
    for these to be included:
    - hooks/kernelextras: which includes the KMS driver
    - scripts/init-top/framebuffer: which loads it

 -- Scott James Remnant <scott@ubuntu.com>  Tue, 15 Sep 2009 03:30:12 +0100

initramfs-tools (0.92bubuntu45) karmic; urgency=low

  * Depend on busybox-initramfs (>= 1:1.13.3-1ubuntu5) to ensure that we
    have gzip (LP: #428282).

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 14 Sep 2009 10:23:40 +0100

initramfs-tools (0.92bubuntu44) karmic; urgency=low

  * Revert mxcfb changes of 0.92bubuntu40 and 0.92bubuntu41 as a more complete
    workaround was put in usplash.

 -- Loïc Minier <loic.minier@ubuntu.com>  Fri, 11 Sep 2009 21:46:45 +0200

initramfs-tools (0.92bubuntu43) karmic; urgency=low

  * Move "Loading, please wait..." message to after /proc is mounted, so
    that we can inspect /proc/cmdline.

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 04 Sep 2009 14:23:05 +0100

initramfs-tools (0.92bubuntu42) karmic; urgency=low

  * Don't display "Loading, please wait..." message when 'quiet' is in
    /proc/cmdline.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 03 Sep 2009 23:31:28 +0100

initramfs-tools (0.92bubuntu41) karmic; urgency=low

  *  fix quoting for mxcfb in scripts/init-top/framebuffer

 -- Oliver Grawert <ogra@ubuntu.com>  Sun, 30 Aug 2009 10:28:06 +0200

initramfs-tools (0.92bubuntu40) karmic; urgency=low

  * add a hack to scripts/init-top/framebuffer for handling the yet broken
    mxcfb as described in LP bug #420555, so usplash can be used on the
    imx51 architecture based devices

 -- Oliver Grawert <ogra@ubuntu.com>  Sat, 29 Aug 2009 11:37:27 +0200

initramfs-tools (0.92bubuntu39) karmic; urgency=low

  * auto_add_modules net: Load virtio_net, to make testing in kvm easier.
  * init: Export IPOPTS (LP: #364626).

 -- Colin Watson <cjwatson@ubuntu.com>  Tue, 11 Aug 2009 12:37:56 +0100

initramfs-tools (0.92bubuntu38) karmic; urgency=low

  * change --print-installation-architecture to --print-architecture in
    mkinitramfs and hook-functions to quieten down dpkg warning during
    update-initramfs

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 07 Jul 2009 21:33:50 +0200

initramfs-tools (0.92bubuntu37) karmic; urgency=low

  * update-initramfs: Fix run_bootloader() to check for grub2
  patch from debian bug #511514

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 07 Jul 2009 19:56:58 +0200

initramfs-tools (0.92bubuntu36) karmic; urgency=low

  * add missing colon in the regex and a filename for the grep from the next
    upload ... d'oh

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 07 Jul 2009 19:28:16 +0200

initramfs-tools (0.92bubuntu35) karmic; urgency=low

  * update-initramfs: check whether kernel-img.conf exists and postinst_hook
    is set before calling flash-kernel. (patch from Loic Minier to work
    around shortcomings described in launchpad bug 365053 (not the desired
    solution yet which needs to happen in debian but we need it for
    livecd-rootfs to work on armel))

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 07 Jul 2009 16:49:10 +0200

initramfs-tools (0.92bubuntu34) karmic; urgency=low

  * Remove bnx2 from the initramfs; it needs firmware, and at this stage we
    only support network modules that don't need firmware loading (LP:
    #394783).

 -- Colin Watson <cjwatson@ubuntu.com>  Tue, 07 Jul 2009 11:45:58 +0100

initramfs-tools (0.92bubuntu33) karmic; urgency=low

  * Cope with new compcache module naming.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 06 Jul 2009 14:12:07 +0100

initramfs-tools (0.92bubuntu32) karmic; urgency=low

  * Copy in KMS drivers (currently just i915 and the AGP drivers) if we can,
    so that we can load them before starting usplash. NOTE that this whole
    edifice is not intended to be used by default on most systems for
    Karmic, and that the general intent is to make the initramfs smaller
    rather than larger; however, we're still going to need usplash in the
    initramfs for some use cases (e.g. dm-crypt), so we might as well get
    this working now.
  * Fix formatting error in initramfs-tools(8).
  * 'set -e' in initramfs-tools.postrm.
  * Fix handling of resume_offset: if it's set then we need to check in a
    different location for the swap signature.
  * Remove kinit and gzip from the initramfs. The first record I can find of
    this Ubuntu change is in a merge from Debian, and I can't see any
    justification for it since neither binary is actually used by any
    initramfs scripts.
  * Remove klibc utilities if busybox is in use (patch based on Debian
    #338405; LP: #327106). Leave a symlink for /bin/sleep since some scripts
    expect that to exist.

 -- Colin Watson <cjwatson@ubuntu.com>  Tue, 23 Jun 2009 14:19:02 +0100

initramfs-tools (0.92bubuntu31) karmic; urgency=low

  * Set the permissions on the initramfs root to 755, as otherwise
    unionfs-fuse (which may be used via casper) can't service requests made
    by non-root users.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 04 Jun 2009 02:58:57 +0100

initramfs-tools (0.92bubuntu30) karmic; urgency=low

  * Replace all instances of vol_id with blkid, and depend on util-linux

 -- Scott James Remnant <scott@ubuntu.com>  Thu, 07 May 2009 12:52:20 +0100

initramfs-tools (0.92bubuntu29) jaunty; urgency=low

  * copy_exec: also avoid picking sse2, neon, and vfp hwcaps versions of libs.
  * Move debhelper and cdbs from -Indep to Build-Depends for clean:.

 -- Loic Minier <lool@dooz.org>  Tue, 14 Apr 2009 11:11:52 +0200

initramfs-tools (0.92bubuntu28) jaunty; urgency=low

  * update-initramfs: copy the logic added in Debian to run flash-kernel after
    the initrd has been generated (if the system is supported by
    flash-kernel); flash-kernel is run twice, but at least the system really
    runs the latest initrd; LP: #358762.

 -- Loic Minier <lool@dooz.org>  Sat, 11 Apr 2009 00:07:04 +0200

initramfs-tools (0.92bubuntu27) jaunty; urgency=low

  * Backport from Debian (LP: #347685):
    - init: Fix boot with LABEL containing one or several '/'. Thanks to
      Andres Salomon <dilinger@debian.org> for testing. (closes: #489008)
    - scripts/local-premount/resume: Fix resume with LABEL containing '/'.

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 03 Apr 2009 02:04:34 +0100

initramfs-tools (0.92bubuntu26) jaunty; urgency=low

  * hooks/thermal: Do not load thermal control for macintosh if the device is a PS3. (LP: #346899)

 -- Arnaud Jeansen <arnaud.jeansen@gmail.com>  Thu, 26 Mar 2009 00:41:46 +0100

initramfs-tools (0.92bubuntu25) jaunty; urgency=low

  * mkinitramfs: include the modules.order file.  LP: #296710.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 13 Mar 2009 16:11:49 +0000

initramfs-tools (0.92bubuntu24) jaunty; urgency=low

  * update-initramfs:
    - when doing set_linked_version, check if the links point
      to a existing initrd.img

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 11 Mar 2009 10:25:42 +0100

initramfs-tools (0.92bubuntu23) jaunty; urgency=low

  * Forgot the top-level MODPROBE_OPTIONS set.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 09 Mar 2009 22:06:46 +0000

initramfs-tools (0.92bubuntu22) jaunty; urgency=low

  * Replace calls to modprobe -Q with -q.  LP: #340128.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 09 Mar 2009 21:38:45 +0000

initramfs-tools (0.92bubuntu21) jaunty; urgency=low

  * mkinitramfs: catch errors in find/cpio/gzip pipe (debian bug 514938):
    - git 63cc7b9216d69f413cd5414c96cf2c9a403e03ae
    - git 93654c9230d3817fa57069012a0b06ccb1df09e4

 -- Kees Cook <kees@ubuntu.com>  Sun, 15 Feb 2009 09:48:50 -0800

initramfs-tools (0.92bubuntu20) jaunty; urgency=low

  * scripts/local-premount/resume: wait for usplash drawing routines
    to finish by flushing usplash command buffer before starting resume.

 -- Kees Cook <kees@ubuntu.com>  Sun, 08 Feb 2009 07:34:40 -0800

initramfs-tools (0.92bubuntu19) jaunty; urgency=low

  * hook-functions: Add hid_* modules, since some keyboards will not be
    usable at the initramfs/busybox prompt without them.

 -- Luke Yelavich <themuso@ubuntu.com>  Thu, 29 Jan 2009 07:00:07 +1100

initramfs-tools (0.92bubuntu18) jaunty; urgency=low

  * Add ext4 to the initramfs, in case it stops being built into the kernel.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 08 Jan 2009 13:29:51 +0000

initramfs-tools (0.92bubuntu17) jaunty; urgency=low

  [ Mikael Gerdin ]
  * Create /dev/mem and /dev/zero if video=uvesafb (LP: #285970).

  [ Colin Watson ]
  * Make debug option write debug output to /dev/.initramfs/initramfs.debug
    rather than /tmp/initramfs.debug, so that it can be retrieved after
    boot.

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 26 Nov 2008 17:22:18 +0000

initramfs-tools (0.92bubuntu16) intrepid-proposed; urgency=low

  * Added atl1e to the list of NICs built into the initramfs.
    -LP: #292411

 -- Tim Gardner <tim.gardner@canonical.com>  Fri, 14 Nov 2008 11:40:29 -0700

initramfs-tools (0.92bubuntu15) intrepid; urgency=low

  [ Dan Munckton ]
  * Revert "framebuffer: Let udev create fb devices." udev isn't started at
    this point and therefore can't create framebuffer devices. This causes
    usplash not to run on PS3 (LP: #274860).

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 01 Oct 2008 16:02:37 +0100

initramfs-tools (0.92bubuntu14) intrepid; urgency=low

  * scripts/functions: Call ipconfig with a one-minute timeout rather than
    waiting forever (LP: #182940).

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 01 Oct 2008 14:51:59 +0100

initramfs-tools (0.92bubuntu13) intrepid; urgency=low

  * scripts/local-premount/resume: Fix incorrect resume message by checking
    for swsusp signature before assuming there's a resume about to happen

 -- Matt Zimmerman <mdz@ubuntu.com>  Tue, 16 Sep 2008 11:49:55 +0100

initramfs-tools (0.92bubuntu12) intrepid; urgency=low

  * scripts/functions: must chvt(1) during failure hooks, as console input
    might be required (eg, boot degraded raid) (LP: #268873).

 -- Dustin Kirkland <kirkland@ubuntu.com>  Thu, 11 Sep 2008 16:49:17 -0400

initramfs-tools (0.92bubuntu11) intrepid; urgency=low

  * scripts/local-premount/resume: Display a message indicating that a resume
    has begun.  This is non-localized text, but is better than nothing until
    we can display a graphical indicator.  (LP: #41137)

 -- Matt Zimmerman <mdz@ubuntu.com>  Thu, 11 Sep 2008 09:26:31 +0100

initramfs-tools (0.92bubuntu10) intrepid; urgency=low

  * drop silly COMPCACHE_PREREQ and SKIP_COMPCACHE hacks, instead we
    export BOOT from init and deacivate compcache on the fly if booting
    in casper if we have more than 512M actual ram available.

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 14 Aug 2008 00:10:13 +0200

initramfs-tools (0.92bubuntu9) intrepid; urgency=low

  * Default update-initramfs.conf to not keep backups. With latest
    last-good-boot, we don't need to any more.
    TODO: LILO probably wants .bak's since it doesn't do last-good-boot stuff.
    Should we worry about this?

 -- Ben Collins <ben.collins@canonical.com>  Sun, 03 Aug 2008 17:34:22 -0400

initramfs-tools (0.92bubuntu8) intrepid; urgency=low

  * scripts/functions: Change to tty1 in the panic function to make sure the
    user can read any error messages displayed. (LP: #243226)

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 29 Jul 2008 16:29:16 +1000

initramfs-tools (0.92bubuntu7) intrepid; urgency=low

  * scripts/functions:
    - add_mountroot_fail_hook(): set up symlinks to hooks in tmp directory
    - try_failure_hooks(): new function that executes each fail hook in
      lexographic order, exiting successfully if a hook succeeds
    - panic(): remove the fail hook calling logic, now provided by
      try_failure_hooks()
  * scripts/local:
    - get_fstype(): FSTYPE must be initialized to "unknown" in case the fstype
      call does not set it
    - root_missing(): new function to provide the oft-called set of checks on
      the ROOT device
    - mountroot(): use root_missing(), and try the failure hooks before giving
      up
  * Fixes required for (LP: #120375), lots of help from Kees Cook, thanks!

 -- Dustin Kirkland <kirkland@ubuntu.com>  Fri, 25 Jul 2008 17:34:21 -0500

initramfs-tools (0.92bubuntu6) intrepid; urgency=low

  * Replace /bin/mount by a symlink to busybox if busybox is available;
    klibc mount doesn't support displaying mount points.

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 16 Jul 2008 11:10:05 +0100

initramfs-tools (0.92bubuntu5) intrepid; urgency=low

  * Remove klibc chroot when using busybox, as the former is just wrong
    (chroot(); execve() rather than chroot(); chdir(); execvp()).

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 11 Jul 2008 12:21:21 +0100

initramfs-tools (0.92bubuntu4) intrepid; urgency=low

  * Add COMPCACHE_PREREQ varable (needs to be exported before running 
    update-initramfs) to the compcache hook script, so that PREREQ can be 
    filled by apps like casper. with that we are for example able to 
    disable compcache dynamically if a certain amount of physical ram is 
    present.
  * Add SKIP_COMPCACHE variable to init-top script (to be read from 
    /tmp/compcache.opts which should be filled by a PREREQ script defined in 
    COMPCACHE_PREREQ) to make it possible to let the script silently die 

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 09 Jul 2008 16:17:39 +0000

initramfs-tools (0.92bubuntu3) intrepid; urgency=low

  * Support loading compcache from the initramfs.
    - conf/initramfs.conf: Add and document the COMPCACHE_SIZE setting.
    - initramfs.conf.5: Document the COMPCACHE_SIZE setting.
    - hooks/compcache: Install the compcache module and a script to initialize
      the cache if COMPCACHE_SIZE contains a value.
    - mkinitramfs: export COMPCACHE_SIZE for the hook.

 -- Johan Kiviniemi <debian@johan.kiviniemi.name>  Wed, 09 Jul 2008 03:10:21 +0300

initramfs-tools (0.92bubuntu2) intrepid; urgency=low

  * Whilst looping for the root filesystem, don't just rely on the existance
    of the block device and whether vol_id succeeds on it, but also make
    sure that udev is not currently active by calling "settle" on it.  This
    solves a race where mdadm or devmapper still has a lock on the device,
    but the contents are ready which will cause the mount call later to fail.

 -- Scott James Remnant <scott@ubuntu.com>  Wed, 02 Jul 2008 16:44:53 +0100

initramfs-tools (0.92bubuntu1) intrepid; urgency=low

  * Merge from debian unstable, remaining changes:
    - Change Build-Depends to Build-Depends-Indep.
    - Use busybox-initramfs for Depends.
    - Do not source udev.conf.
    - Set BUSBOXDIR properly.
    - Keep kinit and gzip in initrd.
    - Use -Qb for for module loading to honor blacklists via the use of
      MODPROBE_OPTIONS.
    - all_generic_ide script.
    - Remove lvm local-top script (conflicts with lvm-common).
    - takeover=1 in update-initramfs.
    - Allow the mounting of a root filesystem as a loop device on top
      of a host filesystem, used for wubi installs.
    - Add vfat support to the initramfs.
    - Reduce timeout to 30 seconds -- corner cases (giant
      disk arrays, clusters) will need to provide their own rootdelay=
      boot arg.
    - Keep more meaningful text for no root device panic.
    - Provide a clearer error on mount failure of the Windows host
      filesystem.
    - Add 2>&1 to the run-init line.
    - Source /scripts/functions in resume script.
    - resume UUID upgrade.
    - Add mountroot failure support, to allow meaningful messages when
      no root device can be found.
    - Panic if either the root device doesn't exist, or vol_id cannot
      identify it. Allows for mountroot failure hooks for md devices
      to be displayed.
    - Ignore blacklist for forced vga= usage.
    - Loop for 5 seconds waiting for $suspend to show up, adjustable
      with the resumedelay= command-line arg.
    - Load virtio_pci for MODULES=most.
    - Usplash pulsates until the real init takes over.
    - Drop scripts/init-premount/thermal as force_load can do this
      for us during initramfs creation.
    - Load thermal modules on lpia.
    - Allow for alternative PREREQS to be specified using | as the
      separator.
    - Add udf to auto_add_modules. It was originally added to
      dep_add_modules, however dep_add_modules now auto-detects the
      modules needed for the root filesystem.
  * hook-functions:
    - Refer to /lib/firmware/${version} where version is the kernel
      version we are building an initramfs for.
    - Do not copy /lib/udev/firmware.agent to the initramfs. Ubuntu's
      udev has /lib/udev/firmware_helper instead, and the udev hook
      copies this to the initramfs for us.
    - Dropped the manual_add_firmware function, as initramfs-tools now
      checks the firmware field in the module it is copying, and copies
      the firmware required by that module if its available.
  * Drop hooks/keymap and the KEYMAP variable setting in
    conf/initramfs.conf as console-setup takes care of keymap loading.
  * hooks/udevhelper: Drop, udev already copies what it needs.
  * hooks/legacylvm: Drop, as it refers to binaries and directories our
    lvm package doesn't have.

 -- Luke Yelavich <themuso@ubuntu.com>  Mon, 30 Jun 2008 15:54:36 +1000

initramfs-tools (0.92b) unstable; urgency=low

  [ maximilian attems ]
  * update-initramfs: mbr_check() fix for /dev/md/X naming. (closes: #469312)
    Thanks to Axel Beckert <beckert@phys.ethz.ch> for report.
  * hook-functions: MODULES=dep fix error message.

  [ Glennie Vignarajah ]
  * initramfs-tools: Fix UUID rootfs detection with 'MODULES=dep'.
    (closes: #483082)

 -- maximilian attems <maks@debian.org>  Fri, 30 May 2008 16:31:42 +0200

initramfs-tools (0.92a) unstable; urgency=high

  * ps3: Add ps3_sys_manager to MODULES=dep ps3 modules.
  * initramfs-tools.8: Document resume_offset bootparam.
  * Documentation typo fixes and additions.
  * init: Fix hardcoded ROOT bootcase. (closes: #478236)
    Thanks Kevin Price <kp@kevin-price.de> for report and
    Martin Michlmayr <tbm@cyrius.com> for debugging.

 -- maximilian attems <maks@debian.org>  Tue, 29 Apr 2008 21:18:55 +0200

initramfs-tools (0.92) unstable; urgency=low

  Release "Ogni contrada è patria del ribelle"

  [ maximilian attems ]
  * init: export ROOTFLAGS + ROOTFSTYPE.
  * debian/control: s/XS-Vcs/Vcs/
  * mkinitramfs: Drop gzip -9 option. (closes: #470869)
    Thanks Tollef Fog Heen <tfheen@err.no>.
  * Ignore lintian warnings about empty directories.
  * framebuffer: Let udev create fb devices.
  * framebuffer: Leave tty devices for udev too.
  * manpages: fix  hyphen-used-as-minus-sign
  * init: fix mkdir usage.
  * init: Set proper permissions of /dev/console mknod fallback.
  * scripts/function: Use mknod directly.
  * debian/control: Depend on latest klibc for mknod usage.
  * scripts/functions: fix configure_networking() for multiple interfaces.
    (closes: #467078) Thanks Michal Sojka <sojkam1@fel.cvut.cz>.
  * ps3 nuke useless hardcoded initramfs script. (closes: #468113)
  * resume: Add support for resume_offset swap file suspend to disk.
    (closes: #474691) Thanks Alan Jenkins <alan-jenkins@tuffmail.co.uk>.
  * update-initramfs: Rename function according to reliability fix.
  * hook-functions: Add atl1, cxgb3, e1000e, igb, ipg, niu, sky2 to
    net section of initramfs modules. (closes: #463607)
  * hook-functions: MODULES=dep fix ps3 support.
  * initramfs-tools.8: Small documentation fixes. (closes: #467627)

  [ debian@x.ray.net ]
  * configure_network(): do nothing if device already configured.
    (closes: #465901)

  [ Joey Hess ]
  * update-initramfs: use dpkg-trigger. (closes: #447611)

  [ Luke Yelavich ]
  * update-initramfs: Initramfs generation reliability fixes.
    (closes: #468112)

  [ Fabio M. Di Nitto ]
  *  hook-functions: Add support for sunvnet and sunvdc.

 -- maximilian attems <maks@debian.org>  Wed, 09 Apr 2008 10:42:49 +0200

initramfs-tools (0.91e) unstable; urgency=medium

  [ Daniel Reichelt ]
  * update-initramfs: fix ro-mounted /boot check (closes: #458772)

 -- maximilian attems <maks@debian.org>  Tue, 12 Feb 2008 18:23:34 +0100

initramfs-tools (0.91d) unstable; urgency=low

  * MODULES=dep fix for new /dev/md/X naming scheme (closes: #440694).
  * debian/control: Add versioned depends on findutils (closes: #450888).
  * Update to newer standards version without changes.
  * local-premount/resume: coding style fixes.

 -- maximilian attems <maks@debian.org>  Wed, 26 Dec 2007 00:53:48 +0100

initramfs-tools (0.91c) unstable; urgency=low

  * update-initramfs: Fix ro /boot partition check (closes: #451151)
  * init: Don't overwrite boot cmdline arg (closes: #453294)

 -- maximilian attems <maks@debian.org>  Wed, 28 Nov 2007 19:49:41 +0100

initramfs-tools (0.91b) unstable; urgency=low

  * hooks/udevhelper: Adding all /lib/udev on initramfs if missing. Due to
    overly strict errexit usage by udev hook functionality might be missing.
    This is an potential Etch Lenny upgrade issue on UUID and LABEL roots.
    Thanks Michael Prokop <mika@grml.org> for report. (closes: 431291)

 -- maximilian attems <maks@debian.org>  Thu, 04 Oct 2007 12:00:33 +0200

initramfs-tools (0.91a) unstable; urgency=low

  * init: Fix resuming with hardcoded uppercase RESUME variable.
    Thanks Raphael Hertzog <hertzog@debian.org> for the report.

 -- maximilian attems <maks@debian.org>  Wed, 12 Sep 2007 19:06:19 +0200

initramfs-tools (0.91) unstable; urgency=low

  * udev_helper: Axe the modprobe ide-generic should no longer be needed
    for kernel since Etch.
  * debian/control: Tighten dep on latest klibc for BUSYBOX=n usage.
    Add XS-Vcs-* fields. Mv busybox from Depends to Recommends.
  * mkinitramfs: Cope when no busybox is around warn on md/lvm root.
  * mkinitramfs: Kill kinit.shared too.
  * scripts/local: Quote readonly variable. (LP: #115807)
  * mkinitramfs, scripts/keymap: Add trailing slash on cp destination for dir.
  * init: Call panic for debug sh if run-init fails.
  * init-top/framebuffer: Check that fb minor is below 32.
  * init: Export noresume if set. uswsusp and kdump need it.
  * init: Try harder to find a valid init on rootmnt. Fixes bootfailure on
    bogus init bootarg too.
  * scripts/{functions,nfs}: Split networking code in separate function.
    Thanks Vagrant Cascadian <vagrant+debianbugs@freegeek.org> for the patch.
    (closes: #439397)
  * update-initramfs: Don't check for ro /boot inside of a chroot.
  * debian/script: Fix syntax of MODULES=dep block.
  * hook-functions: Add rootfs detection for the "auto" mount output.
    Thanks martin f krafft <madduck@debian.org> for report. (closes: #441211)
  * init: Disable quiet on debug bootarg. Fix new init error message.
    Thanks Michael Prokop <mika@grml.org> for the patches.
  * hook-functions: MODULES=dep fix I2O detection. Add sys_walk_modalias()
    to catch old style IDE.
  * mkinitramfs: Export MODULES, allows hook scripts to act accordingly.
    (closes: #421658) Add /usr/share/initramfs-tools/conf-hooks.d for hooks
    options on mkinitramfs run. Do not land in initramfs.

 -- maximilian attems <maks@debian.org>  Sun, 09 Sep 2007 12:26:16 +0200

initramfs-tools (0.90a) unstable; urgency=high

  * scripts/functions: simplify panic()
  * mkinitramfs: Kick empty dir modules.
  * hook-functions: Factor sys_walk_mod_add() out of dep_add_modules().
  * init: Fix mount options invocation for klibc mount.
  * hook-functions: Add the new firewire modules.

 -- maximilian attems <maks@debian.org>  Thu, 23 Aug 2007 14:37:51 +0200

initramfs-tools (0.90) unstable; urgency=low

  Release "J'aim' pas le fataliste Je n'ai ni foi ni loi"

  [ maximilian attems ]
  * hook-functions: Fix xen i386 boots with optimized 2.5. (closes: 420754)
    Thanks Marco Nenciarini <mnencia@debian.org> for patch.
  * debian/control: Bump dep on klibc-utils from etch. (closes: 435031)
  * scripts/functions: Implement non-zero panic bootarg. Style fix for
    maybe_break().
  * hook-functions: dep_add_modules() fix for md, lv, luks root.
    (closes: #426917, #429237, #426446)
  * debian/scripts: Add /etc/crypttab to reportbug script.  Add /sys/block
    list for MODULES=dep to reportbug script.
  * scripts/functions: Add error message on verbose mode about ignored files
    in boot/hooks dir.  Thanks Kornilios Kourtis <kkourt@cslab.ece.ntua.gr>
    for the initial patch. Fixes a double set_initlist call too. Ignore empty
    dirs earlier too. (closes: #428729, #433459)
  * mkinitramfs.8: Document verbose mode.
  * debian/initramfs-tools.preinst: Inhibit /etc/initramfs-tools/conf.d/resume
    creation in chroot for debian-live and other. (closes: #433190)
    Thanks Kel Modderman <kel@otaku42.de> for the patch.
  * update-initramfs: Improve "altered" error message. (closes: #436752)
  * update-initramfs, update-initramfs.conf: update_initramfs config variable
    is tristate. Set to 'all' to update any initramfs: $(update-initramfs -u).
    Allows specific admin setting. (closes: #425050)

  [ David Härdeman ]
  * hook-functions: Protect all variable with local, plus coding style fixes.

 -- maximilian attems <maks@debian.org>  Thu, 09 Aug 2007 21:30:29 +0200

initramfs-tools (0.89) unstable; urgency=low
  
  Release "L'\xE9lecteur c'est notoire N'a pas tout' sa raison"

  [ Joey Hess ]
  * mkinitramfs: Include libgcc_s.so.1 on arm since glibc always tries to load
    it for the SJLJ exception handling on that architecture. (closes: #426395)
    Thanks to Aurelien Jarno for ack and review.

  [ maximilian attems ]
  * initramfs.conf.5: Document ROOT hardcoding.
  * scripts/local: Use simpler fstype invocation.
  * initramfs-tools.8, initramfs.conf.5: Fix typos. (closes: #427837, #427838)
    Thanks "A. Costa" <agcosta@gis.net> for the patch.
  * scripts/local: Try to warn for renamed root dev. (closes: #374611)
  * minitramfs: Fall back to bootable default MODULES=most if unsupported
    MODULES setting is passed. Thanks Henning Sprang <henning_sprang@gmx.de>
    for report. (closes: #429144)
  * hook-functions: Fix variable typo. Thanks Emanuele Rocca <ema@debian.org>.
  * scripts/local: Revert change to use udev vol_id before fstype,
    there are too many "wrongly" formated fs out there. fstype supports less,
    but is more robust.

 -- maximilian attems <maks@debian.org>  Wed, 04 Jul 2007 00:28:34 +0200

initramfs-tools (0.88) unstable; urgency=low

  [ maximilian attems ]
  * debian/changelog: Fix missing colons in closes.
  * hook-functions: Add a proper /sys walking dep_add_modules() for a minimal
    initramfs on MODULES=dep. (closes: #395526)
  * mkinitramfs.8: Add examples section, plus improve description of the
    low-level tool and how it fits with update-initramfs.
  * init: Ignore non-numerical panic and rootdelay bootarg.
  * scripts/init-premount/ps3: Fix typo. (closes: #423469)
  * scripts/nfs: Fix when root-path includes server-ip. (closes: #387808)
    Thanks Vagrant Cascadian <vagrant+debianbugs@freegeek.org> for patch.

  [ David Härdeman ]
  * init: Remove cryptopts parsing, not official bootparam. cryptsetup scripts
    parse /proc/cmdline themselves (even in the Etch version).
  * hook-functions: Change copy_exec to use the same source and
    destination path if only one argument is given.
  * hook-functions: Document how copy_exec determines the target path.
  * hook-functions: Add firmware loading support to manual_add_modules().
    (closes: #355881)
  * scripts/local: Ubuntu merge
    - As well as waiting for the existance of the root device node, also check
      to see whether we have a filesystem of some kind on it.  Some devices
      nodes (devmapper/LVM/EVMS, mdadm) will exist before they can be safely
      used. Patch by Scott James Remnant <scott@ubuntu.com>. Changed to
      support both fstype and vol_id.
  * hook-functions: make version check in check_minkver more robust.

 -- maximilian attems <maks@debian.org>  Sun, 27 May 2007 00:52:38 +0200

initramfs-tools (0.87b) unstable; urgency=low

  * scripts/init-top/framebuffer: Remove vga16fb loading on splash bootarg.
    Newer usplash > 0.4 no longer needs that.

  * hooks/legacymdadm: remove only needed for partial upgrades from sarge.

  *  hooks/legacylvm: Source relevant functions. (closes: 419667)

 -- maximilian attems <maks@debian.org>  Tue, 17 Apr 2007 11:56:58 +0200

initramfs-tools (0.87) unstable; urgency=low

  [ maximilian attems ]
  * scripts/functions: reduce_satisfied() needs to ignore the same set as
    set_initlist() otherwise an script having a prereqs on a non-executable
    boot script may cause circular panic. (closes: 418509)
  * Add blacklist boot param, disabling the load of specific modules inside
    the initramfs. Still needs to be passed via tmpfs to the rootfs.
  * mkinitramfs, scripts/functions: Fix regexes to always use posix character
    classes. Based on a patch by Meelis Roos <mroos@linux.ee>.
    (closes: 419062)

  [ David Härdeman ]
  * Add support for loading keymaps. (closes: 337663)
  * Move legacy code from mkinitramfs to separate hooks.
  * Ubuntu merge
    - Add PS3 module loading functionality without grep usage.
  * debian/copyright: Update authors info.
  * Bump standards version, no changes necessary.
  * debian/scripts: Print settings from initramfs.conf in reportbug script.

 -- maximilian attems <maks@debian.org>  Mon, 16 Apr 2007 20:21:30 +0200

initramfs-tools (0.86) unstable; urgency=low

  * update-initramfs: Bound the mode and version variable. (closes: 403905)

  * init: Set once the MODPROBE_OPTIONS environment variable and export it.
    Don't forget to set -b to have the modprobe.d blacklists respected.
    Thus remove everywhere the -q modprobe switch.
    Thanks Ben Collins <bcollins@ubuntu.com> for the suggestion.

  * small trailing whitespace cleanup, display full path of kernel-img.conf
    in bug script.

  * debian/control: Add busybox-initramfs as Ubuntu busybox alternative
    to depends. Drop the sarge busybox-cvs-static entry.

  * scripts/local-top/mdrun: Drop, existed for partial upgrades from sarge.

  * scripts/local: Improve panic message and printed order. (closes: 414640)
    Thanks Vincent.McIntyre@csiro.au for patch.

  * scripts/functions: Check if panic is set before using it. (closes: 406107)
    Thanks martin f krafft <madduck@debian.org> for report.

  * hook-functions: Copy all kernel/drivers/{block,ide,scsi} subdir modules
    instead of hardcoding the list of "supported" drivers. As consequence
    the initramfs might be larger, but none of those should be missed!
    As bonus syncs with Ubuntu.

  * init: Mount /sys and /proc nodev, noexec, nosuid - Ubuntu sync.

  * update-initramfs: If update-initramfs fails, restore the backup.
    Useful if a MINKVER set is not fulfilled. (LP: #101844)
    Thanks Soren Hansen <sh@linux2go.dk> for patch.

  * initramfs-tools.preinst: Test if $RESUME is nonzero, not if it exists,
    fixes issue of UUID resume dev. (LP: #67932) While there remove the
    conffile mv handling of 0.61.

  * scripts/functions: set_initlist() needs to add only script names with
    alphabetics, numerics and underscores - skip any other. Bad enough
    backup scripts get added, but they shouldn't lead to a panic. Also skip
    directories that might lay around.  (closes: 398347) (LP: #76131)

  * initramfs-tools.8: Document valid script names.

  * mkinitramfs: Don't add backup scripts to initramfs. (closes: 378682)
    (LP: #78348)

  * scripts/functions: run_scripts() return immediately if passed dir
    does not exist. Empty dirs without boot script aren't created anymore.

  * debian/copyright: Update my email, add Ben Collins, update years,
    alphabetic authors sort + add new git tree location.

  * mkinitramfs: Set PATH with /sbin to allow non-root user usage.
    Thanks Bob Montgomery <bob.montgomery@hp.com> for the suggestion.
    (closes: 409995)

 -- maximilian attems <maks@debian.org>  Tue, 10 Apr 2007 21:45:36 +0200

initramfs-tools (0.85g) unstable; urgency=high

  * SECURITY scripts/functions: Set permission of created root dev in
    parse_numeric() to 600. This bug only affects lilo boots. Thanks
    Fabian Pietsch <fabian@canvon.dyndns.org> and Goswin von Brederlow
    <brederlo@informatik.uni-tuebingen.de> for patch input. (closes: 417995)

  * debian/control: Change Uploaders email.

 -- maximilian attems <maks@debian.org>  Fri,  6 Apr 2007 09:19:13 +0200

initramfs-tools (0.85f) unstable; urgency=high

  Release "Au lieu d'aller voter Casse leur la margoulette"

  * update-initramfs: Grub _doesn't_ clear LILO string in mbr, but the inverse
    is done. Fix mbr_check() to first check for GRUB. Fixes accidental lilo
    call in the case that Grub is the used bootloader. (closes: 409820)
    Thanks Michael Prokop <mika@grml.org> for bringing up the case.

  * initramfs.conf.5, mkinitramfs.5: Fix typos. Document version.
    (closes: 405157, 405190, 405194)

  * update-initramfs: Be more screamy about lilo error, people seem to
    overlook recent lilo failures.

  * scripts/init-top/framebuffer: Remove unused variables.

  * init: Export ROOTDELAY to let udev boot script handle eventual rootdelay.
    downgrades 401916

 -- maximilian attems <maks@sternwelten.at>  Wed,  7 Mar 2007 23:34:17 +0100

initramfs-tools (0.85eubuntu41) intrepid; urgency=low

  * Backport from Debian (required for new busybox):
    - init: Fix mount options invocation for klibc mount.

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 11 Jun 2008 18:20:44 +0100

initramfs-tools (0.85eubuntu40) intrepid; urgency=low

  * Add vfat support to the initramfs (LP: #236021).

 -- Evan Dandrea <evand@ubuntu.com>  Fri, 30 May 2008 12:50:50 -0400

initramfs-tools (0.85eubuntu38) intrepid; urgency=low

  * scripts/local: reduce timeout to 30 seconds -- corner cases (giant
    disk arrays, clusters) will need to provide their own rootdelay=
    boot arg.  Expanded the failure text to include a hint about the
    "rootdelay" boot argument.

 -- Kees Cook <kees@ubuntu.com>  Wed, 28 May 2008 13:17:16 -0700

initramfs-tools (0.85eubuntu37) intrepid; urgency=low

  * Provide a clearer error on mount failure of the Windows host
    filesystem (LP: #226622)

 -- Agostino Russo <agostino.russo@gmail.com>  Tue, 06 May 2008 23:55:47 +0100

initramfs-tools (0.85eubuntu36) hardy; urgency=low

  * Drop dependency on volumeid, it's shipped by udev again.

 -- Scott James Remnant <scott@ubuntu.com>  Thu, 10 Apr 2008 14:00:46 +0100

initramfs-tools (0.85eubuntu35) hardy; urgency=low

  * hook-functions: Do not display find error messages if firmware directories
    cannot be found. (LP: #153743)
  * scripts/functions: Remove unneeded quotes. These were causing multiple
    mountroot fail hook entries to be run as one command.
  * scripts/local: Panic if the root device node cannot be found, or vol_id
    can't identify the volume on the device. This allows mdadm's mountroot fail
    hook to be reliably triggered, as the md device node exists even if the
    array cannot be brought up.
  * init: Add 2>&1 to the run-init line at the end of the file, to fix a long
    outstanding bug where init has no stderr.
  * scripts/local-premount/resume: Source /scripts/functions, thanks to
    Nikolaus Filus for the patch. (LP: #203429)

 -- Luke Yelavich <luke.yelavich@canonical.com>  Thu, 10 Apr 2008 00:48:51 +1000

initramfs-tools (0.85eubuntu34) hardy; urgency=low

  * Wow, somehow my fix for 129910 got removed. Re-implement. DO NOT USE -Qb
    for framebuffer. We need to ignore blacklist for forced vga= usage.

 -- Ben Collins <bcollins@ubuntu.com>  Tue, 18 Mar 2008 11:46:44 -0400

initramfs-tools (0.85eubuntu33) hardy; urgency=low

  * Edit scripts/local with patch from
    https://bugs.edge.launchpad.net/wubi/+bug/201750 comment 1
    "Cannot remount loopfiles inside of vfat"
    "The workaround involves mounting all loopinstallations rw to begin with"
    Closes LP: #201750

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 17 Mar 2008 14:35:20 +0000

initramfs-tools (0.85eubuntu32) hardy; urgency=low

  * Drop -9 to gzip call in order to save time at a very small size
    penalty (< 1%)

 -- Tollef Fog Heen <tfheen@ubuntu.com>  Fri, 14 Mar 2008 10:41:38 +0100

initramfs-tools (0.85eubuntu31) hardy; urgency=low

  * debian/initramfs-tools.preinst: If /etc/mkinitramfs/initramfs.conf was not
    modified, do not copy it over to /etc/initramfs-tools on a dapper->hardy
    upgrade, since this causes an unnecessary dpkg conffile prompt.
    (LP: #172853)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 13 Mar 2008 19:19:59 +0100

initramfs-tools (0.85eubuntu30) hardy; urgency=low

  * Fix check for "ro" on /boot
    - LP: #197470

 -- Ben Collins <bcollins@ubuntu.com>  Tue, 11 Mar 2008 14:41:15 -0400

initramfs-tools (0.85eubuntu29) hardy; urgency=low

  * Do not honor blacklists for vga=/video= parsing. We should always load the
    fb drivers in this case (since this is a manual operation on the part of
    the user)
    LP: #129910

 -- Ben Collins <bcollins@ubuntu.com>  Tue, 11 Mar 2008 11:46:08 -0400

initramfs-tools (0.85eubuntu28) hardy; urgency=low

  * update-initramfs: remove failed ".new" initrd when creation is aborted.

 -- Kees Cook <kees@ubuntu.com>  Mon, 10 Mar 2008 15:25:03 -0700

initramfs-tools (0.85eubuntu27) hardy; urgency=low

  * Copy the initramfs image to a backup file, in the event that the /boot
    filesystem doesn't support hard links.

 -- Luke Yelavich <luke.yelavich@canonical.com>  Fri, 07 Mar 2008 09:17:53 +1100

initramfs-tools (0.85eubuntu26) hardy; urgency=low

  * Loop for 5 seconds waiting for $suspend to show up.

 -- Soren Hansen <soren@ubuntu.com>  Fri, 29 Feb 2008 15:34:35 -0500

initramfs-tools (0.85eubuntu25) hardy; urgency=low

  * scripts/functions:
    - Call all registered mountroot failure hooks, rather than
      stopping at one that has reported a failure.
    - Change the loop code that runs mountroot failure hooks, so we don't end up
      in an infinite loop.

 -- Luke Yelavich <luke.yelavich@canonical.com>  Mon, 18 Feb 2008 11:59:07 +1100

initramfs-tools (0.85eubuntu24) hardy; urgency=low

  * Implement the initramfs-tools part of the initramfs error handling spec
  * update-initramfs:
    - Make a hard link to the original initramfs image, rather than moving
      it out of the way.
    - Create a new initramfs image to ${initramfs}.new, to ensure we still
      have a functional initramfs in case of failure. The original initramfs
      only gets replaced when a new image is successfully created.
  * scripts/functions:
    - Added add_mountroot_fail_hook function to allow scripts in
      init-premount to register a hook to allow extra information
      to be given to the user, in the event of a non-existant root
      device.
    - The panic function now runs any registered mountroot fail hooks that
      were previously registered, and only does so when passed the -r
      argument from the calling function.
  * scripts/local: Call the panic function with -r to run any registered
    mountroot fail hooks when a root device cannot be found.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 05 Feb 2008 13:38:51 +1100

initramfs-tools (0.85eubuntu23) hardy; urgency=low

  * Fix broken test in ro_boot_check (LP: #187282).  It was matching ro
    as a subword.

 -- Evan Dandrea <evand@ubuntu.com>  Wed, 30 Jan 2008 10:35:28 -0500

initramfs-tools (0.85eubuntu22) hardy; urgency=low

  * Load virtio_pci for MODULES=most.

 -- Soren Hansen <soren@ubuntu.com>  Wed, 23 Jan 2008 19:27:18 +0100

initramfs-tools (0.85eubuntu21) hardy; urgency=low

  * Drop code to increment the usplash progress bar after each message,
    instead this will be pulsating until the real system.  LP: #162397.

 -- Scott James Remnant <scott@ubuntu.com>  Tue, 13 Nov 2007 20:41:33 +0000

initramfs-tools (0.85eubuntu20) gutsy; urgency=low

  * Updates for ps3 modules

 -- Ben Collins <bcollins@ubuntu.com>  Thu, 04 Oct 2007 10:31:53 -0400

initramfs-tools (0.85eubuntu19) gutsy; urgency=low

  * Always mount loop-mount NTFS host filesystems read-write; ntfs-3g can't
    remount yet.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 06 Sep 2007 23:36:24 +0100

initramfs-tools (0.85eubuntu18) gutsy; urgency=low

  * Use dpkg-trigger even in our own postinst, unless we're doing
    trigger processing or the running dpkg version doesn't support
    reflexive triggers.  This reduces update-initramfs runs from two per
    upgrade batch to one per batch.

 -- Ian Jackson <iwj@ubuntu.com>  Fri, 24 Aug 2007 15:45:38 +0100

initramfs-tools (0.85eubuntu17) gutsy; urgency=low

  * Use dpkg-trigger (if available and operational) to save on
    calls to update-initramfs.

 -- Ian Jackson <iwj@ubuntu.com>  Thu, 16 Aug 2007 16:03:52 +0100

initramfs-tools (0.85eubuntu16) gutsy; urgency=low

  * Load thermal modules on lpia as well.  This may need to change in
    the future to support hardware-specific features, but it's a start.


 -- Adam Conrad <adconrad@ubuntu.com>  Tue, 31 Jul 2007 15:30:42 +1000

initramfs-tools (0.85eubuntu15) gutsy; urgency=low

  * Add support for loop=, loopflags=, and loopfstype= arguments, to allow
    the real root filesystem to be loop-mounted from a given file on the
    filesystem specified by root=.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 30 Jul 2007 16:46:19 +0100

initramfs-tools (0.85eubuntu14) gutsy; urgency=low
  
  * Add support for sunvnet and sunvdc in hook-functions.

 -- Fabio M. Di Nitto <fabbione@ubuntu.com>  Wed, 04 Jul 2007 18:59:22 +0200

initramfs-tools (0.85eubuntu13) gutsy; urgency=low

  * fix nfsroot handling if rootserver is specified with IP and colon in
    root-path (debian bug #387808)

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 04 Jul 2007 10:19:49 +0200

initramfs-tools (0.85eubuntu12) gutsy; urgency=low

  * Add support for alternative prerequisites, specified as e.g.
    "kbd|console-tools" (note the lack of spaces around the "|").

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 01 Jun 2007 16:14:22 +0100

initramfs-tools (0.85eubuntu11) gutsy; urgency=low

  * Allow modules specified by force_load to be blacklisted.
  * Drop scripts/init-premount/thermal since this can be handled by using
    force_load now.

  * Make sure framebuffer modules can be blacklisted.

  * Drop mdrun script, since this can be handled entirely within the udev
    and initramfs scripts supplied by the mdadm package.

 -- Scott James Remnant <scott@ubuntu.com>  Tue, 22 May 2007 10:42:34 +0100

initramfs-tools (0.85eubuntu10) feisty; urgency=low

  * As well as waiting for the existance of the root device node, also check
    to see whether we have a filesystem of some kind on it.  Some devices
    nodes (devmapper/LVM/EVMS, mdadm) will exist before they can be safely
    used.  LP: #103177.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 13 Apr 2007 10:51:27 +0100

initramfs-tools (0.85eubuntu9) feisty; urgency=low

  * Add patch to restore initramfs on failures. Taken from Debian's
    initramfs-tools git repo (5dfd85f416a10b1c41ca7005de38b58715c04472).
  * While we're here, remove snd_ps3 from autoload list on PS3. Isn't in
    initramfs. Installer will add it to /etc/modules.

 -- Ben Collins <bcollins@ubuntu.com>  Tue, 10 Apr 2007 11:05:45 -0400

initramfs-tools (0.85eubuntu8) feisty; urgency=low

  * Add support for the netboot variable, used by casper.  LP: #96072.

 -- Tollef Fog Heen <tfheen@ubuntu.com>  Fri, 30 Mar 2007 23:25:45 +0200

initramfs-tools (0.85eubuntu7) feisty; urgency=low

  * Use -Qb for ppc thermal modprobe's
  * Add snd_ps3 to ps3 module loads. Use -Qb here too.

 -- Ben Collins <bcollins@ubuntu.com>  Thu, 29 Mar 2007 19:54:40 -0400

initramfs-tools (0.85eubuntu6) feisty; urgency=low

  * hook-functions: Add udf to dep_add_modules and auto_add_modules.

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 23 Mar 2007 19:47:51 +0000

initramfs-tools (0.85eubuntu5) feisty; urgency=low

  * Copy all of drivers/block/ to initramfs. Can't believe we didn't do this
    before.
  * Add init-premount hook to manually load modules for ps3. These modules do
    not have aliases or auto-load features, so have to do it by hand
    (ps3-system-bus).
  * For auto module inclusions, detect when we need to pack ps3 modules.

 -- Ben Collins <bcollins@ubuntu.com>  Thu,  1 Mar 2007 16:45:48 -0500

initramfs-tools (0.85eubuntu4) feisty; urgency=low

  * Remove the 10MB size restriction from /dev; this doesn't make sense for
    Ubuntu since we use /dev for initramfs/realfs handover and for things like
    bootchart. 

 -- Scott James Remnant <scott@ubuntu.com>  Tue, 27 Feb 2007 15:00:54 +0000

initramfs-tools (0.85eubuntu3) feisty; urgency=low

  * Add aic94xx firmware hooks.

 -- Ben Collins <bcollins@ubuntu.com>  Wed, 21 Feb 2007 15:34:56 -0500

initramfs-tools (0.85eubuntu2) feisty; urgency=low

  * Don't load vga16fb on amd64 either. usplash 0.4-36 fixes things so that
    we don't need it (LP: #67545).

 -- Colin Watson <cjwatson@ubuntu.com>  Wed,  7 Feb 2007 09:55:05 +0000

initramfs-tools (0.85eubuntu1) feisty; urgency=low

  * Merge from debian unstable, remaining changes:
    - Change Build-Depends to Build-Depends-Indep.
    - Use busybox-initramfs for Depends.
    - RESUME UUID upgrade.
    - add_firmware addition to hook-functions.
    - Use copy_modules_dir for auto module copying.
    - noexec,nodev,nosuid options for /sys and /proc.
    - Do not source udev.conf.
    - Set BUSBOXDIR properly.
    - Keep kinit and gzip in initrd.
    - Use -Qb for for module loading to honor blacklists.
    - all_generic_ide script.
    - Only load vga16fb on amd64 (not i386).
    - Remove lvm local-top script (conflicts with lvm-common).
    - takeover=1 in update-initramfs.
    - Remove udev_helper local-top script. It loads ide-generic, and we don't
      want that.
      - Closes: #76872

 -- Ben Collins <bcollins@ubuntu.com>  Tue,  2 Jan 2007 20:28:59 -0500

initramfs-tools (0.85e) unstable; urgency=high

  Release "Qu'ils soient rouges, bleus ou blancs Il faudrait mieux les pendre"

  * initramfs-tools.8: Correct copy_exec() example. (closes: 403122)
    Add a better dir to copy_modules_dir() example.

  * mkinitramfs: Revert the sed magic busybox hardlinking for size reduction.
    Go for functionality. The klibc binaries are better tested and superior
    in some cases like sleep. Fixes several boot troubles. Thanks
    Benjamí Villoslada <benjami@bitassa.cat> for the report. (closes: 403224)
    Thanks Jurij Smakov <jurij@debian.org> for pinpointing the trouble.

  * hook-functions: Add all drivers/ata drivers to initramfs that exist for
    uname >= 2.6.19 (closes: 403309) urgency high.

  * scripts/init-top/framebuffer: Fix syntax by closing the brackets. Handle
    options of the form key:value, map kernel bootarg to module name for
    matroxfb. Thanks Rob Walker <rob@tenfoot.org.uk> for the patches
    (closes: 403667, 403669). Use posix regexes according to review by
    Jurij Smakov <jurij@debian.org>. Also protect all variables.

 -- maximilian attems <maks@sternwelten.at>  Wed, 20 Dec 2006 22:29:51 +0100

initramfs-tools (0.85d) unstable; urgency=high

  Release "Le gros ventre qu'engraisse L'suffrage universel"

  * update-initramfs: run_lilo() needs to show errors of lilo -t on failure
    and exit with failure message. Thanks David Anselmi <anselmi@anselmi.us>
    for report. (closes: 401331) Updated according to review by
    Jurij Smakov <jurij@debian.org>.

  * hook-functions: Add hppa zalon scsi module. (closes: 401229) urgency high

  * update-initramfs: Add warning for missing initramfs on update mode without
    takeover arg. Restructure altered_check, don't delete sha1sum on failure.
    Thanks Jurij Smakov <jurij@debian.org> for noticing.

   * mkinitramfs: Reduce size of initramfs by keeping 1 busybox copy.
     Thanks for the patch input to Russell Coker <russell@coker.com.au>.
     Thanks for the sed rework to Klaus Ita <deb.ian@worstofall.com>.
     (closes: 338405)

 -- maximilian attems <maks@sternwelten.at>  Thu, 14 Dec 2006 16:10:06 +0100

initramfs-tools (0.85c) unstable; urgency=medium

  Release "Pour être heureux vraiment Faut plus d'gouvernement"

  * hook-funcions: Show on verbose mode the added binaries and libraries.

  * update-initramfs: Don't silently fail, user won't be able to reboot.
    Thanks Mario Aeby for his blog entry.

  * debian/copyright: Moved to bzr.d.o repo location.

  * hook-functions: Merge 0.69ubuntu22 copy_module_dir fixes, we'll use it
    too postetch. Fix the bashism. Thanks to Jurij Smakov <jurij@debian.org>

  * scripts/init-premount/thermal: Load blindly a bunch of thermal modules
    on powerpc as they are not hotpluggable. Might be ugly, but is a safe bet.
    Kernel plattform fix is scheduled for 2.6.20. Push with medium urgency.
    (closes: 401269)

 -- maximilian attems <maks@sternwelten.at>  Sat,  2 Dec 2006 18:06:34 +0100

initramfs-tools (0.85b) unstable; urgency=medium

  * mkinitramfs: Test for ${outfile} before touching anything. (closes: 381677)

  * update-initramfs.conf, update-initramfs: Allow to disable backup strategy.
    While we are it fix logic of backup_booted_initramfs(). (closes: 397787)
    urgency medium.

  * scripts/init-top/framebuffer: Fix regression of /dev/fb0 creation,
    modprobe fb before creating device. Thanks to Otavio Salvador
    <otavio@debian.org> for patch.

 -- maximilian attems <maks@sternwelten.at>  Tue, 14 Nov 2006 08:06:40 +0100

initramfs-tools (0.85a) unstable; urgency=high

  * On first time run backup_booted_initramfs() has nothing to back up.

 -- maximilian attems <maks@sternwelten.at>  Fri,  3 Nov 2006 09:03:46 +0100

initramfs-tools (0.85) unstable; urgency=high

  Release "Nichts ist getan, wenn noch etwas zu tun übrig ist."

  * update-initramfs: Fix ro /boot check to not trigger on other mounts
    having a /boot string. (closes: 393906) Thanks for the patch
    Olli Helenius <olli@starnet.fi>

  * init-top/framebuffer: Fix duplicate fbno0 device creation. Merge the
    0.69ubuntu10 solution. Thanks Benjamin Leipold <rabbit171@web.de>
    for the report. (closes: 393890)

  * update-initramfs: Fix mbr_check() for installed lilo and used grub. Thanks
    for the patch by Michel Casabona <michel.casabona@free.fr>. Also be
    stricter about do_bootloader match, use negative info and add check for
    grub on mbr before throwing error. (closes: 394559) urgency high.

  * hook-functions: Add sata_sil24 to scsi modules. (closes: 395907)
    Thanks Vadim S. Solomi" <vadic@vadic.nnov.ru> for the patch.

  * update-initramfs: Fix lilo detection in mbr_check() for rootraid.
    Based on a patch by Michael Prokop <mika@grml.org>. Suppress lilo warning
    messages on test run.

 -- maximilian attems <maks@sternwelten.at>  Mon, 30 Oct 2006 10:12:58 +0100

initramfs-tools (0.84) unstable; urgency=high

  Release "A-t-on pris à Saint-Périne, Tous ces dictateurs impotents ?"

  * hook-functions: Use modprobe --ignore-install arg to put all listed
    modules on initramfs. Thanks Mario Izquierdo <mariodebian@gmail.com>
    for report. (closes: 384043)

  * update-initramfs: If elilo is around run it on initramfs update, add
    zipl run.

  * scripts/local: Use vol_id too if around to set FSTYPE. Thanks for the
    patch to "Alex Owen" <r.alex.owen@gmail.com> (closes: 380004)

  *  hooks/thermal: Add many of the windfarm modules for powerpc boxes.

  * initramfs-tools.preinst: merge bits of 0.69ubuntu16. (closes: 393773)
    urgency high as fixes upgrade from sarge - thanks Federico Grau
    <donfede@casagrau.org>.

  * scripts/init-top/framebuffer: Fix mknod call. (closes: 393543)
    Thanks for the patch Kiro Zimmer <debian@kironet.de>.

  * mkinitramfs: Create modulesdir even on monolithic linux. (closes: 393688)
    Thanks for the patch Ian Campbell <ijc@hellion.org.uk>.

 -- maximilian attems <maks@sternwelten.at>  Wed, 18 Oct 2006 11:04:50 +0200

initramfs-tools (0.83) unstable; urgency=high

  Release "Ois was du verzapfst is a koida Kaffee"

  * update-initramfs: Keep an initramfs backup while we are running. Do also
    keep the booted initramfs as .bak in /boot. First helps on power cut.
    Second is a good conservative approach and demanded feature.
    Thanks Thiemo Nagel <thiemonagel@gmx.de> for report. (closes: 387780)

  * init: When debug is invoked with an additional arg, write output to
    console. Thanks Christian Aichinger <Greek0@gmx.net> for the idea.
    Should ease remote debugging.

  * initramfs-tools.8: Document new debug=<whatever> feature.

  * initramfs-tools.preinstall: Check for right arg. (closes: 391619)

  * update-initramfs: Try to guess harder if lilo might need to be run
    if grub is also around. On old installs we get _zero_ information from
    /etc/kernel.img. Parse mbr for lilo signature. (closes: 385949)
    Thanks to Michael Prokop <mika@grml.org> for finetuning.

  * scripts/init-top/framebuffer: Parse video bootarg and refactor script.
    This add support for custom framebuffer modules. (closes: 386441)
    Thanks for the patch by David Härdeman <david@2gen.com>.

  * update.conf: Allow to make "update-initramfs -u" an noop. Useful for
    conservative settings of a remote server. (closes: 362064) urgency high.
    Thanks Manoj Srivastava <srivasta@debian.org> for the tough testing.

  * update-initramfs.conf.5: Document the new update_initramfs variable.

  * update-initramfs: Kope with stupid mv of grub to /usr/sbin.

  * manpages: Get a banana and mark myself as author.

  * update-initramfs: version_exists needs not only to check for existing
    sha1sum, but also initramfs. (closes: 382472)

 -- maximilian attems <maks@sternwelten.at>  Fri, 13 Oct 2006 09:38:27 +0200

initramfs-tools (0.82) unstable; urgency=high

  * Merge 0.69ubuntu15, plus 0.69ubuntu14 and 0.69ubuntu11 changelog entries
    as not affected or already fixed.

  * hook-initramfs: Add qla4xxx support, thus urgency high.

 -- maximilian attems <maks@sternwelten.at>  Thu,  5 Oct 2006 16:12:06 +0200

initramfs-tools (0.81) unstable; urgency=low

  Release quick and happy spin j = l + s

  * update-initramfs: Really check for mounted /proc on use. (closes: 388241)
    Thanks Alex Owen <r.alex.owen@gmail.com>. While beeing in this business,
    check for mounted proc in initramfs-tools.preinst too.

  * hook-functions: Add new scsi drivers aic94xx and stex. Add new net drivers
    ehea, ep93xx_eth and qla3xxx. Thus urgency high.

  * update-initramfs:  Use set ``--'' to change positional paramaters. Thanks
    Jörg Sommer <joerg@alea.gnuu.de>. (closes: 389726)

  * scripts/nfs: Revert to previous handling of dhcp server passing server-ip.
    (closes: 387808)

  * debian/initramfs-tools.preinst: Fix comment typo, thanks
    shaulka@012.net.il for the patch. (closes: 389486)

  * mkinitramfs: Allow an hook script to set an paranoid umask, considered
    useful for shipping gpg keys inside of initramfs. Thanks Max Vozeler
    <max@nusquama.org> and Lionel Elie Mamane <lionel@mamane.lu> for the
    patch. (closes: 381677)

 -- maximilian attems <maks@sternwelten.at>  Wed, 27 Sep 2006 15:56:46 +0200

initramfs-tools (0.80) unstable; urgency=high

  Release "O partigiano, portami via, che mi sento di morir."

  * update-initramfs: Test for lilo executable earlier otherwise an warning
    would be issued with grub installed and left over lilo config.

  * hook-functions: Add lasi700 to the scsi modules. (closes: 387909) Thanks
    Nagilum <nagilum@nagilum.org>. Thus urgency high.

  * scripts/nfs: Fix typo in ipconfig protocol handling, fix dhcp server
    passing ser-ip as part of root-path, retry every second to not hammer
    an FAI'ed nfs initramfs network.  Thanks for input and patches
    Vagrant Cascadian <vagrant+bugs@freegeek.org>. While we are there refactor
    the loop. (closes: 387841, 387808, 387809)

  * update-initramfs: Check if /proc is mounted for ro_boot_check.

 -- maximilian attems <maks@sternwelten.at>  Tue, 19 Sep 2006 07:56:47 +0200

initramfs-tools (0.79) unstable; urgency=high

  * update-initramfs: Allow create and delete to work on "all" kernelversions.
    Fixes bug on update to pass all the specified optional args.
    Thanks to Osamu Aoki <osamu@debian.org> for the patch. (closes: 360281)
    Improve it to parse args once and also highlight 'all' on usage.

  * update-initramfs.8: Document usage of "all" + add example section.

  * update-initramfs: On update check if /boot is ro, warn and exit.
    Thanks to Alexander Wirt <formorer@debian.org> to improve the awk snippet.

  * update-initramfs: run_lilo don't return 1 if no lilo executable is there.
    Thanks "Peter D. St. Onge" <pete.stonge@utoronto.ca> for the report.
    (closes: 386999)

 -- maximilian attems <maks@sternwelten.at>  Mon, 11 Sep 2006 22:11:54 +0200

initramfs-tools (0.78) unstable; urgency=medium

  * update-initramfs: Check in call_lilo() if /sbin/lilo is executable,
    when /etc/lilo.conf exists (closes: 384967) - thus urgency medium.

  * init: Guard all dirs against creation. (closes: 385281)

  * debian/scripts: Add /etc/kernel-img.conf section, as update-initramfs
    needs to act according to it.

  * scripts/nfs: Fix parsing of etherboot ip options. Based on a patch by
    to Vagrant Cascadian <vagrant+bugs@freegeek.org>. (closes: 385252)

  * scripts/nfs: No need to duplicate work of ntfsmount. Thanks for the patch
    to  Vagrant Cascadian <vagrant+bugs@freegeek.org>. (closes: 385226)

  * scripts/nfs: Add an sleep 0.1 in the retry loop to slow down retry
    attempts. Only log "Retrying .." after first run. Use init variable.
    (closes: 385624)

  * init: Reorder the early mknod after tmpfs mount. (closes: 385641)

  * initramfs.conf.5, mkinitramfs, scripts/local, scripts/local-top/mdrun,
    scripts/nfs, update-initramfs.8, debian/changelog: Whitespace policy.

 -- maximilian attems <maks@sternwelten.at>  Mon,  4 Sep 2006 17:38:13 +0200

initramfs-tools (0.77b) unstable; urgency=high

  * mkinitramfs: Fix destination of mdrun.conf. Thanks for the report to
    Scott Glenn <s103@webmasters.com>. Urgency high as broken in testing
    too and needed for partial mdadm upgrades. (closes: 385406)

 -- maximilian attems <maks@sternwelten.at>  Thu, 31 Aug 2006 13:20:51 +0200

initramfs-tools (0.77) unstable; urgency=medium

  * mkinitramfs, scripts/local-top/mdrun: Use mdrun.conf as config file.
    Ship mdrun unconditionally if around, should help in recovery situations.

  * debian/initramfs-tools.postinst, hook-functions, mkinitramfs,
    scripts/local, update-initramfs: Cleanup the "-a" and "-o" bashism.

  * scripts/nfs: Retry to mount NFS on eventual failure. (closes: 377643)
    Based on a patch by Vagrant Cascadian <vagrant+bugs@freegeek.org>.

  * init: Make sure there is an /dev and /root. Usually passed by the kernel.
    Also /dev/null or /dev/console might already be shipped.
    Based on a patch by David Härdeman <david@2gen.com>. (closes: 340494)

  * scripts/local-top/lvm: Fix prereqs s/mdraid/mdrun, thus urgency medium.
    Thanks Rainer Gauweiler <debian@moppl.inka.de> for the notice.

 -- maximilian attems <maks@sternwelten.at>  Fri, 25 Aug 2006 16:55:56 +0200

initramfs-tools (0.76) unstable; urgency=medium

  * debian/control: Tighten klibc to 1.4.19-2 for fixed nuke. (closes: 383730)

  * mkinitramfs: Only hard code root when root arg got passed.

  * init: Parse /proc/cmdline for rootfstype, initrd-tools did it too.

  * init: Parse /proc/cmdline for rootdelay.

  * scripts/local: Use eventual rootfstype and rootdelay info.

  * initramfs-tools.8: Add more docs about boot args, s/2.6.15/2.6.17/.

  * scripts/functions: Simplify parse_numeric() by arithmetic calculation,
    instead of working on it's representation. Thanks to tarski.
    (launchpad.net/21759) Much more elegant than the 0.58 version fix.

  * mkinitramfs: Parse rootraid for sarge compatibility and pass the info
    to the initramfs if etch mdadm is not yet installed.

  * scripts/local-top/mdrun: Assemble the root raid first before mdrun.
    Thanks martin f krafft <madduck@debian.org>. (closes: 383908, 384063)

  * update-initramfs: Check if /etc/kernel-img.conf is readable,
    before attempting to parse also check for the right field.

  * init: Check for root=/dev/nfs. Parse ip kernel command line for nfsroot.
    Drop undocumented and not compliant nfsopts.

  * scripts/nfs: Add ip parsing conforming to Documentation/nfsroot.txt.
    Use the nfsroot bootparam in combination with eventual ip provided
    device or server-ip. Do minor code cleanups. Both items based on patches
    by Vagrant Cascadian <vagrant+bugs@freegeek.org>. (closes: 380649)

  * Set urgency medium due to large number of serious bug fixes.

 -- maximilian attems <maks@sternwelten.at>  Wed, 23 Aug 2006 08:17:51 +0200

initramfs-tools (0.75) unstable; urgency=high

  * hook-functions: Add megaraid_sas to the scsi list. Thanks Kenshi Muto
    <kmuto@debian.org>.

  * init: Parse for "panic=<timeout>" bootarg.

  * hook-functions: Immediately call reboot in the panic function if panic=0
    to disallow any console access for secured boxes. (closes: 378455)

  * debian/TODO: Update to current state

  * update-initramfs: do_bootloader can be set mixed case or upper case.
    Catch the obvious Yes and YES too.

  * hook-functions: Really include DAC960 driver. Thanks Tim Small
    <tim@buttersideup.com>. (closes: 383486) 2 module fixes thus urgency high.

 -- maximilian attems <maks@sternwelten.at>  Fri, 18 Aug 2006 15:35:09 +0200

initramfs-tools (0.74) unstable; urgency=low

  * scripts/local-premount/resume: Reuse klibc resume, hardcode path as
    uswsusp shipps too an resume binary in initramfs-tools. Thus tighten
    again klibc dep to 1.4.11-1. (closes: 381535)

  * mkinitramfs: Readd mdrun when around.

  * scripts/local-top/mdrun: Rename from mdraid. Use mdrun as previously,
    there is no guarantee that the sarge mdadm works and that the sarge
    mdadm.conf has any sense.

  * debian/control: Better package description.

  * scripts/local: mountroot add message what to check if root is not found
    in 2 straight lines to keep as much of scrolling buffer.

  * scripts/functions: Use set ``--'' to change positional paramaters without
    changing any options. This is useful for the debug bootparam on d?ash.

  * update-initramfs: Respect "do_bootloader = yes" from /etc/kernel-img.conf
    to call lilo if both lilo and grub are installed. (closes: 382013)

 -- maximilian attems <maks@sternwelten.at>  Thu, 17 Aug 2006 16:50:51 +0200

initramfs-tools (0.73e) unstable; urgency=high

  * mkinitramfs: Fix if statement for conf.d. (closes: 382740)

 -- maximilian attems <maks@sternwelten.at>  Sun, 13 Aug 2006 10:05:10 +0200

initramfs-tools (0.73d) unstable; urgency=high

  * scripts/local-top/mdraid: Fix path of expected mdadm config file.
    Thanks Daniel Dickinson <cshore@wightman.ca> for report. (closes: 382602)

  * mkinitramfs: Treat /usr/share/initramfs-tools/conf.d config snippets as
    the configuration files in /etc/initramfs-tools/conf.d. A configuration
    file with the same name will override the first. (closes: 381315)
    Thanks Vagrant Cascadian <vagrant+bugs@freegeek.org> for the patch.

  * mkinitramfs.8: Document conf.d existence.

  * hooks/lvm: Really remove it, logic is in mkinitramfs.

  * urgency high for the mdraid bug fix, rest is trivial.

 -- maximilian attems <maks@sternwelten.at>  Sat, 12 Aug 2006 09:43:55 +0200

initramfs-tools (0.73c) unstable; urgency=low

  * scripts/local-premount/resume: Revert klibc-utils resume usage until
    breakage cause is known. Thus downgrade klibc dep to 1.4.8-0. Thanks
    Steinar H. Gunderson <sesse@debian.org> for report. (closes: #381475)

 -- maximilian attems <maks@sternwelten.at>  Sat,  5 Aug 2006 09:31:16 +0200

initramfs-tools (0.73b) unstable; urgency=high

  * Revert nfs change in 0.70: Debian busybox is build with CONFIG_NFSMOUNT=n.
    Reuse nfsmount from klibc. nfsroot parsing needs more care for the next
    release. Now at least support those users where nfs previously worked.
    Thanks Vagrant Cascadian <vagrant+bugs@freegeek.org> for report.
    (closes: 380686). High urgency to get this into testing.

 -- maximilian attems <maks@sternwelten.at>  Fri,  4 Aug 2006 09:53:46 +0200

initramfs-tools (0.73) unstable; urgency=high

  * debian/initramfs-tools.postrm: Don't forget to remove config file
    modules on purge. Thanks piuparts verification.

  * mkinitramfs: Add sections that deals with sarge mdadm and lvm2.
    Does nothing if etch package hooks are installed, will be dropped
    postetch as then we upgrade from mdadm and lvm2 packages with hooks.
    Taken from Dapper initramfs-tools-0.40ubuntu32. Adapt to add more
    modules and no need for mdrun.

  * hooks/lvm: Remove handled by mkinitramfs itself.

  * scripts/local-top/lvm: Add prereqs lvm2 + mdraid. Exit if lvm2 hook is
    present. Eases transition of lvm hooks to lvm2.

  * scripts/local-top/mdraid: Enable all raid devices. Add mdadm as prereqs.
    Only run if no mdadm hook is in initramfs. (closes: 380089)

  * urgency high upload to get RC fixes into testing.

 -- maximilian attems <maks@sternwelten.at>  Sat, 29 Jul 2006 13:35:43 +0200

initramfs-tools (0.72) unstable; urgency=low

  * Add scripts/init-top/framebuffer, reduces ubuntu diff even more.
    fb is only activated with splash or vga boot param.
  * Upload sponsored by Petter Reinholdtsen.

 -- maximilian attems <maks@sternwelten.at>  Tue, 25 Jul 2006 09:11:18 +0200

initramfs-tools (0.71b) unstable; urgency=low

  * This time caught on bzr dotfiles, removed.
    Thanks a lot to Frederik Schüler <fs@debian.org> for review.

 -- maximilian attems <maks@sternwelten.at>  Mon, 24 Jul 2006 15:06:04 +0200

initramfs-tools (0.71) unstable; urgency=low

  * initramfs.conf.5, initramfs-tools.8, mkinitramfs.8, mkinitramfs-kpkg.8,
    update-initramfs.8: Fix spacing in the SEE ALSO section and have this
    section everywhere as last. Fix linebreak in mkinitramfs.8 options.
    Thanks Martin Michlmayr <tbm@cyrius.com> for the notice.

  * scripts/functions: Use shell parameter expansion to strip known dir
    prefix instead of gratious basename call.

  * scripts/functions: On panic call open the rescue shell with -i to get
    dash interactive features. ash from busybox ignores the param.
    Thanks David Härdeman <david@2gen.com> for the suggestion.

  * conf/initramfs.conf: Readd BUSYBOX=y section. Beware that a lot of boot
    scripts need busybox and the current default image still does too.

  * initramfs.conf: Document BUSYBOX usage.

  * init: Add variable quoting around resume, NORESUME parsing and checks.

  * hook-functions: Add myri10ge and smc911x to the net section. Add hptiop to
    the scsi section.

  * update-initramfs: Fix -v usage by not passing quoted ${OPTS} as one
    option. Thanks Famelis George <famelis@otenet.gr> for the patch.
    (closes: 379212)

  * mkinitramfs: Really source /usr/share/initramfs-tools/conf.d/ entries.

  * mkinitramfs: Check against modules.dep before invoking depmod.

  * hook-functions: check_minkver() only needs to call init_list(),
    when a dir gets passed. Clean up check_minkver() logic.

  * scripts/function, mkinitramfs: Add output on verbose mode.

  * merge 0.69ubuntu4.

  * scripts/local-top/lvm: Prereqs s/md/mdadm/ for the new hooks.

 -- maximilian attems <maks@sternwelten.at>  Mon, 24 Jul 2006 09:10:53 +0200

initramfs-tools (0.70b) unstable; urgency=low

  * Be more careful about vi dot files, removed.
    Thanks Frederik Schüler <fs@debian.org> for review.

 -- maximilian attems <maks@sternwelten.at>  Wed, 19 Jul 2006 16:00:47 +0200

initramfs-tools (0.70) unstable; urgency=low

  * mkinitramfs: Don't include static kinit, nor gzip. They are the biggest
    klibc-utils binaries and we don't use them. Keep static gunzip, zcat and
    shared kinit for now.

  * Reduce diff against 0.69ubuntu3:
    - hook-functions: Fix kernel typo.
    - hooks/kernelextras: Fix comment and add vga16fb too.
    - init: Whitespace cleanup, add one more quiet check.
    - mkinitramfs: Use check_minkver instead of dpkg itself. Whitespace
      cleanup and add quoting.
    - scripts/local: Whitespace cleanup and add a comment.
    - scripts/nfs: Use mount with nolock instead of nfsmount.
      (closes: 359926)
    - update-initramfs: Add quoting + whitespace fix.
    - changelog: for noise reduction add 0.69ubuntu{1,2,3}, all 0.40ubuntu*,
      0.36ubuntu1 and missing 0.29 + 0.28 entries.
    - initramfs-tools.install, initramfs-tools.postinst and
      initramfs-tools.preinst merge 0.69ubuntu3.

  * break.txt, debian/NEWS, debian/changelog, debian/copyright,
    docs/example_hook, docs/example_hook_cpiogz, docs/example_script,
    hooks/lvm, hooks/md, init, initramfs-tools.8, initramfs.conf.5,
    mkinitramfs, mkinitramfs-kpkg, mkinitramfs-kpkg.8, mkinitramfs.8,
    scripts/functions, scripts/local-top/udev_helper, update-initramfs,
    update-initramfs.8: Cleanup trailing whitespace and non tabular indents.

  * scripts/local-premount/resume: Use new resume bin from klibc-utils.
    Removes superflous stat and awk usage.

  * debian/control: Depend against newer klibc-utils 1.4.11-1.

  * hooks/md, scripts/local-top/md: Drop as mdadm > 2.5-1 features them.
    (closes: #367567)

 -- maximilian attems <maks@sternwelten.at>  Wed, 19 Jul 2006 11:09:52 +0200

initramfs-tools (0.69b) unstable; urgency=high

  * debian/initramfs-tools.preinst: Don't depend upon shipped directories
    to be existing. Thanks Colin Watson <cjwatson@debian.org> for patch.
    Add trailing slash to copy command. (closes: 378089)

  * mkinitramfs: Revert the removal of kernel-package supported lonng param
    of 0.65. Readd that plain ugly interface. Warn users they should use
    ramdisk=mkinitramfs-kpkg. As kernel-package doesn't yet support
    update-initramfs. Thanks Frans Pop <fjp@debian.org> for report.

  * debian/bug: Rename to script so that it shows up in reportbug.
    Fix debian/initramfs-tools.install accordingly.

  * Thus high urgency upload.

 -- maximilian attems <maks@sternwelten.at>  Fri, 14 Jul 2006 00:31:30 +0200

initramfs-tools (0.69ubuntu22) feisty; urgency=low

  * For copy_module_dir, actually call manual_module for each one, so deps are
    taken care of.

 -- Ben Collins <bcollins@ubuntu.com>  Thu, 23 Nov 2006 02:10:29 -0500

initramfs-tools (0.69ubuntu20) edgy; urgency=low

  * Add the LSI Logic MegaRAID SAS Driver (megaraid_sas) to the SCSI
    module list, common on newer Dell PowerEdge servers, among others.

 -- Adam Conrad <adconrad@ubuntu.com>  Wed, 25 Oct 2006 18:16:15 +1000

initramfs-tools (0.69ubuntu19) edgy; urgency=low

  * Check for "modules.dep" before running depmod, not "modules.depmod"
    which won't ever exist.  This caused depmod to be run after live
    filesystem generation without the restricted modules available, it
    could also randomly cause the same to happen on upgrades depending
    on the order packages are configured.  Ubuntu: #60938.

 -- Scott James Remnant <scott@ubuntu.com>  Tue, 24 Oct 2006 18:51:09 +0100

initramfs-tools (0.69ubuntu18) edgy; urgency=low

  * Anchor regex in sed command to revert conffile edits, to avoid
    double-commenting RESUME= and causing a conffile prompt on upgrades
    (Closes: LP#66599)

 -- Matt Zimmerman <mdz@ubuntu.com>  Wed, 18 Oct 2006 04:54:45 -0700

initramfs-tools (0.69ubuntu17) edgy; urgency=low

  [ Tollef Fog Heen ]
  * Load vga16fb on amd64.

  [ Adam Conrad ]
  * ... but only when booting with a splash.

 -- Adam Conrad <adconrad@ubuntu.com>  Tue, 17 Oct 2006 12:29:35 +1000

initramfs-tools (0.69ubuntu16) edgy; urgency=low

  * Bring in preinst fixes from Debian, including s/configure/install/ in
    preinst, since preinst is never called with "configure", and checking
    for /proc/swaps before we blindly try to read it to determine RESUME.
  * Do away with the bogus '-n "$2"' test in preinst, since "install" can
    be called without any arguments at all (and often is, on a clean setup)
  * On upgrades, revert the RESUME mangling that dapper's d-i did to our
    config file, avoiding spurious conffile prompts (launchpad.net/63693)

 -- Adam Conrad <adconrad@ubuntu.com>  Mon, 16 Oct 2006 17:23:41 +1000

initramfs-tools (0.69ubuntu15) edgy; urgency=low

  * Add jmicron module to ide list.
    - Malone #63085

 -- Ben Collins <bcollins@ubuntu.com>  Wed,  4 Oct 2006 09:21:08 -0400

initramfs-tools (0.69ubuntu14) edgy; urgency=low

  * Remove stray "set -x" from scripts/local-premount/suspend.

 -- Adam Conrad <adconrad@ubuntu.com>  Wed, 20 Sep 2006 08:35:05 +1000

initramfs-tools (0.69ubuntu11) edgy; urgency=low

  * since we ship /usr/share/initramfs-tools/conf.d as well as
    /etc/initramfs-tools/conf.d, make sure mkinitramfs also reads from both,
    not only from the /etc location

 -- Oliver Grawert <ogra@ubuntu.com>  Sun, 10 Sep 2006 11:50:14 +0200

initramfs-tools (0.69ubuntu10) edgy; urgency=low

  * Create framebuffer device nodes unconditionally

 -- Matthew Garrett <mjg59@srcf.ucam.org>  Tue,  5 Sep 2006 17:50:53 +0100

initramfs-tools (0.69ubuntu4) edgy; urgency=low

  * scripts/local-premount/suspend: Check for UUID= or LABEL= on the
    start of $resume, and use /dev/disk/by-{uuid,label} if found.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 21 Jul 2006 17:58:34 +0100

initramfs-tools (0.69ubuntu3) edgy; urgency=low

  * debian/initramfs-tools.install, debian/initramfs-tools.preinst,
    debian/initramfs-tools.postinst: Copy default modules file in the
    postinst (when it's actually available) rather than in the preinst (when
    it isn't). Copy it from /usr/share/initramfs-tools/ rather than from
    /usr/share/doc/initramfs-tools/examples/, per policy.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 13 Jul 2006 10:04:26 +0100

initramfs-tools (0.69ubuntu2) edgy; urgency=low

  * debian/initramfs-tools.preinst: Make sure /etc/initramfs-tools and
    /etc/initramfs-tools/conf.d exist before trying to write to them.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 13 Jul 2006 09:19:05 +0100

initramfs-tools (0.69ubuntu1) edgy; urgency=low

  [ Jeff Bailey ]
  * Merge from debian unstable.

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed, 12 Jul 2006 19:22:22 -0400

initramfs-tools (0.69) unstable; urgency=low

  * scripts/local-premount/suspend, scripts/local-premount/resume: Rename
    to the later as the script resumes from resume arg.

  * init: Parse for noresume and only export resume if it is not set.
    Allows boot scripts to check for it's eventual existence.
    Thanks David Härdeman <david@2gen.com> for the suggestion.

  * update-initramfs: Add option "-b directory" to override BOOTDIR.
    Allows the initramfs to be created in another dir without awkward
    mkinitramfs invocation. Check that the passed arg is really a dir.
    (ubuntu: 37690) Thanks Colin Watson <cjwatson@debian.org>

  * update-initramfs.8: Document -b switch.

 -- maximilian attems <maks@sternwelten.at>  Wed, 12 Jul 2006 16:51:49 +0200

initramfs-tools (0.68b) unstable; urgency=high

  * script/functions, hook-functions: Move check_minkver() to the second
    file as it uses dpkg and is run by mkinitramfs and not on boot.

  * mkinitramfs: Check if ${BUSYBOX} is set to n before adding it.
    Add a big fat warning that this not yet supported. Helps to do the
    klibc-utils work.

  * mkinitramfs: Run depmod if no /lib/modules/${version}/modules.dep exists.
    Solves initramfs creation for handbuild upstream Xen targets.
    Thanks to Klaus Ita <ita@ai.wu-wien.ac.at> for the report.

  * debian/initramfs-tools.preinst, debian/initramfs-tools.postinst: Do the
    migration of the mkinitrd settings in the preinst. (closes: #376604) Thanks
    for the checks to Justin Pryzby <justinpryzby@users.sourceforge.net>.

  * debian/initramfs-tools.preinst: Reorder. Generate an modules file similar
    to the one we ship. This should minimize Sarge upgrade prompting if no
    relevant modules where added to /etc/mkinitrd/modules.

  * conf/modules: Make it more similar to /etc/mkinitrd/modules.

  * Set urgency high for RC fixes upload.
    Thanks Steinar H. Gunderson <sesse@debian.org> for the review.

 -- maximilian attems <maks@sternwelten.at>  Mon, 10 Jul 2006 00:13:52 +0200

initramfs-tools (0.67) unstable; urgency=high

  Release bella, ciao, ciao, ciao!

  * scripts/local: Fix typo in log_begin_msg. (closes: #375880)

  * update-initramfs: Generate initramfs for current version if there is no
    sha1sum and no initrd exists yet - regression from 0.65. (closes: #375671)
    Thanks martin f krafft <madduck@debian.org> for report.

  * conf/initramfs.conf, initramfs.conf(5): Drop RESUME section.

  * debian/initramfs-tools.preinst: Don't modify conffile initramfs.tools -
    drop the corresponding code. (closes: #376008)

  * initramfs-tools(8): Document that RESUME is tried to be autodected and
    written to /etc/initramfs-tools/conf.d/resume on install.

  * scripts/functions: Replace expr use with printf for skipping comments on
    /etc/modules. Works on both busybox ash and klibc dash. Prefix space is
    ignored by both.

  * scripts/local-top/lvm: Remove harmless warnings if a volumegroup is under
    /dev/mapper but not an lvm device. (closes: 376311)
    Thanks David Härdeman <david@2gen.com> for the patch.

  * scripts/local-top/lvm: Change activate_vg() to return 1 if no volumegroup
    is found.

  * debian/initramfs-tools.dirs: Add usr/share/initramfs-tools/conf.d entry.

  * mkinitramfs: Add stuff to the conf.d directory also from aboves directory.

  * Set urgency to high to get the RC bugfix into testing.

 -- maximilian attems <maks@sternwelten.at>  Sun,  2 Jul 2006 18:35:34 +0200

initramfs-tools (0.66) unstable; urgency=low

  * hooks/thermal: Add i2c-powermac.

  * scripts/init-premount/thermal: Load i2c-powermac on ppc boot.
    Fixes fan noises for Sven Luther <svenl@debian.org>

  * scripts/function: Fix typo s/FS1/PS1/ on panic call. (closes: #375624)
    Thanks to Tim Phipps <tim@phipps-hutton.freeserve.co.uk> for the report.

  * scripts/local-top/lvm: Refix lilo check. (closes: #375786)
    Thanks to the patch from Christian Weeks <christian.weeks@oracle.com>.

 -- maximilian attems <maks@sternwelten.at>  Wed, 28 Jun 2006 12:11:49 +0200

initramfs-tools (0.65b) unstable; urgency=low

  * scripts/local-top/lvm: Load snapshot and mirror modules. (Closes: #375342)

  * scripts/local-top/lvm: Fix a wrong substitution for the lilo test.
    (Closes: #375442)

 -- maximilian attems <maks@sternwelten.at>  Mon, 26 Jun 2006 14:54:30 +0200

initramfs-tools (0.65) unstable; urgency=low

  * scripts/local-top/lvm: Activate root and resume volume group.
    The initialization got refractored in an function. (closes: #374891)
    Thanks for the patch to David Härdeman <david@2gen.com>.

  * scripts/local-top/lvm: Be careful to activate volume group on lilo boot
    too. Although in that case we don't know the precise volume group, we
    activate them all. Matches behaviour of previous hook.

  * hooks/lvm: Add dm-mirror, allows to boot from an unfinished pvmove.
    (closes: #374378)

  * mkinitramfs: Remove old kernel-package supported long param.
    kernel-package uses since 10.036 mkinitramfs-kpkg.

  * update-initramfs: Show by default which initramfs gets generated.
    (closes: #364301)

  * Resync with 0.40ubuntu32:
   -  Make prereqs conditional on the script/hook actually existing.  From
      now on, this means that 'PREREQ="udev"' means "run udev first, iff it
      happens to be installed".  Having the files exist on the filesystem if
      you have a HARD dependency should be enforced with package dependencies.
      (closes: #369617)
   -  Make "update-initramfs -u" try to find the running kernel *after* it
      attempts to search the symbolic link list and its own sha1 list.
      Using this as a fallback, rather than the default, should solve most
      upgrade issues, where people found their initramfs was half-baked.
   -  Abstract out the kernel minversion checking stuff into the function
      library, so we can reuse it to check minversion requirements for hook
      scripts as well (such as udev, which requires >= 2.6.15 in dapper)
   -  Bump the kernel minversion to 2.6.15 on hppa and ia64, since they used
      initrd-tools with their 2.6.12 kernels in breezy, not initramfs-tools.
   -  If mkinitramfs fails due to minversion not being met, don't bail out
      of update-initramfs, but just exit 0, so upgrades don't halt on it.

  * debian/initramfs-tools.postrm: We no longer need to explicitly remove
    /etc/initramfs-tools/modules.

 -- maximilian attems <maks@sternwelten.at>  Sat, 24 Jun 2006 13:27:49 +0200

initramfs-tools (0.64) unstable; urgency=low

  RELEASE o bella, ciao! bella, ciao!

  * debian/initramfs-tools.install: Add /etc/initramfs-tools/modules conffile,
    instead of a cp from postinstall. (closes: #368043)

  * debian/control, update-initramfs.8, mkinitramfs.8: Capitalize RAM + NFS.
    Rephrase nfs root support.

    Thanks to Jeff Bailey <jbailey@raspberryginger.com> and
    Steinar H. Gunderson <sesse@debian.org> for the review.

 -- maximilian attems <maks@sternwelten.at>  Thu, 22 Jun 2006 20:45:59 +0200

initramfs-tools (0.63) unstable; urgency=low

  * init: Use redirection '>' for touching /dev/.initramfs-tools.

  * debian/control, update-initramfs.8, mkinitramfs.8:
    s/an (cpio archive)/a gzipped \1/.
    Thanks to Andy Somerville <andy.somerville@gmail.com>.

 -- maximilian attems <maks@sternwelten.at>  Thu, 22 Jun 2006 01:11:17 +0200

initramfs-tools (0.62) unstable; urgency=low

  * debian/control: We need at least udev 0.086-1, since earlier versions
    had hooks, which don't load ide-disk automatically for 2.6.15 kernels.
    Can't lower dependency to sarge version as it has no coldplug support
    to escape udev dependency loop on upgrade. (closes: #358360, #362816)

  * hook-functions: Add arcmsr to the scsi modules list.

  * debian/NEWS: Add Notice about confdir mv as version 0.61.

 -- maximilian attems <maks@sternwelten.at>  Wed, 21 Jun 2006 09:22:23 +0200

initramfs-tools (0.61) unstable; urgency=low

  Release "O partigiano portami via"

  * debian/TODO: update to latest state.

  * debian/bug: Fix reportbug script shebang line, add some descriptive echos.
    Use exec to open file descriptor 3 for reportbug.

  * debian/control: Pump to 3.7.2 standard version without changes.

  * init: Use 10M as tmpfs_size for the udev /dev, that can be overriden in
    /etc/udev/udev.conf. (closes: #352434)

  * /etc/initramfs-tools: Use the much more intituive conf dir location.
    Thanks for the idea to Andres Salomon <dilinger@debian.org>.

  * debian/initramfs-tools.preinst: mv /etc/mkinitramfs /etc/initramfs-tools
    on upgrade as this should work even with drive space issues.
    Thanks to Jeff Bailey <jbailey@raspberryginger.com> for the posix atomic
    mv hint and Daniel Blaschke <blaschke@hep.itp.tuwien.ac.at> for testing.

  * mkinitramfs: Set CONFDIR to /etc/initramfs-tools.

  * mkinitramfs.8, initramfs-tools.8: Document the new pathes.

  * debian/control: Change Build-depends-indep to Build-depends as we need
    debhelper and cdbs for the clean target, fulfills policy 7.6.

  * debian/initramfs-tools.preinst: Warn and bail out if /etc/initramfs-tools
    already exists.

 -- maximilian attems <maks@sternwelten.at>  Thu, 18 May 2006 17:27:44 +0200

initramfs-tools (0.60) unstable; urgency=low

  "E ho trovato l'invasor"

  * scripts/functions: Allow boot scripts to modify exported boot parameters.
    Thanks David Härdeman <david@2gen.com> for the patch. (closes: 348147)
    This allows the inclusion of cryptoroot hooks to cryptsetup!

  * init: add cryptopts parsing and export.

  * init: Move parse_numeric down to the "mounting root" block.

  * init, scripts/local: Allow rootflags to be passed in kernel cmdline.
    Thanks Thomas Luzat <thomas.luzat@gmx.net> for the patch. (closes: #358917)

  * init: Allow passing nfs root mount option in kernel cmdline.  Thanks
    Brian Brunswick <bdb@forbidden.co.uk> for the patch. (closes: #358649)

  * update-initramfs: s/ALL/all/, fix it to actually run on update in non
    verbose mode. (closes: #362568)

  * update-initramfs: Warn in big letters about grub and lilo installs.
    (closes: #362816)

  * debian/bug: Add reportbug script with info about cmdline, fs and lsmod.

  * initramfs-tools(8): Document the /conf/param.conf feature.

  * mkinitramfs-kpkg(8): Spell out, why the wrapper script is needed.

 -- maximilian attems <maks@sternwelten.at>  Tue, 18 Apr 2006 13:33:18 +0200

initramfs-tools (0.59b) unstable; urgency=low

  * mkinitramfs-kpkg: Intialialize the variables.
    (closes: #359355, #359620, #359613, #359666, #359681)

 -- maximilian attems <maks@sternwelten.at>  Tue, 28 Mar 2006 16:30:59 +0200

initramfs-tools (0.59) unstable; urgency=low

  * debian/copyright: Add years of copyright and authors.

  * Resync with 0.40ubuntu28:
    - hooks/md: Add raid10 module.
    - scripts/local: Move the "loop waiting for the root filesystem" code from
      the udev premount script to the local mountroot() function where it truly
      belongs.
    - scripts/local-top/udev_helper: Leave the remaining ide-generic part
      there, should be taken over by udev itself.
    - make the md local-top scripts pre-requisite the udev one.
      thanks Scott James Remnant <scott@ubuntu.com>

 -- maximilian attems <maks@sternwelten.at>  Sun, 26 Mar 2006 22:35:15 +0200

initramfs-tools (0.58) unstable; urgency=low

  * hook-functions: Be more carefull about the minor parsing. The fix of
    #357332 works for 3 digit roots, but not for hdc6 aka root=1606.
    Thanks Martijn Pieters <mj@zopatista.com> for report
    (closes: #358354, #358740).

  * hook-functions: Add gdth to the scsi modules.

  * mkinitramfs-kpkg: Use set -eu to capture full /boot.
    Really (closes: #350875)

  * Add dependency on module-init-tools. (closes: #358632)

  * Don't include full path for man page reference. (closes: #358371)

 -- maximilian attems <maks@sternwelten.at>  Sun, 26 Mar 2006 16:39:37 +0200

initramfs-tools (0.57b) unstable; urgency=low

  * mkinitramfs, update-initramfs, hook-functions:
    On verbose mode show, which modules gets added to the initramfs.

  * hook-functions: Add cpqarray to the scsi modules - thanks for the patch
    to Petter Reinholdtsen <pere@hungry.com>. (closes: #357980)

  * initramfs-tools.8: Document that `-' is not allowed to be used in a script
    filename - the filenames get used as shell variable.  (closes: #344639)

  * mkinitramfs: Don't exit succesfully in a case of a full fs. Leaves the
    linux-image unconfigured. Thanks martin f krafft <madduck@debian.org>
    for pointing to that potential boot failure. (closes: #350875)

 -- maximilian attems <maks@sternwelten.at>  Tue, 21 Mar 2006 11:56:29 +0100

initramfs-tools (0.56) unstable; urgency=low

  * hooks/md: Add linear module - thanks to Moshe Yudkowsky <moshe@pobox.com>.

  * scripts/functions: Fix numerical minor parsing - thanks for the patch to
    Wolfgang Weisselberg. (closes: #357332)

  * mkinitramfs.8: Correct wrong referenced filename.

  * update-initramfs.8: Define the argument 'version' - thanks to "Susan G.
    Kleinmann" <sgk@debian.org>. (closes: #357282)

  * scripts/init-premount/udev_helper: Source the relevant definition to get
    it really run. Thanks to Maurice Massar <massar@unix-ag.uni-kl.de>.
    (closes: #357450)

 -- maximilian attems <maks@sternwelten.at>  Fri, 17 Mar 2006 19:09:11 +0100

initramfs-tools (0.55b) unstable; urgency=low

  * Thanks to Frederik Schüler for pointing to leftovers.

 -- maximilian attems <maks@sternwelten.at>  Wed, 15 Mar 2006 13:23:51 +0100

initramfs-tools (0.55) unstable; urgency=low

  * scripts/init-premount/udev_helper: Fix modprobe args.
    Thanks Frans Pop <fjp@debian.org> for testing 0.54.

  * scripts/local: Use quiet to load the fs. (closes: #339092)

  * hook-functions: Really add the ieee1394 modules.
    Thanks to Michael Prokop <mikap@grml.org> for testing the fix.

  * update-initramfs: Run lilo on updates if no grub is around.
    Thanks Adeodato Simó <adeodato@debian.org> for finding the issue.
    (Closes: #356850)

 -- maximilian attems <maks@sternwelten.at>  Wed, 15 Mar 2006 11:29:12 +0100

initramfs-tools (0.54) unstable; urgency=low

  * hooks/lvm: lvm10 has also an vgchange - exit if no lvm2 libs.
    (closes: #354708)

  * debian/copyright: Meniton current bzr archive. (closes: #352738)

  * hook-functions: Add dac960 scsi driver. (closes: #355162)

  * scripts/init-premount/udev_helper: add code by Scott James Remnant
    <scott@ubuntu.com> from the ubuntu udev hook. We now wait on scsi
    and usb devices to settle, load ide-generic on ide boot only if
    no root device appeared.
    The udev hook is adding ide.agent so no longer duplicate that code.

  * hook-functions: auto_add_modules, split 1000 char wide lines up.
    Should allow better diffing. Splitting them out in proper files with
    each modules / line costs too much initramfs generation time.
    Should allow easier diffing.

  * hook-functions: Add sata_mv thanks Kenshi Muto <kmuto@debian.org>.
    (closes: #355486)

  * hook-functions: Add dasd class to auto_add_modules and dd zfcp module.
    Thanks to s390 support Bastian Blank <waldi@debian.org>. (closes: #355595)

  * hook-functions: Add it821x. (closes: #352460)

 -- maximilian attems <maks@sternwelten.at>  Wed,  8 Mar 2006 17:34:25 +0100

initramfs-tools (0.53c) unstable; urgency=low

  * update-initramfs: Really reset takeover to zero.

 -- maximilian attems <maks@sternwelten.at>  Mon,  6 Mar 2006 07:59:34 +0100

initramfs-tools (0.53b) unstable; urgency=low

  * scripts/init-premount/udev_helper: Renamed from udev-helper.
    Thanks to Tollef Fog Heen <tfheen@err.no> (closes: #355235)

 -- maximilian attems <maks@sternwelten.at>  Sat,  4 Mar 2006 15:26:13 +0100

initramfs-tools (0.53) unstable; urgency=high

  * update-initramfs: set_current_version needs to check against
    /boot/initrd-`uname -r` and not /boot/vmlinu?-`uname -r`.
    Otherwise this builds initramfs for newer handbuild trees too.

  * Resync with 0.40ubuntu24:
    - New conf.d dir for config snippet.
    - mptspi already included.
    - keep nfsmount for now, we don't want to add further busybox deps.
    - adds mptfc and mptsas modules (closes: #341930)
    - adds MODULES=netboot support (closes: #352669)
  * Further reduce ubuntudiff:
    - scripts/functions: remove duplicate dir check.
    - scripts/nfs: add quiet to modules loading.

  * mkinitramfs-kpkg: Add kernel-package compat stuff, behaves like mkinitramfs,
    but adds the sha1sum for update-initramfs. Reset takeover=0.
    (closes: #353809) Add small mkinitramf-kpkg.8.

  * init: Move the ROOT export up, so we actually source the hardcoded device
    in initramfs.conf. (closes: #352958)

  * mkinitramfs: When invoked with -r switch pass the hardcoded root device to
    /etc/mkinitramfs/conf.d/root inside the initramfs.

  * hook-functions: First shot at IEEE1394 support - add ohci1394 and sbp2.

 -- maximilian attems <maks@sternwelten.at>  Mon, 27 Feb 2006 10:20:03 +0100

initramfs-tools (0.52b) unstable; urgency=high

  * update-initramfs: Set takeover=1. This allows hooks to regenerate the
    latest initramfs per default. No need for an kpkg wrapper, as
    kernel-package doesn't call update-initramfs, but mkinitramfs.

 -- maximilian attems <maks@sternwelten.at>  Mon, 20 Feb 2006 13:30:54 +0100

initramfs-tools (0.52) unstable; urgency=low

  * hooks/lvm: manual_add_modules dm_snapshot, will allow boot from lvm
    snapshot.

  * init: Fix maybe_break test for the bottom stage.

  * scripts/init-premount/udev-helper: Renamed from scripts/init-premount/ide.

  * update-initramfs: s/was/has/ been altered.
    (closes: #351939, #352633, #353087, #353668)

  * update-initramfs(8), mkinitramfs(8): The point of the first is to be used
    on your local box. Highlight its mode of operations. The second cmd is
    only needed for advanced usage.

 -- maximilian attems <maks@sternwelten.at>  Fri, 17 Feb 2006 21:41:11 +0100

initramfs-tools (0.51) unstable; urgency=low

  * scripts/functions: Call panic on circular deps to get rescue shell.

  * mkinitramfs: Use ${CONFDIR} everywhere.

  * Sync with 0.40ubuntu16:
    - skip 0.40ubuntu15 udev gets fixed to only call update-initramfs
      when /etc/mkinitramfs/initramfs.conf is there.
    - 0.40ubuntu13 don't take over all initramfs images in Debian.

  * hook-functions: auto_add_modules atkb and i8042.

  * scripts/functions: on panic modprobe atkb and i8042 - work around for
    broken configs, where those are not build in. (Closes: #337497)

  * scripts/functions: update_progress check if /dev/.initramfs/ exists
    before writing into it.

 -- maximilian attems <maks@sternwelten.at>  Tue, 24 Jan 2006 13:11:24 +0100

initramfs-tools (0.50c) unstable; urgency=low

  "E so io muoio da partigiano"

  * hook-functions: Fix MODULES=dep as `modprobe --show-depends' prints not
    only the insmod commands, but also the install ones.  Thanks for the patch
    to Jean Charles Delepine <delepine@nnx.com>. (Closes: #342616)

  * hooks/evms, scripts/local-top/evms: EVMS takes care of it's own hooks, rm.
    Thanks Steinar H. Gunderson <sesse@debian.org>. (Closes: 340258)

 -- maximilian attems <maks@sternwelten.at>  Sat, 14 Jan 2006 17:40:48 +0100

initramfs-tools (0.49) unstable; urgency=low

  * Pump dephelper to 4.1.0 dependency as pointed out by linda.

  * initramfs-tools.8: Add DEBUG section, cheat how to check the initramfs.

  * Add optional sarge busybox-cvs-static dep to ease backport.

 -- maximilian attems <maks@sternwelten.at>  Thu, 12 Jan 2006 17:28:42 +0100

initramfs-tools (0.48) unstable; urgency=low

  * mkinitramfs: klibc 1.1.14 moved from /usr/lib/klibc/lib to /lib
    Bonus: You can now execute any klibc bin directly.
    Cope with the move and pump dep. (Closes: 345949)

 -- maximilian attems <maks@sternwelten.at>  Wed,  4 Jan 2006 16:11:25 +0100

initramfs-tools (0.47) unstable; urgency=low

  * mkinitramfs: Don't complain about missing /bin/sh - use rm -f.
    Minor cleanup for the newer packaging of klibc 1.1.14.

 -- maximilian attems <maks@sternwelten.at>  Sat, 31 Dec 2005 14:17:31 +0100

initramfs-tools (0.46) unstable; urgency=low

  * Don't include .bzr dirs in source upload.
    Thanks Frederik Schüler <fs@debian.org>

 -- maximilian attems <maks@sternwelten.at>  Thu, 29 Dec 2005 14:23:46 +0100

initramfs-tools (0.45) unstable; urgency=high

  "Che mi sento di morir."

  * Unset debug before calling init, confuses /etc/init.d/rc.

  * scripts/init-premount/ide: Load uncondionally for ide boots ide-generic
    and also ide-disk, as udev ignores them. High urgency upload for rc bugs.
    Thanks Frans Pop <fjp@debian.org> and Joey Hess <joeyh@debian.org> for
    testing! (Closes: #332824, #342925, #344754, #337045, #338406)

 -- maximilian attems <maks@sternwelten.at>  Thu, 29 Dec 2005 10:34:32 +0100

initramfs-tools (0.44) unstable; urgency=high

  "O partigiano portami via"

  * Urgency high upload to stay in sync with udev for testing.

  * initramfs.conf: Fix wording choice for resume option. (Closes: #337575)

  * hooks/kernelextras: Really fix #335505.
    Don't expand wildcase to current dir. (Closes: #342153)

  * Add initramfs-tools.8 describing how the hooks of initramfs-tools work
    and how to use them. Thanks David Härdeman <david@2gen.com> for the patch.
    (Closes: #339091)

  * initramfs.conf.5,  mkinitramfs.8, update-initramfs.8: Update
    cross-references of the different manpages.

  * TODO: update to current state.

  * scripts/functions: remove old duplicate suspend support.

  * Sync with 0.40ubuntu8. (Closes: #337318)
    - Revert the modprobe changes for now as modules-init-tools of
      testing doesn't have yet the wanted interface.

 -- maximilian attems <maks@sternwelten.at>  Mon, 12 Dec 2005 11:22:15 +0100

initramfs-tools (0.42) unstable; urgency=low

  * hook-functions: The mptspi module is required for at least some machines
    that use the mptscsih. Thanks dann frazier <dannf@hp.com> for the patch.
    (Closes: #341162)

  * Resync with 0.40ubuntu7.
    - Do the udev split by hand as we have a different udev invocation
      supporting linux < 2.6.15. Increment udev dep to the version with
      initramfs hooks.
    - Debian's klibc hasn't yet the nanosleep, waiting for unbroken
      linux-headers.
    - Don't remove resume support from /etc/mkinitramfs/initramfs.conf
      even if bootloader setting is preferred.

 -- maximilian attems <maks@sternwelten.at>  Mon,  5 Dec 2005 12:59:59 +0100

initramfs-tools (0.40ubuntu32) dapper; urgency=low

  * Revert 0.40ubuntu31.  This isn't as trivial as it should be.

 -- Matt Zimmerman <mdz@ubuntu.com>  Sun, 21 May 2006 10:17:50 -0700

initramfs-tools (0.40ubuntu31) dapper; urgency=low

  * scripts/local-premount/resume: Print a message when a resume is about to
    begin (LP#41137)

 -- Matt Zimmerman <mdz@ubuntu.com>  Fri, 19 May 2006 15:14:53 -0700

initramfs-tools (0.40ubuntu30) dapper; urgency=low

  * This release brought to you by Fujitsu hard drives, which have forced
    me to rewrite all my most recent initramfs-tools changes from memory.
  * Include arcmsr module in the scsi module list (launchpad.net/40075)
  * Abstract out the kernel minversion checking stuff into the function
    library, so we can reuse it to check minversion requirements for hook
    scripts as well (such as udev, which requires >= 2.6.15 in dapper)
  * Bump the kernel minversion to 2.6.15 on hppa and ia64, since they used
    initrd-tools with their 2.6.12 kernels in breezy, not initramfs-tools.
  * If mkinitramfs fails due to minversion not being met, don't bail out
    of update-initramfs, but just exit 0, so upgrades don't halt on it.
  * Conditionalise the use of lvm and md in mkinitramfs so it's a no-op if
    you don't have those packages installed, but allows for smooth upgrades
    if you have older versions that don't ship their own hooks yet.
  * Make prereqs conditional on the script/hook actually existing.  From
    now on, this means that 'PREREQ="udev"' means "run udev first, iff it
    happens to be installed".  Having the files exist on the filesystem if
    you have a HARD dependency should be enforced with package dependencies.
  * Add ohci1394 and sbp2 to the scsi module list (launchpad.net/37479)
  * Move framebuffer setup from usplash to scripts/local-top/framebuffer
    so that people booting with vga=1234 but no splash will still get a
    framebuffer instead of a useless black console (launchpad.net/27669)

 -- Adam Conrad <adconrad@ubuntu.com>  Tue, 16 May 2006 19:51:08 +1000

initramfs-tools (0.40ubuntu29) dapper; urgency=low

  * Make "update-initramfs -u" try to find the running kernel *after* it
    attempts to search the symbolic link list and its own sha1 list.
    Using this as a fallback, rather than the default, should solve most
    upgrade issues, where people found their initramfs was half-baked.

 -- Adam Conrad <adconrad@ubuntu.com>  Wed, 19 Apr 2006 13:51:35 +1000

initramfs-tools (0.40ubuntu28) dapper; urgency=low

  * Add raid10 module to the generic module list (launchpad.net/28028)
  * Add cpqarray to the scsi module list (launchpad.net/{26632,35202})
  * Unset debug before we run the real init (launchpad.net/24095)
  * Add the gdth module to the default scsi list (launchpad.net/31542)

 -- Adam Conrad <adconrad@ubuntu.com>  Fri, 24 Mar 2006 04:33:44 +1100

initramfs-tools (0.40ubuntu27) dapper; urgency=low

  * Drop the evms, lvm and md local-top scripts; they're all provided by
    their own packages now.  This makes the depdencies rather nicer.

 -- Scott James Remnant <scott@ubuntu.com>  Thu, 23 Mar 2006 18:04:48 +0000

initramfs-tools (0.40ubuntu26) dapper; urgency=low

  * Make the md and evms local-top scripts pre-requisite the udev one.

 -- Scott James Remnant <scott@ubuntu.com>  Thu, 23 Mar 2006 17:54:32 +0000

initramfs-tools (0.40ubuntu25) dapper; urgency=low

  * Move the "loop waiting for the root filesystem" code from the udev
    premount script to the local mountroot() function where it truly
    belongs.

 -- Scott James Remnant <scott@ubuntu.com>  Wed, 22 Mar 2006 16:28:46 +0000

initramfs-tools (0.40ubuntu24) dapper; urgency=low

  * Add support for LSI Logic's Fusion MPT SAS and FC controllers as well.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu, 23 Feb 2006 23:27:16 +1100

initramfs-tools (0.40ubuntu23) dapper; urgency=low

  * Grow a conf.d directory for config snippets, and toss the RESUME option
    in there, to stop editing our own conffile in our maintainer scripts.
  * Add a cleverly hackish preinst that will pull the RESUME setting from
    old config files, migrate it to conf.d/resume, and reset that part of the
    conffile to a factory fresh state.  This should fix the unwanted conffile
    prompt in breezy->dapper upgrades for people who made no local changes.

 -- Adam Conrad <adconrad@ubuntu.com>  Fri, 17 Feb 2006 15:34:53 +1100

initramfs-tools (0.40ubuntu22) dapper; urgency=low

  * Add mptspi to the list of SCSI modules put in the initramfs by default,
    which is required for some LSI Logic controllers and for the VMware SCSI
    controller in recent VMware versions (See launchpad.net/{27187,31229})
  * Fix typo of /dev/disk/by-*, which I wrote as /dev/disks/by-{uuid,label}
  * Load i2c-keywest before loading therm_pm72 in the PowerPC thermal hook,
    since the latter sometimes needs the former (Closes launchpad.net/27269)

 -- Adam Conrad <adconrad@ubuntu.com>  Tue, 14 Feb 2006 23:28:35 +1100

initramfs-tools (0.40ubuntu21) dapper; urgency=low

  * Don't update the progress bar once udev has taken /dev away;
    after all, we can't contact usplash anyway at this point.

 -- Scott James Remnant <scott@ubuntu.com>  Wed,  8 Feb 2006 14:34:10 +0000

initramfs-tools (0.40ubuntu20) dapper; urgency=low

  * Add ... to end of strings to match main boot sequence.

 -- Scott James Remnant <scott@ubuntu.com>  Tue,  7 Feb 2006 11:07:50 +0000

initramfs-tools (0.40ubuntu19) dapper; urgency=low

  * Change the first of many "Loading modules" to "Loading essential drivers"
    to improve debugging when people say it breaks at that stage.

 -- Scott James Remnant <scott@ubuntu.com>  Tue,  7 Feb 2006 11:05:15 +0000

initramfs-tools (0.40ubuntu18) dapper; urgency=low

  * Add support for selecting root by UUID or LABEL with syntax such as:
    root=LABEL=myrootfs or root=UUID=92addf34-0f02-4a0e-bfb2-cbaa1e907b77

 -- Adam Conrad <adconrad@ubuntu.com>  Fri,  3 Feb 2006 15:55:01 +0000

initramfs-tools (0.40ubuntu17) dapper; urgency=low

  * Make auto_add_modules take an argument, so you can use it to add only
    some of the auto* modules (like "net" or "ide"), and create a "netboot"
    option that only includes base and net (Closes launchpad.net/26426)
  * Change the nfs script to use "mount -o nolock" instead of "nfsmount",
    to fix some timeouts for ltsp NFS roots (Closes launchpad.net/19196)

 -- Adam Conrad <adconrad@ubuntu.com>  Tue, 31 Jan 2006 11:55:11 +0000

initramfs-tools (0.40ubuntu16) dapper; urgency=low

  * Bump klibc-utils dependency to (>= 1.1.16-1), for hppa and ia64.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu, 19 Jan 2006 04:00:39 +1100

initramfs-tools (0.40ubuntu15) dapper; urgency=low

  * Drop the udev dependency, so we always get configured before udev.
    We can get away with this now that udev hooks/scripts have been split
    into the udev package proper.  This should close Malone bug #28808.

 -- Adam Conrad <adconrad@ubuntu.com>  Wed, 18 Jan 2006 22:50:27 +1100

initramfs-tools (0.40ubuntu14) dapper; urgency=low

  * If copy_exec is asked to copy to the same location twice, check if
    we're copying the same file again.  If so, do nothing and carry on, if
    not, warn that we asked it for an impossibility, and don't overwrite.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu, 12 Jan 2006 18:00:12 +1100

initramfs-tools (0.40ubuntu13) dapper; urgency=low

  * Default to taking over other initramfs images in Ubuntu, as this is
    more consistent with what our packaging expects to be able to do.
  * Make "update-initramfs -u" try to find the running kernel before it
    attempts to search the symbolic link list and its own sha1 list.

 -- Adam Conrad <adconrad@ubuntu.com>  Wed, 11 Jan 2006 16:25:20 +1100

initramfs-tools (0.40ubuntu12) dapper; urgency=low

  * Oops, move the progress state file into the new directory too.

 -- Adam Conrad <adconrad@ubuntu.com>  Mon,  9 Jan 2006 21:26:44 +1100

initramfs-tools (0.40ubuntu11) dapper; urgency=low

  * Move the state directory from /dev/initramfs to /dev/.initramfs

 -- Adam Conrad <adconrad@ubuntu.com>  Mon,  9 Jan 2006 21:17:50 +1100

initramfs-tools (0.40ubuntu10) dapper; urgency=low

  * Create the /dev/initramfs directory as soon as we mount /dev, so other
    packages that need a playground in /dev can do so in a uniform location.
  * Update the usplash progress bar every time we are asked to output a
    success or failure value from an init action, and write our progress to
    /dev/initramfs for sysv-init to gather up and pick up where we left off.
  * Export $DPKG_ARCH in both mkinitramfs (for use by hooks) and initramfs.
  * Use $DPKG_ARCH in the thermal hook/script to divide the x86 stuff from
    the powerpc stuff, not because we have to, but as an example to others.

 -- Adam Conrad <adconrad@ubuntu.com>  Mon,  9 Jan 2006 10:51:51 +1100

initramfs-tools (0.40ubuntu9) dapper; urgency=low

  * Make some changes to cope with the new and improved klibc packaging:
    - Add a force to the deletion of ${DESTDIR}/bin/sh, to avoid errors.
    - Cope with libklibc moving from /usr/lib/klibc/lib to /lib.
    - Bump dependency on klibc-utils to one new enough for the above.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu,  5 Jan 2006 15:13:15 +1100

initramfs-tools (0.40ubuntu8) dapper; urgency=low

  * Call modprobe everywhere with "-Qb" to silence messages and allow user
    blacklisting.
  * Copy the entire /etc/modprobe.d directory to the initramfs, so we can
    pick up all user blacklists and options.
  * Remove the slumber for SCSI/USB devices from the local filesystem mount
    script, udev's init-premount script will take care of this when
    necessary.

 -- Scott James Remnant <scott@ubuntu.com>  Wed,  7 Dec 2005 16:18:12 +0000

initramfs-tools (0.40ubuntu7) dapper; urgency=low

  * remove "sleep 3" from the nfs script before the nfsmount command,
    its a leftover from debugging in breezy and slows down thin client
    booting unnecessary

 -- Oliver Grawert <ogra@ubuntu.com>  Fri,  2 Dec 2005 11:45:05 +0100

initramfs-tools (0.40ubuntu6) dapper; urgency=low

  * When panicking, fork an interactive subshell rather than execing it, so
    that if the user fixes things up and exits, we continue rather than
    panic the kernel.
  * Call update-initramfs in postinst to regenerate the latest initramfs on
    upgrades

 -- Matt Zimmerman <mdz@ubuntu.com>  Thu,  1 Dec 2005 22:23:09 -0800

initramfs-tools (0.40ubuntu5) dapper; urgency=low

  * Wait up to 10 seconds for the root device to appear before failing,
    allowing SCSI and USB controllers time to settle.  There's almost
    certainly a more elegant way to do this generically for all mountroot
    functions, but for now this will suffice.

 -- Scott James Remnant <scott@ubuntu.com>  Thu,  1 Dec 2005 21:28:55 +0000

initramfs-tools (0.40ubuntu4) dapper; urgency=low

  * Mount /dev with mode 0755.

 -- Scott James Remnant <scott@ubuntu.com>  Thu,  1 Dec 2005 19:30:06 +0000

initramfs-tools (0.40ubuntu3) dapper; urgency=low

  "A true friend stabs you in the front."
  - Oscar Wilde

  * hooks/acpid: Rename to ...
  * hooks/thermal: ... this.  Add therm_pm72 for ppc64 systems.

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed, 30 Nov 2005 22:25:01 -0500

initramfs-tools (0.40ubuntu2) dapper; urgency=low

  * Rename scripts/init-premount/acpid to scripts/init-premount/thermal
    and add therm_pm72 to avoid "vaccum cleaner mode" on ppc64 systems.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu,  1 Dec 2005 12:37:27 +1100

initramfs-tools (0.40ubuntu1) dapper; urgency=low

  * Use tmpfs for /dev, instead of ramfs; as tmpfs is swappable.
  * Move /proc and /sys to the real filesystem, rather than unmounting them;
    slightly reduces workload.
  * Replace /root with ${rootmnt} in final usage of /dev/console
  * Copy across modprobe blacklist as well as aliases

  * Change the panic/breaknow thing *again*.  There's now a break= option
    which can be any of top, modules, premount, mount, bottom, init and
    causes the initramfs to break at that point.  panic/breaknow is now
    break=top, without an argument is equivalent to break=premount.
  * Run depmod at the top of the init script, so init-top scripts can use
    modprobe.

  * Remove udev-specific code:
    - depend on the version of udev that includes all of these things itself
    - remove udevstart from init
    - remove code to move /dev to the real filesystem from init
    - remove /sys-based module loading from load_modules
    - remove boot_events functions from load_modules
    - remove udev copy from mkinitramfs
    - remove udev hook script

 -- Scott James Remnant <scott@ubuntu.com>  Thu, 24 Nov 2005 21:21:12 +0000

initramfs-tools (0.41) unstable; urgency=high

  "Una mattina mi sono svegliato"

  * High urgency upload to cope with newer udev upstream - bonus:
    condition to test against when udev is ready. (Closes: #341014)
    Thanks Marco d'Itri <md@linux.it> for guidance and
    Heikki Henriksen <heikkih@gmail.com> for double check.

  * Pump udev dep on 0.076-3.

  * Special thanks to Paul Traina for previous udev / emvs work.

  * Sync with Ubuntu (0.36ubuntu6).

  * Kill udevd as late as possible. Thanks David Härdeman <david@2gen.com>
    for the patch. (Closes: #339093)

 -- maximilian attems <maks@sternwelten.at>  Mon, 28 Nov 2005 17:53:24 +0100

initramfs-tools (0.40) unstable; urgency=high

  * High urgency upload as udev changed under our feet. Fix RC bugs.

  * hooks/udev: Add needed bits: udevsynthesize. (Closes: #340257)
    Move good bits from global mkinitramfs.

  * Pump udev dep on 0.074-3.

  * Fix evms hooks properly until they get merged into the evms itself.
    (Closes: #337704)

  * Sync with Ubuntu (0.36ubuntu4).

 -- maximilian attems <maks@sternwelten.at>  Wed, 23 Nov 2005 10:31:57 +0100

initramfs-tools (0.39) unstable; urgency=medium

   * Setting urgency to medium to get this into testing.  This
     will make life easier for d-i.

  * Revert the mklibs-small usage patch - reduces needed dependencies:
    hook-fuctions: Readds copy_exec.
    mkinitramfs, hooks/{evms,lvm,md}: Use copy_exec.

  * mkinitramfs: Newer udev no longer uses /sbin/udev - remove usage.
    (Closes: #339568, #339365, #338814)

  * Pump udev dependency.

  * init: Pump timeout as there is currently no way to check which udevd
    processes are still running and why.
    Cures hopefully breakage of missing devices on boot.

  * Sync with latest Ubuntu.

 -- maximilian attems <maks@sternwelten.at>  Thu, 17 Nov 2005 19:59:47 +0100

initramfs-tools (0.36ubuntu6) dapper; urgency=low

  * Rename "panic" to "breaknow"

 -- Scott James Remnant <scott@ubuntu.com>  Wed, 23 Nov 2005 10:23:54 +0000

initramfs-tools (0.36ubuntu5) dapper; urgency=low

  * Abort the boot sequence as early as possible if "panic" is placed on the
    kernel command-line, allowing debugging of scripts in init-top.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 21 Nov 2005 08:40:20 +0000

initramfs-tools (0.36ubuntu4) dapper; urgency=low

  * Replace all occurances of /etc/mkinitramfs in mkinitramfs with $CONFDIR,
    so -d can be used to point at a completely alternate tree (for example,
    when installing into a chroot).

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 21 Nov 2005 08:34:03 +0000

initramfs-tools (0.36ubuntu3) dapper; urgency=low

  * mkinitramfs: only copy the klibc-*.so file, and not the development
    pieces that happen to sit alongside it.

 -- Scott James Remnant <scott@ubuntu.com>  Thu, 10 Nov 2005 16:44:08 -0500

initramfs-tools (0.36ubuntu2) dapper; urgency=low

  * Fix typos in the handling of the mkinitramfs -d option (thanks, Colin).

 -- Adam Conrad <adconrad@ubuntu.com>  Thu, 10 Nov 2005 12:12:32 -0500

initramfs-tools (0.38) unstable; urgency=low

  [ dann frazier ]

  * initramfs.conf: Reference correct manpage.  (Closes: #336095)

  [ maximilian attems ]

  * scripts/functions, scripts/local-premount/suspend: Fix suspend to disk
    by using decimal numbers. Thanks to Adrian Bridgett <adrian@smop.co.uk>
    for the patch. (Closes: #336936)

  * hooks/evms: manual_add_module dm_mod, now we no longer pull it in by
    default. Thanks to Steinar H. Gunderson <sesse@debian.org>
    (Closes: #336617)

 -- maximilian attems <maks@sternwelten.at>  Wed,  2 Nov 2005 07:21:29 +0100

initramfs-tools (0.37) unstable; urgency=low

  * scripts/functions, scripts/local-premount/suspend: Use of "stat"
    which isn' any more provided by busybox (1.01-3).
    Thanks to Adrian Bridgett <adrian@smop.co.uk> for the patch using awk.
    (Closes: #335801)

  * hooks/kernelextras: Check for existence of ${MODULESDIR}/initrd/:
    Exit if it doesn't exist before including current dir.
    Thanks to Jean Charles Delepine <delepine@nnx.com> (Closes: #335505)

  * hooks/lvm, hooks/md: Remove FIXME's at second thought.  You better want
    to check against the binaries for your not yet created raid/lvm.

 -- maximilian attems <maks@sternwelten.at>  Wed, 26 Oct 2005 09:22:58 +0200

initramfs-tools (0.36ubuntu1) dapper; urgency=low

  * Forced version bump to minimise the scary until I have a chance to dig
    through the ubuntu:debian diffs and do a proper merge of their changes.
  * Remove the "Loading, please wait..." message from the top of init, as
    we now have other fairly early visual feedback, and this is just ugly.

 -- Adam Conrad <adconrad@ubuntu.com>  Wed, 26 Oct 2005 11:27:36 +1000

initramfs-tools (0.36) unstable; urgency=low

  "Sunny Autumn Release"

  * Minor cleanups in mkiniramfs.

  * Remove manpage section about return values. Needs to be rephrased.
    Not sure if it's important for the enduser.

 -- maximilian attems <maks@sternwelten.at>  Mon, 24 Oct 2005 19:51:51 +0200

initramfs-tools (0.35) unstable; urgency=low

  * mkinitramfs: Return 2 for failure path of --supported-(host|target)-version.

  * mkinitramfs: Run the hooks before mklibs-copy, broke evms.
    Thanks for fix and testing to Steinar H. Gunderson <sesse@debian.org>

  * Change name of virtual package that is provided into linux-initramfs-tool.

  * Add hooks/lvm allowing to remove dependency on lvm2.

  * Add hooks/md allowing to remove dependency on mdadm.

  * Remove the mdadm and lvm dependencies, they work as hooks when present.
    The lvm2 version in sarge is good enough to address issues mentioned in
    0.16. A woody backport will need newer lvm2 although..

 -- maximilian attems <maks@sternwelten.at>  Mon, 24 Oct 2005 19:16:14 +0200

initramfs-tools (0.32) unstable; urgency=low

  [ Bastian Blank ]
  * Use mklibs-copy.
  * Use udevsynthesize instead of udevstart.
  * hook-functions: Add ibmvscsic to list of scsi modules.

  [ Sven Luther ]
  * Added --supported-(host|target)-version support for the new post-2.6.13
    ramdisk-tool policy. Added linux-ramdisk-tool virtual package too.
    (Closes: #333856)

  [ maximilian attems ]
  * Resynchronise with latest upstream release.
  * Place shift after variable outfile assignment.
  * Fix strange chars in the Depends line resulting in no depends at all.
  * Thanks to Bastian Blank for the fixes concerning the new busybox version.
    (Closes: #334467)

  [ Jeff Bailey ]
  * scripts/nfs (mountroot): New variable: NFSOPTS, default to
    -o retranfs=10. (Ubuntu 12942)
    This can be overridden in the initramfs.conf file.
    Thanks to Oliver Grawert for testing this!

  * hook-scripts (auto_add_modules): Add jfs
    (dep_add_modules): Ditto. (Ubuntu #16742)
    Thanks to Colin Watson for this fix!

  [ Adam Conrad ]
  * Make us a bit more silent/tidy by default, unless "quiet" isn't on
    the kernel's command line (then we're just as verbose as ever)

  [ Jonas Smedegaard ]
  * Use GNU getopt (instead of bash builtin getopts) for improved long-
    opts handling.
  * Quote variables.
  * Use test options -n and -z.

 -- maximilian attems <maks@sternwelten.at>  Wed, 19 Oct 2005 17:42:08 +0200

initramfs-tools (0.31) unstable; urgency=low

  Quick fix for sluggish dep

  [ Bastian Blank ]
  * Use new busybox. (closes: #333755)

 -- maximilian attems <maks@sternwelten.at>  Mon, 17 Oct 2005 16:27:31 +0200

initramfs-tools (0.30) unstable; urgency=low

  Apparition Octobre Rouge

  [ maximilian Attems ]

  * Resynconise with latest upstream now we are in unstable.

  [ Jeff Bailey ]
  * debian/rules: Make sure hooks and scripts are chmod +x

  * hook-functions (auto_add_modules): Add advansys.

  * debian/init: Add "Loading, please wait..." message.
    Don't log for init-top scripts to avoid usplash noise.

  * init: Add start of debug command line option.

  * scripts/functions (log_begin_msg): Call usplash if available
    (log_end_msg): Call usplash if available
    (panic): Close usplash if available

  * scripts/functions (load_modules): Quote resume variable.
    Thanks to Christian Kellner for helping test that!

  * scripts/local-premount/suspend: Quote resume variable.

  * update-initramfs: Use basename on the link target to get the
     version number.

  * HACKING: Start of some notes on how this package actually works.
  * debian/initramfs-tools.docs: Install it.

  [ Matthew Garrett ]
  * scripts/functions (load_modules): Run udevstart after loading block
    drivers should fix resume from hibernate on non-LVM systems.

 -- maximilian attems <maks@sternwelten.at>  Fri, 30 Sep 2005 19:34:55 +0200

initramfs-tools (0.29) breezy; urgency=low

  "Beauty is a form of genius - is higher, indeed, than genius, as it
   needs no explanation."
  - Oscar Wilde

  * hook-functions (auto_add_modules): Add advansys.

  * debian/rules: Make sure hooks and scripts are chmod +x

  * init: Add start of debug command line option.

 -- Jeff Bailey <jbailey@ubuntu.com>  Tue, 20 Sep 2005 15:47:42 -0400

initramfs-tools (0.28) breezy; urgency=low

  * Run udevstart after loading block drivers - should fix resume from
    hibernate on non-LVM systems.

 -- Matthew Garrett <mjg59@srcf.ucam.org>  Tue, 20 Sep 2005 01:13:31 +0100

initramfs-tools (0.27) unstable; urgency=low

  * Remove unused BUSYBOX config option as we use busybox anyway.

  * Add Jeff Bailey and myself as Uploaders, Debian kernel team as
    MAINTAINER.

  * Upload to debian unstable - allows use of nondevfs kernel >= 2.6.13
    with initramfs image. (Closes: #312561, #315654)

  * Fix busybox dependency to the relevant debian package.

  * Reorder the initramfs.conf variables.

  * Add question mark to the getopts for the help message.

  * update-initramfs.8 New file install it.

  * The debian busybox-cvs-static installs into /bin/busybox:
    fix pathes vis-a-vis ubuntu version. make that a variable on top.

 -- maximilian attems <maks@sternwelten.at>  Tue, 20 Sep 2005 13:52:00 +0200

initramfs-tools (0.26) breezy; urgency=low

  "Experience is one thing you can't get for nothing."
  - Oscar Wilde

  * scripts/local-top/lvm: Reduce -- to - in VG strings for feeding
    to vgchange.  (Ubuntu: #13387)

  * update-initramfs: New file
  * debian/dirs: Add /var/lib/initramfs-tools

  * hooks/evms: New file
  * scripts/local-top/evms: New file.
    Thanks to Jerry Haltom for helping test this!

  * debian/control: Bump klibc depends to 1.0.14-1ubuntu2 for jfs support

  * hook-scripts (manual_add_modules): Don't do unnecessary depmod
    (dep_add_modules): No need for a sleep 2 here.
    Thanks to Matt Zimmmerman for noticing these!

  * scripts/functions: Attempt resume before loading USB or Network
    modules to avoid resume issues with USB.
    Thanks to Matthew Garrett for this patch!

  * scripts/functions (ide_boot_events): Always load ide-generic
    before going further.  This allows us to catch any hidden
    IDE controllers that might not otherwise get found.

  * initramfs.conf.5: New file
  * debian/initramfs-tools.manpages: Install it.
    Thanks to maximilian attems for the manpage!

  * hook-functions (auto_add_modules): Add mptscsih (Ubuntu #15406)
    Thanks to Jesper Krogh for the bug report!

  * debian/dirs: Add etc/mkinitramfs/hooks, move all scripts subdirs
    into etc/mkinitramfs/scripts.

  * mkinitramfs: Set the umask.  Copy the scripts from
    /etc/mkinitramfs/scripts into the image.
    Make sure that modules file lists is actually a regular file.

  * init: Use ${rootmnt} instead of hardcoded /root, use mount -n
    Fix typo.

  * hook-functions (catenate_cpiogz): Add sanity check.
    (add_modules_from_file): Document, quote variable, add warning.

  * docs/example_hook: Update
    Thanks to Karl Hegbloom for these previous 5 patches!

  * init: Create /var/lock on the initramfs
    Thanks to Jerry Haltom for noticing this!

  * debian/dirs: rename to ...
  * debian/initramfs-tools.dirs: ... this.

  * scripts/functions (scsi_boot_events): Don't attempt to look
    at ${device}/type if it doesn't actually exist.

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed, 14 Sep 2005 14:12:24 -0400

initramfs-tools (0.25) breezy; urgency=low

  "If there was less sympathy in the world, there would be less
   trouble in the world."
  - Oscar Wilde

  * init: Module the /dev tmpfs earlier.  Make /dev/console, and
    /dev/null on it at the beginning, just in case.

  * debian/initramfs-tools.postinst: When copying the modules file over
    from initrd-tools installations, filter out ext2, ext3, ide-generic
    and ide-disk.  These are leftovers from Warty.
    (Ubuntu #14242)

  * hooks/udev: New File (Ubuntu #12915)

  * init: panic if ${init} doesn't exist on the target filesystem.

 -- Jeff Bailey <jbailey@ubuntu.com>  Thu,  1 Sep 2005 00:13:47 -0400

initramfs-tools (0.24) breezy; urgency=low

  "Experience is simply the name we give out mistakes."
  - Oscar Wilde

  * hook-functions (auto_add_modules): Add cciss
    (Ubuntu #14177) Thanks Fabionne!

  * scripts/functions (parse_numeric): Noop on empty parameter.
    Fixes LTSP boot failure.  Thanks to Oliver Grawert
    for testing!

  * scripts/local-top/md: Don't run modprobe when raidlvl is unset.
    Run mdadm if raidlvl has ever been set, not just if the most
    recent device checked was part of the raid setup.
    Thanks to Jeff Waugh for the bug report!

  * mkinitramfs: Feed the -o argument through readlink -f to
    get the canonical pathname.

 -- Jeff Bailey <jbailey@ubuntu.com>  Fri, 26 Aug 2005 09:35:32 -0400

initramfs-tools (0.23) breezy; urgency=low

  "This suspense is terrible. I hope it will last."
  - Oscar Wilde

  * scripts/local: Quote ${ROOT} so that an empty value causes us
    to drop to a shell.
    Thanks to Matt Zimmerman for this fix!

  * hook-functions (auto_add_modules): Add atiixp and opti621 to
    the IDE set.

  * hook-functions (dep_add_modules): Detect i2o and add i2o_block
    (auto_add_modules): Include i2o_block.

  * scripts/functions (i2o_boot_events): New function
    (load_modules): Call it. (Ubuntu# 13806)
    Thanks to Tollef Fog Heen for the i2o patch!

  * debian/control: Depend on udev.
    Thanks to Alexander Butenko for troubleshooting this with me.

  * init: Move the /dev directory to the root filesystem.
    Handle all the udev bind mounts as needed.
    Make sure input and output is associated with dev/console.

  * scripts/functions (parse_numeric): Exit if we're refering to a path.
    Otherwise override root setting to be /dev/root.
  * init: Call parse_numeric when setting the root variable.
  * scripts/local-top/lvm: When using a numeric root, call vgchange -ay
    Don't attempt to start LVM on regular partitions.
    (Ubuntu #13365, #13778, and some of #13399)

  * scripts/local-top/lvm: Cope with -'s in the Volume Group and
    logical volume names. (Ubuntu #13387)
    Thanks to Stephen Shirley for the patch!

 -- Jeff Bailey <jbailey@ubuntu.com>  Thu, 25 Aug 2005 11:48:15 -0400

initramfs-tools (0.22) breezy; urgency=low

  * Fix argument handling in force_load hook-function
  * Add "sleep 3" to scripts/nfs as a nasty hack around bug #12942

 -- Matt Zimmerman <mdz@ubuntu.com>  Fri, 19 Aug 2005 23:50:16 -0700

initramfs-tools (0.21) breezy; urgency=low

  "All that I desire to point out is the general principle that
   life imitates art far more than art imitates life."
   - Oscar Wilde

  * mkinitramfs: Define MODULESDIR and use it.

  * hook-functions: Use MODULESDIR
    (add_modules_from_file): Do not add .ko extension to file lists.
    Call force_load instead of twiddling conf/modules directly.
    (Ubuntu #13372)
    (force_load): New function.
    (copy_exec): Attempt to use non-optimsed libraries if available.
    (Ubuntu #13470)
    (auto_add_modules) Include forcedeth (Ubuntu #13448)

  * hooks/kernelextras: New file. (Ubuntu #13414)

  * debian/initramfs-tools.postinst: Preserve /etc/mkinitrd/modules if
    possible on new install. (Ubuntu #13372)

 -- Jeff Bailey <jbailey@ubuntu.com>  Thu, 18 Aug 2005 00:20:11 -0400

initramfs-tools (0.20) breezy; urgency=low

  * Depend on cpio.

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 12 Aug 2005 10:43:04 +0100

initramfs-tools (0.19) breezy; urgency=low

  "The basis of optimism is sheer terror."
  - Oscar Wilde

  * mkinitramfs: Honour MODULES=list and MODULES=dep.

  * hook-functions: New function dep_add_modules.

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed, 10 Aug 2005 23:20:11 -0400

initramfs-tools (0.18) breezy; urgency=low

  "We are all in the gutter, but some of us are looking at the stars."
  - Oscar Wilde

  * debian/initramfs-tools.postrm: Use rm -f for removing the modules
    file, in case it doesn't exist for some reason. (Ubuntu #13335)
    Thanks to Colin Watson for the bug report!

  * mkinitramfs.8: Correct my email address to be jbailey@ubuntu.com
    Document /etc/mkinitramfs/DSDT.aml

  * debian/initramfs-tools.postinst: Attempt to inherit RESUME settings
    from initrd-tools.  Also copy the DSDT from /etc/mkinitrd/DSDT to
    /etc/mkinitramfs/DSDT.aml

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed, 10 Aug 2005 13:09:44 -0400

initramfs-tools (0.17) breezy; urgency=low

  "The public is wonderfully tolerant. It forgives everything except
   genius."
  - Oscar Wilde

  * debian/initramfs-tools.postinst: Get the name of the config file
    right when seeding RESUME=.  Also fix the sed expression.
    Thanks to Matthew Garrett for noticing this!

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed, 10 Aug 2005 11:54:07 -0400

initramfs-tools (0.16) breezy; urgency=low

  "It is through art, and through art only, that we can realise our
   perfection."
   - Oscar Wilde

  * mkinitramfs: Make sure all relevant ide modules are included.
    Add RESUME= support.

  * scripts/functions: Be silent when adding non-detected modules.

  * conf/mkinitramfs.conf: MODULES=most by default, BUSYBOX=y
    (Non-busybox isn't supported now.  It's not clear that it ever
     will be).  Add RESUME line for resuming from suspend-to-disk.

  * scripts/local-premount/suspend: New script for suspend-to-disk.

  * debian/control: Bump depends on busybox-cvs-initramfs to
    20040623-1ubuntu19.  Add dependancy on lvm2.
    Bump standards version to 3.6.2.0 (no-op)

  * debian/control:
    Force version depend on lvm2 (>= 2.01.04-5) to make sure newer kernels
    will boot.
    Thanks for Andrew Mitchell for discovering this.

  * hooks/: New directory

  * debian/dirs: Move hooks to ...
  * debian/initramfs-tools.install: ... here.

  * hooks/acpid: New file.

  * scripts/init-premount/acpid: New file
    Thanks for the hint from Matthew Garrett for this.

  * debian/initramfs-tools.postinst: Add RESUME support on first install.

  * debian/mkinitramfs: Move functions to ...
  * debian/hook-functions: ... here.

  * debian/initramfs-tools.install: Install hook-functions

  * mkinitramfs.8: New file.
    Thanks to Maximilian Attems for contributing this!

  * scripts/local-top/md: Don't try to detect raid on non-existant devices
    or on whole devices.  Quiet other warning messages.

  * hook-functions: When generating initramfs, don't complain about missing
    modules.

 -- Jeff Bailey <jbailey@ubuntu.com>  Tue,  9 Aug 2005 23:35:08 -0400

initramfs-tools (0.15) breezy; urgency=low

  "Nothing looks so like innocence as an indiscretion."
  - Oscar Wilde

  * mkinitramfs: Handle putting DSDT.aml into the initramfs
    Add sata_nv to list of modules to import for main mode.

  * init: New scripts directory, init-premount for generic premount
    handling (like usplash)

  * debian/dirs: Make the /etc version of this directory for user
    addons.

  * debian/rules: Use prebuild, rather than debian-build-arch.

 -- Jeff Bailey <jbailey@ubuntu.com>  Tue,  9 Aug 2005 11:29:10 -0400

initramfs-tools (0.14) breezy; urgency=low

  "The world is a stage, but the play is badly cast."
  - Oscar Wilde

  * scripts/functions: Add scsi_boot_events and call it to load sd_mod

  * scripts/local-top/md: Autodetect raid level

  * scripts/local-top/lvm: Only activate the volumegroup required by
    the root device.  Don't bother with lvm if the root partition isn't
    /dev/mapper/FOO.

  * scripts/functions: Fix ide_boot_events.  This never worked, even
    if I thought it did.

  * init: init variable should be lower case.  Exported ROOT variable
    should be upper case.

 -- Jeff Bailey <jbailey@ubuntu.com>  Tue, 26 Jul 2005 20:30:57 -0400

initramfs-tools (0.13) breezy; urgency=low

  "We live in age when unnecessary things are our only necessities."
   - Oscar Wilde

  * Use detailed logging now for debian/changelog.  We have at least
    three people hacking now, and details would probably be useful.

  * debian/TODO: Update

  * debian/dirs: Sort and add usr/share/initramfs-tools/hooks

  * debian/initramfs-tools.examples: Add docs/example_hook and
    docs/example_hook_cpiogz

  * debian/initramfs-tools.install: Pretty Print.

  * debian/rules: Ensure that mkinitramfs is executable

  * docs/example_script: New file

  * init: Add concept of 'quiet', be verbose if not specified

  * mkinitramfs: Do not load script functions until needed
    Clear up comments / documentation
    Use DESTDIR instead of TMPDIR
    Add ability to link in extra hunks into the cpio file
    Cosmetic cleanups

  * scripts/functions: Add lsb stype log_FOO_msg functions

  * scripts/local: Add logging

  * scripts/nfs: Add logging

  Thanks to Karl Hegbloom for most of these patches!

  * debian/control: Get a much better description

  Thanks to Maximilian Attems for this!

  * scripts/functions: Add copy_exec function that copies a program
    and all libraries that it depends on.

  * mkinitramfs: Use it

  * scripts/local-top/lvm: New file

  * mkinitramfs: Specify the modules to copy rather than mass copying
    directories

  * scripts/functions: Always load ide-generic to cope with ide subsystem
    suckage.

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed, 29 Jun 2005 23:50:56 +0000

initramfs-tools (0.12) breezy; urgency=low

  "I am not young enough to know everything." - Oscar Wilde

  * Don't complain if /etc/mkinitramfs/modules doesn't exist.

  * Make sure that raid1 is pulled in.

  * Include /etc/modprobe.d/aliases in the initramfs

  * Default to currently running kernel version.
    Based on a patch from maximilian attems, thanks!

  * Handle module arguments in /etc/mkinitramfs/modules

  * Do hookscripts at generation time.  Drop things into
    /usr/share/initramfs-tools/hooks or /etc/mkinitramfs/hooks

  * Make sure local-bottom and nfs-bottom get created
    Thanks to Karl Hegbloom for these three patches!

  * Prune stray echo from call_scripts

  * Load raid1 for now so that md setups will work.

  * Detect ide modules load
    Thanks to Jeff Waugh for initial testing of this!

 -- Jeff Bailey <jbailey@ubuntu.com>  Mon, 20 Jun 2005 23:05:04 +0000

initramfs-tools (0.11) breezy; urgency=low

  "Illusion is the first of all pleasures" - Oscar Wilde

  * Make the init much less noisy

  * Pull in all the dependancies for nfs and af_packet

  * Be compatible with misdocumented mkinitrd interface

  Thanks to Matt Zimmerman for the bug reports and testing!

  * Update debian/copyright to have the location of the bzr
    archive

 -- Jeff Bailey <jbailey@ubuntu.com>  Fri, 17 Jun 2005 21:23:25 +0000

initramfs-tools (0.10) breezy; urgency=low

  The "I can see you!" release.

  * Unconditionally require busybox.  Might revert this eventually
    but it's too much of a pain right now do this without
    a reasonably environment

  * Use modprobe to load modules

  * Iterate through /sys/bus/pci and /sys/bus/usb and load drivers
    based on their modalias

  * Start to use /sbin for things

  * Include depmod in the image.  Use it at boot time.

  * Edit config example to show the modules that do need to be included
    manually for this build.

 -- Jeff Bailey <jbailey@ubuntu.com>  Fri, 17 Jun 2005 12:45:07 +0000

initramfs-tools (0.9) breezy; urgency=low

  * Be consistent about y/n vs. yes/no values for the readonly variable

 -- Matt Zimmerman <mdz@ubuntu.com>  Thu, 16 Jun 2005 15:22:30 -0700

initramfs-tools (0.8) breezy; urgency=low

  The "We are one in the spirit..." release

  * Export the command line variables so that the various scripts
    can see them.

  * Honour command line 'ro' or 'rw' settings for nfs.

 -- Jeff Bailey <jbailey@ubuntu.com>  Tue, 14 Jun 2005 21:35:14 +0000

initramfs-tools (0.7) breezy; urgency=low

  The "CONFORM!" release.

  * Make command line arguments almost match mkinitrd.  The -m argument
    doesn't make any sense, so it's not supported.  Add support for
    overriding the confdir, and specifying version no longer expects -v.

  * Add sed and grep to the initramfs for now.  Will prune these
    eventually, but for now mdrun needs them.

  * Add mdadm and mdrun to the initramfs.

  * Add hookscript directories.

  * Call hookscripts

  Thanks to David Weinhall <tao@acc.umu.se> for the dependancy-based
  hookscripts.

 -- Jeff Bailey <jbailey@ubuntu.com>  Thu,  9 Jun 2005 17:08:01 +0000

initramfs-tools (0.6) breezy; urgency=low

  The "Sweep! ....  Off!" release.

  * Source in the net-${DEVICE}.conf file to get IP address information.

  * Add commandline parameters for NFSROOT and BOOT.

  * Moving loading of boot functions to after commandline parsing.

  * Allow NFSROOT variable to be set to auto to pick up value from DHCP
    Server.

 -- Jeff Bailey <jbailey@ubuntu.com>  Wed,  1 Jun 2005 12:02:40 -0400

initramfs-tools (0.5) breezy; urgency=low

  The "Climbing to the horizons" release.

  * Update for newer udev, call "udevstart" rather than "udev udevstart"

  * /etc/mkinitramfs/modules should not be a conffile.

  * Support busybox.

  * Fix bug where -k would delete the tmp files, and otherwise it would keep
    them.

  * Handle # for comments in the modules file.

  * arch:all, not arch:any

 -- Jeff Bailey <jbailey@ubuntu.com>  Tue, 31 May 2005 15:17:56 -0400

initramfs-tools (0.4) breezy; urgency=low

  * First upload to Ubuntu.

  * Handle glibc compiled udev for now.

 -- Jeff Bailey <jbailey@ubuntu.com>  Tue, 24 May 2005 14:30:07 +0000

initramfs-tools (0.3) unstable; urgency=low

  * Fix init and root variables

 -- Jeff Bailey <jbailey@ubuntu.com>  Sat, 29 Jan 2005 17:49:08 -0500

initramfs-tools (0.2) unstable; urgency=low

  * Include the modules in the initrd
  * Drop the .ko ending from the module loads.
  * Actually chain to the sub scripts.
  * kilbc is now named properly
  * First cut of an NFS root implementation

 -- Jeff Bailey <jbailey@ubuntu.com>  Fri, 28 Jan 2005 16:50:53 -0500

initramfs-tools (0.1) unstable; urgency=low

  * Initial Release.

 -- Jeff Bailey <jbailey@ubuntu.com>  Thu, 27 Jan 2005 15:23:52 -0500