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
|
# ChangeLog for sys-kernel/dracut
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.153 2014/02/17 11:42:11 aidecoe Exp $
*dracut-036-r1 (17 Feb 2014)
17 Feb 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-036-r1.ebuild,
+files/036-0006-dracut.sh-Fix-variable-name-typo.patch:
Fixed problem with root= boot parameter being ignored by dracut in hostonly
mode. Rels comment #40 of bug #498832.
Commit on behalf of Alexander Tsoy <alexander@tsoy.me>.
*dracut-036 (16 Feb 2014)
16 Feb 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-036.ebuild,
+files/036-0001-NEWS-update-for-version-036.patch,
+files/036-0002-dracut-functions.sh-support-for-altern.patch,
+files/036-0003-gentoo.conf-let-udevdir-be-handled-by-.patch,
+files/036-0004-Use-the-same-paths-in-dracut.sh-as-tho.patch,
+files/036-0005-Install-dracut-install-into-libexec-di.patch:
Version bump.
At the request of QA team the use of DRACUT_MODULES use-expand has been
removed as well as run-time (pseudo-suggested) dependencies. Instead, the
list of suggested dependencies is printed in postinst log message. See
bug #498832.
NEWS
~~~~
(since dracut-034)
- fixed skipcpio signature checking
- new argument "--rebuild"
- add lzo, lz4 compression
- install: install all binaries with <name> found in PATH
- lsinitrd can now handle initramfs images with an early cpio prepended
(microcode, ACPI tables)
- mkinitrd-suse added as a compat stub for dracut
- lvm: install thin utils for non-hostonly
- resume: fix swap detection in hostonly
- avoid loading unnecessary 32-bit libraries for 64-bit initrds
- crypt: wait for systemd password agents
- crypt: skip crypt swaps with password files
- network: before doing dhcp, dracut now checks, if the link has a carrier
- network: dhclient-script.sh now sets the lease time
- network: include usbnet drivers
- network: include all ethernet drivers
- network: add rd.bootif=0 to ignore BOOTIF
- i18n: introduce i18n_install_all, to install everything i18n related
- usrmount: always install the module,
so always mount /usr from within the initramfs
- "halt" the machine in systemd mode for die()
19 Jan 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> metadata.xml:
Removed desc. of no longer existing 'optimization' flag.
19 Jan 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-034-r4.ebuild,
-files/034-0010-module-setup.sh-add-comments.patch.bz2:
Moved compressed patch out of portdir, fixes bug #498062.
19 Jan 2014; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-026-r2.ebuild,
-dracut-027-r3.ebuild, -dracut-029.ebuild, -dracut-030.ebuild,
-dracut-031-r1.ebuild, -dracut-033-r3.ebuild, -dracut-034-r3.ebuild,
-files/026-0000-fix-version-print.patch,
-files/027-0000-fix-version-print.patch,
-files/026-0001-dracut-functions.sh-support-for-altern.patch,
-files/027-0001-dracut-functions.sh-support-for-altern.patch,
-files/029-0001-dracut-functions.sh-support-for-altern.patch,
-files/030-0001-dracut-functions.sh-support-for-altern.patch,
-files/031-0001-dracut-functions.sh-support-for-altern.patch,
-files/033-0001-dracut-functions.sh-support-for-altern.patch,
-files/026-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/027-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/029-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/030-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/031-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/033-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/027-0003-Do-not-call-plymouth-with-full-path.patch,
-files/029-0003-LatArCyrHeb-16-as-a-default-i18n-font-.patch,
-files/030-0003-LatArCyrHeb-16-as-a-default-i18n-font-.patch,
-files/031-0003-Revert-base-setup-correct-system-time-.patch,
-files/026-0003-Revert-crypt-dmraid-mdraid-use-for_eac.patch,
-files/033-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch,
-files/033-0004-Install-dracut-install-into-libexec-di.patch,
-files/026-0004-lsinitrd.sh-fix-for-default-initrd-not.patch,
-files/027-0004-plymouth-plymouth-pretrigger.sh-fixup-.patch,
-files/033-0005-dracut.sh-harden-host_modalias-reading.patch,
-files/026-0005-lsinitrd.sh-removed-trailing.patch,
-files/033-0006-ifup-do-not-dhcp-on-network-interface-.patch,
-files/026-0006-make-host_fs_types-a-hashmap.patch,
-files/033-0007-lvm-mdraid-Fix-LVM-on-MD-activation.patch,
-files/033-0008-mdraid-module-setup.sh-install-configs.patch,
-files/033-0009-mdraid-module-setup.sh-fixes-for-mdadm.patch:
Removed old versions. Rels bug #498062. Versions prior to 034-r4 have bugs
which were not backported from 034-r4, so there's no reason to keep them.
28 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-034-r3.ebuild,
dracut-034-r4.ebuild, +files/034-0010-module-setup.sh-add-comments.patch.bz2,
-files/034-0010-module-setup.sh-add-comments-for-dracu.patch:
Compressed patch too big.
*dracut-034-r4 (28 Dec 2013)
28 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-034-r4.ebuild:
No longer require pkg-config at run-time. Paths (udev dir and systemd dirs)
are set in dracut config file by ebuild. It fixes bug #488504. If any of this
paths is changed, dracut will have to be rebuilt by a user.
28 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-034.ebuild,
-dracut-034-r1.ebuild, -dracut-034-r2.ebuild:
Removed old revisions of version 034.
*dracut-034-r3 (28 Dec 2013)
28 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-034-r2.ebuild,
+dracut-034-r3.ebuild, +files/034-0014-udev-rules-add-eudev-rules.patch:
Committing on behalf of Alexander Tsoy <alexander@tsoy.me>.
Fixes bug #494188: Missing udev rules for loading kernel modules.
14 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-034-r2.ebuild:
Added epatch_user call. Rels bug #487410.
*dracut-034-r2 (14 Dec 2013)
14 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-034-r2.ebuild,
+files/034-0013-usrmount-always-install.patch:
Committing on behalf of Alexander Tsoy <alexander@tsoy.me>.
Fixes bug #489624 and bug #491778.
usrmount module used to be not always installed when it was needed.
10 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-034-r1.ebuild:
Committing on behalf of Alexander Tsoy <alexander@tsoy.me>.
Fixes bug #489966.
"It seems that sys-apps/sysvinit dependency is not mandatory anymore. The
only
executables from sysvinit that still needed by dracut are: reboot, poweroff,
halt. All of them are also provided by sys-apps/systemd-sysv-utils.
Of course, if sys-apps/sysvinit is not installed and systemd module is not
included in initramfs, then shutdown functionality will likely not work."
09 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> metadata.xml:
Added Alexander Tsoy as a second maintainer and proxy-maintainers herd.
18 Nov 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-034-r1.ebuild,
+files/034-0007-dracut.sh-also-mkdir-run-lock-which-is.patch,
+files/034-0008-dracut.sh-no-need-to-make-subdirs-in-r.patch,
+files/034-0009-lvm-install-thin-utils-for-non-hostonl.patch,
+files/034-0010-module-setup.sh-add-comments-for-dracu.patch,
+files/034-0011-lvm-fix-thin-recognition.patch,
+files/034-0012-lvm-always-install-thin-utils-for-lvm.patch:
Fixed bug #487324 (redundant dirs) and bug #490098 (thin provisioning).
27 Oct 2013; Sven Vermeulen <swift@gentoo.org> dracut-026-r2.ebuild,
dracut-027-r3.ebuild, dracut-029.ebuild, dracut-030.ebuild,
dracut-031-r1.ebuild, dracut-033-r3.ebuild, dracut-034.ebuild,
dracut-034-r1.ebuild:
Fix bug #489080 - Depend on sec-policy/selinux-dracut if USE=selinux
*dracut-034-r1 (16 Oct 2013)
16 Oct 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-034-r1.ebuild,
+files/034-0006-resume-fix-swap-detection-in-hostonly.patch:
Fixed bug #487322 (resume support in hostonly mode) and bug #486516
(redundant inclusion of libs from lib32 directory).
Thanks to Alexander Tsoy <alexander@tsoy.me> for patch for bug #486516.
08 Oct 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-031.ebuild:
Removed old revision of 031.
08 Oct 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-033.ebuild,
-dracut-033-r1.ebuild, -dracut-033-r2.ebuild:
Removed old revisions of 033.
*dracut-034 (08 Oct 2013)
08 Oct 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-034.ebuild,
+files/034-0001-dracut.sh-do-not-bail-out-if-kernel-mo.patch,
+files/034-0002-dracut-functions.sh-support-for-altern.patch,
+files/034-0003-gentoo.conf-let-udevdir-be-handled-by-.patch,
+files/034-0004-Use-the-same-paths-in-dracut.sh-as-tho.patch,
+files/034-0005-Install-dracut-install-into-libexec-di.patch:
Version bump.
NEWS
~~~~
- do not run dhcp on parts of assembled network interfaces (bond, bridge)
- add option to turn on/off prelinking
--prelink, --noprelink
do_prelink=[yes|no]
- add ACPI table overriding
- do not log to syslog/kmsg/journal for UID != 0
- lvm/mdraid: Fix LVM on MD activation
- bcache module removed (now in bcache-tools upstream)
- mdadm: also install configs from /etc/mdadm.conf.d
- fixes for mdadm-3.2.6+
- mkinitrd: better compat support for SUSE
- fcoe: add FCoE UEFI boot device support
- rootfs-block: add support for the rootfallback= kernel cmdline option
*dracut-033-r3 (06 Oct 2013)
06 Oct 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-033-r3.ebuild,
+files/033-0005-dracut.sh-harden-host_modalias-reading.patch,
+files/033-0006-ifup-do-not-dhcp-on-network-interface-.patch,
+files/033-0007-lvm-mdraid-Fix-LVM-on-MD-activation.patch,
+files/033-0008-mdraid-module-setup.sh-install-configs.patch,
+files/033-0009-mdraid-module-setup.sh-fixes-for-mdadm.patch:
Applied patches with bug fixes wrt mdraid and lvm.
It fixes bug #486344, bug #485748, possible bug on PPC and bug related to
net-bonding.
Thanks to Alexander Tsoy <alexander@tsoy.me> for some of these patches and
generally for help.
*dracut-033-r2 (02 Oct 2013)
02 Oct 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-033-r2.ebuild,
+files/033-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch,
+files/033-0004-Install-dracut-install-into-libexec-di.patch:
Fixes bug #485204 and bug #485218.
Thanks to Alexander Tsoy <alexander@tsoy.me> for suggestions on bug #485204.
Thanks to Steven Newbury <s_j_newbury@yahoo.co.uk> for good suggestions on
bug #485218. Patch installing dracut-install to /usr/libexec has been
submitted upstream.
28 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-033-r1.ebuild:
Removed dead 'optimization' flag from IUSE.
*dracut-033-r1 (25 Sep 2013)
25 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-033-r1.ebuild:
Dropped optimization flag, because it is no longer an option. dracut-install
binary is installed into libdir, therefore it was required to set target lib
directory according to multilib rules.
It fixes bug #485218 and bug #485202.
*dracut-033 (14 Sep 2013)
14 Sep 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-026-r2.ebuild,
dracut-027-r3.ebuild, dracut-029.ebuild, dracut-030.ebuild,
dracut-031.ebuild, dracut-031-r1.ebuild, +dracut-033.ebuild,
+files/033-0001-dracut-functions.sh-support-for-altern.patch,
+files/033-0002-gentoo.conf-let-udevdir-be-handled-by-.patch:
Version bump. Added dash module back and it can be installed optionally. bash
is a module too, now and can be disable at initramfs build time.
NEWS
~~~~
dracut-033
==========
- improved hostonly device recognition
- improved hostonly module recognition
- add dracut.css for dracut.html
- do not install udev rules from /etc in generic mode
- fixed LABEL= parsing for swap devices
- fixed iBFT network setup
- url-lib.sh: handle 0-size files with curl
- dracut.asc: document debugging dracut on shutdown
- if rd.md=0, use dmraid for imsm and ddf
- skip empty dracut modules
- removed caching of kernel cmdline
- fixed iso-scan, if the loop device driver is a kernel module
- bcache: support new blkid
- fixed ifup udev rules
- ifup with dhcp, if no "ip=" specified for the interface
dracut-032
==========
- add parameter --print-cmdline
This prints the kernel command line parameters for the current disk
layout.
$ dracut --print-cmdline
rd.luks.uuid=luks-e68c8906-6542-4a26-83c4-91b4dd9f0471
rd.lvm.lv=debian/root rd.lvm.lv=debian/usr root=/dev/mapper/debian-root
rootflags=rw,relatime,errors=remount-ro,user_xattr,barrier=1,data=ordered
rootfstype=ext4
- dracut.sh: add --persistent-policy option and persistent_policy conf option
--persistent-policy <policy>:
Use <policy> to address disks and partitions.
<policy> can be any directory name found in /dev/disk.
E.g. "by-uuid", "by-label"
- dracut now creates the initramfs without udevadm
that means the udev database does not have to populated
and the initramfs can be built in a chroot with
/sys /dev /proc mounted
- renamed dracut_install() to inst_multiple() for consistent naming
- if $libdirs is unset, fall back to ld.so.cache paths
- always assemble /usr device in initramfs
- bash module added (disable it, if you really want dash)
- continue to boot, if the main loop times out, in systemd mode
- removed inst*() shell pure versions, dracut-install binary is in charge now
- fixed ifcfg file generation for vlan
- do not include adjtime and localtime anymore
- install vt102 terminfo
dracut_install() is still there for backwards compat
- do not strip files in FIPS mode
- fixed iBFT interface configuration
- fs-lib: install fsck and fsck.ext*
- shutdown: fixed killall_proc_mountpoint()
- network: also wait for ethernet interfaces to setup
- fixed checking for FIPS mode
13 Aug 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-026-r2.ebuild,
dracut-027-r3.ebuild, dracut-029.ebuild, dracut-030.ebuild,
dracut-031.ebuild, dracut-031-r1.ebuild:
Update mdadm dependency version to conform upstream dracut.spec. Fixes bug
#479544.
*dracut-031-r1 (05 Aug 2013)
05 Aug 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-031-r1.ebuild,
+files/031-0003-Revert-base-setup-correct-system-time-.patch:
Added patch reverting addition of hwclock. Fixes bug #479828.
*dracut-031 (03 Aug 2013)
03 Aug 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-031.ebuild,
+files/031-0001-dracut-functions.sh-support-for-altern.patch,
+files/031-0002-gentoo.conf-let-udevdir-be-handled-by-.patch:
Version bump.
NEWS
~~~~
- do not include the resume dracut module in hostonly mode,
if no swap is present
- don't warn twice about omitted modules
- use systemd-cat for logging on systemd systems, if logfile is unset
- fixed PARTUUID parsing
- support kernel module signing keys
- do not install the usrmount dracut module in hostonly mode,
if /sbin/init does not live in /usr
- add debian udev rule files
- add support for bcache
- network: handle bootif style interfaces
e.g. ip=77-77-6f-6f-64-73:dhcp
- add support for kmod static devnodes
- add vlan support for iBFT
*dracut-030 (25 Jul 2013)
25 Jul 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-030.ebuild,
+files/030-0001-dracut-functions.sh-support-for-altern.patch,
+files/030-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
+files/030-0003-LatArCyrHeb-16-as-a-default-i18n-font-.patch:
Version bump. dash dependency is dropped as well as the module which is no
longer supported.
NEWS
~~~~
(from Dracut NEWS file)
- support new persistent network interface names
- fix findmnt calls, prevents hang on stale NFS mounts
- add systemd.slice and slice.target units
- major shell cleanup
- support root=PARTLABEL= and root=PARTUUID=
- terminfo: only install l/linux v/vt100 and v/vt220
- unset all LC_* and LANG, 10% faster
- fixed dependency loop for dracut-cmdline.service
- do not wait_for_dev for the root devices
- do not wait_for_dev for devices, if dracut-initqueue is not needed
- support early microcode loading with --early-microcode
- dmraid, let dmraid setup its own partitions
- sosreport renamed to rdsosreport
23 Jul 2013; Samuli Suominen <ssuominen@gentoo.org> dracut-026-r2.ebuild,
dracut-027-r3.ebuild, dracut-029.ebuild:
Remove non-existing sys-apps/module-init-tools from dependencies in favour of
sys-apps/kmod.
06 Jul 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-027-r3.ebuild,
dracut-029.ebuild:
Use get_bashcompdir() of bash-completion-r1 eclass.
23 Jun 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-014-r3.ebuild,
-dracut-018-r3.ebuild, -dracut-019-r6.ebuild, -dracut-022-r6.ebuild,
-dracut-023-r4.ebuild, -dracut-024-r4.ebuild, -dracut-025.ebuild,
-dracut-026.ebuild, -dracut-026-r1.ebuild, -dracut-027.ebuild,
-dracut-027-r1.ebuild, -dracut-027-r2.ebuild,
-files/025-0000-fix-version-print.patch,
-files/019-0001-90multipath-added-kpartx.rules-multipa.patch,
-files/024-0001-Fallback-to-external-blkid-and-path_id.patch,
-files/023-0001-dracut-functions.sh-find_binary-path-s.patch,
-files/025-0001-dracut-functions.sh-support-for-altern.patch,
-files/022-0001-qemu-module-setup.sh-provide-alternati.patch,
-files/023-0002-90crypt-call-systemd-commands-only-if-.patch,
-files/019-0002-Avoid-annonying-warnings-when-pkg-conf.patch,
-files/022-0002-Makefile-use-implicit-rules-for-instal.patch,
-files/024-0002-dracut-functions.sh-fixed-inst_rules-s.patch,
-files/025-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/019-0003-99shutdown-remove-no-wall-argument-for.patch,
-files/023-0003-Fallback-to-external-blkid-and-path_id.patch,
-files/024-0003-dracut-functions.sh-support-for-altern.patch,
-files/022-0003-kernel-modules-module-setup.sh-just-op.patch,
-files/025-0003-rootfs-block-mount-root.sh-fixup-for-8.patch,
-files/022-0004-90multipath-added-kpartx.rules-multipa.patch,
-files/019-0004-dracut.sh-do-not-copy-var-run-and-var-.patch,
-files/025-0004-dracut.sh-reverting-return-value-chang.patch,
-files/024-0004-gentoo.conf-let-udevdir-be-handled-by-.patch,
-files/025-0005-Mount-proc-before-including-dracut-lib.patch,
-files/019-0005-dracut.sh-create-relative-symlinks-for.patch,
-files/022-0005-gentoo.conf-set-udevdir.patch,
-files/022-0006-Config-file-for-systemd-on-Gentoo.patch,
-files/022-0007-Remove-obsolete-gentoo-conf-file.patch,
-files/022-0008-95rootfs-block-fix-left-fsck-rel.-chec.patch,
-files/022-0009-98usrmount-use-rw-and-ro-options-inste.patch,
-files/022-0010-98usrmount-print-mount-options.patch,
-files/022-0011-dracut-lib-new-functions-listlist-and-.patch,
-files/022-0012-apply-ro-and-rw-options-from-cmdline-t.patch,
-files/022-0013-ro_mnt-option-at-build-time-to-force-r.patch,
-files/dracut-014-multipath-udev-rules.patch,
-files/022-0014-parse-root-opts-first-check-for-ro-lat.patch,
-files/dracut-014-usrmount-fsck-fix.patch,
-files/022-0015-gentoo.conf-enable-ro_mnt.patch,
-files/022-0016-dracut.sh-test-if-we-can-lazy-resolve-.patch,
-files/022-0017-99shutdown-remove-no-wall-argument-for.patch,
-files/022-0018-dracut.sh-do-not-copy-var-run-and-var-.patch,
-files/dracut-018-lsinitrd-support-symlinks.patch,
-files/dracut-018-multipath-udev-rules.patch,
-files/022-0019-dracut.sh-create-relative-symlinks-for.patch:
Remove old versions (prior to 026) and old revisions of 026 and 027.
*dracut-029 (23 Jun 2013)
23 Jun 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-029.ebuild,
+files/029-0001-dracut-functions.sh-support-for-altern.patch,
+files/029-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
+files/029-0003-LatArCyrHeb-16-as-a-default-i18n-font-.patch:
Version bump.
NEWS
~~~~
(from Dracut NEWS file)
dracut-029
==========
- wait for IPv6 autoconfiguration
- i18n: make the default font configurable
- proper handle "rd.break" in systemd mode before switch-root
- systemd: make unit files symlinks
- build without dash requirement
- add dracut-shutdown.service.8 manpage
- handle MACs for "ip="
"ip=77-77-6f-6f-64-73:dhcp"
- don't explode when mixing BOOTIF and ip=
- 90lvm/module-setup.sh: redirect error message of lvs to /dev/null
dracut-028
==========
- full integration of crypto devs in systemd logic
- support for bridge over team and vlan tagged team
- support multiple bonding interfaces
- new kernel command line param "rd.action_on_fail"
to control the emergency action
- support for bridge over a vlan tagged interface
- support for "iso-scan/filename" kernel parameter
- lsinitrd got some love and does not use "file" anymore
- fixed issue with noexec mounted tmp dirs
- FIPS mode fixed
- dracut_install got some love
- fixed some /usr mounting problems
- ifcfg dracut module got some love and fixes
- default installed font is now latarcyrheb-sun16
- new parameters rd.live.dir and rd.live.squashimg
- lvm: add tools for thin provisioning
- also install non-hwcap libs
- setup correct system time and time zone in initrd
- s390: fixed cms setup
- add systemd-udevd persistent network interface naming
*dracut-027-r3 (20 May 2013)
20 May 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-027-r2.ebuild,
+dracut-027-r3.ebuild:
Bashcomp fixes wrt bug #469892.
Thanks to Alexander Tsoy <alexander@tsoy.me> for patch:
https://bugs.gentoo.org/attachment.cgi?id=348338
Which bashcomp related part has been applied slightly modified.
*dracut-027-r2 (19 May 2013)
19 May 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-027-r2.ebuild:
Fixes bug #467754:
- Install systemd units into correct location.
- Fix installation of bash-completion script. It used to be installed in two
locations.
Thanks to Alexander Tsoy <alexander@tsoy.me> for patch:
https://bugs.gentoo.org/attachment.cgi?id=348338
Which has been applied slightly modified.
*dracut-027-r1 (18 Apr 2013)
18 Apr 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/027-0003-Do-not-call-plymouth-with-full-path.patch,
+files/027-0004-plymouth-plymouth-pretrigger.sh-fixup-.patch,
+dracut-027-r1.ebuild:
Rev-bump. Fixes bug #465518.
Thanks to Enrico Tagliavini <enrico.tagliavini@gmail.com> for report and
handling it and to Harald Hoyer for fixing it.
09 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r3.ebuild, dracut-019-r6.ebuild, dracut-022-r6.ebuild,
dracut-023-r4.ebuild, dracut-024-r4.ebuild, dracut-025.ebuild,
dracut-026.ebuild, dracut-026-r1.ebuild, dracut-026-r2.ebuild,
dracut-027.ebuild:
Remove sys-fs/device-mapper from || () syntax in favour of sys-fs/lvm2 wrt
#461382
02 Apr 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/025-0000-fix-version-print.patch, dracut-025.ebuild:
Backported changes wrt systemd and other cosmetic changes from 026-r2 to 025.
02 Apr 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/026-0000-fix-version-print.patch, dracut-019-r6.ebuild,
dracut-022-r6.ebuild, dracut-023-r4.ebuild, dracut-024-r4.ebuild,
dracut-025.ebuild, dracut-026.ebuild, dracut-026-r1.ebuild,
+dracut-026-r2.ebuild, dracut-027.ebuild:
Switch to virtual/udev in older ebuilds.
*dracut-026-r2 (02 Apr 2013)
02 Apr 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/026-0000-fix-version-print.patch, +dracut-026-r2.ebuild:
Backporting changes wrt virtual/udev, CONFIG_MODULES and systemd from
dracut-027.ebuild.
*dracut-027 (02 Apr 2013)
02 Apr 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/027-0001-dracut-functions.sh-support-for-altern.patch,
+files/027-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
+dracut-027.ebuild:
Version bump.
Dracut 027 depends on virtual/udev now and no longer needs CONFIG_MODULES in
kernel.
Following changes relates to systemd module only:
- at least systemd-199 is required
- systemd-bootchart module replaces bootchart module
- selinux module is removed if systemd module is installed, because systemd
handles selinux setup; the same is for securityfs
NEWS
~~~~
(from announcement on mailing list)
dracut-027
==========
- dracut now has bash-completion
- require bash version 4
- systemd module now requires systemd >= 199
- dracut makes use of native systemd initrd units
- added hooks for new-kernel-pkg and kernel-install
- hostonly is now default for fedora
- comply with the BootLoaderSpec paths
http://www.freedesktop.org/wiki/Specifications/BootLoaderSpec
- added rescue module
- host_fs_types is now a hashmap
- new dracut argument "--regenerate-all"
- new dracut argument "--noimageifnotneeded"
- new man page dracut.bootup
- install all host filesystem drivers
- use -D_FILE_OFFSET_BITS=64 to build dracut-install
30 Mar 2013; Mike Gilbert <floppym@gentoo.org> dracut-026-r1.ebuild:
Depend on udev or a recent version of systemd.
*dracut-026-r1 (12 Mar 2013)
12 Mar 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/026-0004-lsinitrd.sh-fix-for-default-initrd-not.patch,
+files/026-0005-lsinitrd.sh-removed-trailing.patch,
+files/026-0006-make-host_fs_types-a-hashmap.patch, +dracut-026-r1.ebuild:
Fixed crypt, dmraid and mdraid detection as explained in previous entry:
> Gentoo release doesn't include a fix to catch all UUIDs (for crypt, dmraid,
> mdraid) and not only the first one, because the fix actually breaks
> something and LUKS devices aren't detected correctly at build time. If this
> fix is fixed it will come in dracut-026-r1 ASAP.
Moreover lsinitrd script has been fixed.
*dracut-026 (10 Mar 2013)
10 Mar 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/026-0001-dracut-functions.sh-support-for-altern.patch,
+files/026-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
+files/026-0003-Revert-crypt-dmraid-mdraid-use-for_eac.patch,
+dracut-026.ebuild:
Version bump.
Gentoo release doesn't include a fix to catch all UUIDs (for crypt, dmraid,
mdraid) and not only the first one, because the fix actually breaks something
and LUKS devices aren't detected correctly at build time. If this fix is
fixed it will come in dracut-026-r1 ASAP.
NEWS
~~~~
(from announcement on mailing list)
- introduce /usr/lib/dracut/dracut.conf.d/ drop-in directory
/usr/lib/dracut/dracut.conf.d/*.conf can be overwritten by the same
filenames in /etc/dracut.conf.d.
Packages should use /usr/lib/dracut/dracut.conf.d rather than
/etc/dracut.conf.d for drop-in configuration files.
/etc/dracut.conf and /etc/dracut.conf.d belong to the system administrator.
- uses systemd-198 native initrd units
- totally rely on the fstab-generator in systemd mode for block devices
- dracut systemd now uses dracut.target rather than basic.target
- dracut systemd services optimize themselves away
- fixed hostonly parameter generation
- turn off curl globbing (fixes IPv6)
- modify the udev rules on install and not runtime time
- enable initramfs building without kernel modules (fixed regression)
- in the initqueue/timeout, reset the main loop counter, as we see new udev
events or initqueue/work
- fixed udev rule installation
10 Mar 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-025.ebuild:
Cosmetic changes.
*dracut-025 (09 Mar 2013)
09 Mar 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/025-0001-dracut-functions.sh-support-for-altern.patch,
+files/025-0002-gentoo.conf-let-udevdir-be-handled-by-.patch,
+files/025-0003-rootfs-block-mount-root.sh-fixup-for-8.patch,
+files/025-0004-dracut.sh-reverting-return-value-chang.patch,
+files/025-0005-Mount-proc-before-including-dracut-lib.patch,
+dracut-025.ebuild:
Version bump.
NEWS
~~~~
- do not strip signed kernel modules
- add sosreport script and generate /run/initramfs/sosreport.txt
- make short uuid specification for allow-discards work
- turn off RateLimit for the systemd journal
- fixed MAC address assignment
- add systemd checkisomd5 service
- splitout drm kernel modules from plymouth module
- add 'swapoff' to initramfs to fix shutdown/reboot
- add team device support
- add pre-shutdown hook
- kill all processes in shutdown and report remaining ones
- "--device" changed to "--add-device" and "add_device=" added for conf files
- add memory usage trace to different hook points
- cope with optional field #7 in /proc/self/mountinfo
- lots of small bugfixes
02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dracut-024-r4.ebuild:
Add ~arm, wrt bug #449220
27 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-024-r4.ebuild:
Warn in postinst log if rd.auto option is not set. Rels bug #453836.
08 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-024-r2.ebuild,
-dracut-024-r3.ebuild:
Remove old 024 revisions.
*dracut-024-r4 (07 Jan 2013)
07 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/024-0002-dracut-functions.sh-fixed-inst_rules-s.patch,
-files/024-0002-dracut-functions.sh-support-for-altern.patch,
+files/024-0003-dracut-functions.sh-support-for-altern.patch,
-files/024-0003-gentoo.conf-let-udevdir-be-handled-by-.patch,
+files/024-0004-gentoo.conf-let-udevdir-be-handled-by-.patch,
+dracut-024-r4.ebuild:
Use alternative dirs to search for udev rules, but install in udevdir. Fixes
bug #447088. Thanks to Alexander Tsoy <alexander@tsoy.me> for a patch.
06 Jan 2013; Agostino Sarubbo <ago@gentoo.org> dracut-024-r3.ebuild:
Add ~sparc, wrt bug #449220
05 Jan 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r3.ebuild, dracut-019-r6.ebuild, dracut-022-r6.ebuild,
dracut-023-r4.ebuild, dracut-024-r2.ebuild, dracut-024-r3.ebuild:
Revert dependency from virtual/udev to sys-fs/udev. Dracut need to be
customized first to depend both on eudev and udev.
01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> dracut-024-r3.ebuild:
Add ~alpha, wrt bug #449220
01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> dracut-024-r3.ebuild:
Add ~ia64, wrt bug #449220
31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> dracut-024-r3.ebuild:
Add ~ppc64, wrt bug #449220
31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> dracut-024-r3.ebuild:
Add ~ppc, wrt bug #449220
*dracut-024-r3 (16 Dec 2012)
16 Dec 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
files/024-0001-Fallback-to-external-blkid-and-path_id.patch,
+files/024-0002-dracut-functions.sh-support-for-altern.patch,
+files/024-0003-gentoo.conf-let-udevdir-be-handled-by-.patch,
+dracut-024-r3.ebuild:
Use alternative dirs to search for udev rules. Use pkg-config to detect
primary udevdir at run-time. Fixes bug #447088.
16 Dec 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-023-r2.ebuild,
-dracut-024.ebuild:
Remove old revisions.
28 Nov 2012; Jeroen Roovers <jer@gentoo.org> dracut-022-r6.ebuild:
Fix Manifest. Inherit multilib in 022-r6 too.
28 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r3.ebuild, dracut-019-r6.ebuild:
Inherit multilib.eclass for get_libdir function.
28 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r3.ebuild, dracut-019-r6.ebuild, dracut-022-r6.ebuild,
dracut-023-r2.ebuild, dracut-023-r4.ebuild, dracut-024.ebuild,
dracut-024-r2.ebuild:
Use virtual/udev instead of sys-fs/udev wrt #444398
*dracut-024-r2 (01 Nov 2012)
*dracut-023-r4 (01 Nov 2012)
01 Nov 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
files/024-0001-Fallback-to-external-blkid-and-path_id.patch,
files/023-0003-Fallback-to-external-blkid-and-path_id.patch,
-dracut-023-r3.ebuild, +dracut-023-r4.ebuild, -dracut-024-r1.ebuild,
+dracut-024-r2.ebuild:
Added missing epatch and improved patches a bit btw.
01 Nov 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r3.ebuild, dracut-019-r6.ebuild, dracut-022-r6.ebuild,
dracut-023-r2.ebuild, dracut-024.ebuild:
Applied fix wrt bug #437108 to older ebuilds.
*dracut-024-r1 (01 Nov 2012)
*dracut-023-r3 (01 Nov 2012)
01 Nov 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/024-0001-Fallback-to-external-blkid-and-path_id.patch,
+files/023-0003-Fallback-to-external-blkid-and-path_id.patch,
+dracut-023-r3.ebuild, +dracut-024-r1.ebuild:
Fixes bug #437700. Thanks to Alexander Tsoy <alexander@tsoy.me> for the
report and the patch.
Also bumped dhcp version dependency to >=4.2.4_p2-r1 wrt bug #437108.
*dracut-024 (28 Oct 2012)
28 Oct 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-024.ebuild:
Version bump. Fixes bug #432268 btw.
NEWS
~~~~
- new dracut option "--device"
- new dracut kernel command line options "rd.auto"
- new dracut kernel command line options "rd.noverifyssl"
- new dracut option "--kernel-cmdline" and "kernel_cmdline" option for
default parameters
- fixes for systemd and crypto
- fix for kexec in shutdown, if not included in initramfs
- create the initramfs non-world readable
- prelink/preunlink in the initramfs
- strip binaries in the initramfs by default now
- various FIPS fixes
- various dracut-install fixes
*dracut-023-r2 (27 Oct 2012)
*dracut-022-r6 (27 Oct 2012)
*dracut-019-r6 (27 Oct 2012)
*dracut-018-r3 (27 Oct 2012)
27 Oct 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-018-r2.ebuild,
+dracut-018-r3.ebuild, -dracut-019-r5.ebuild, +dracut-019-r6.ebuild,
-dracut-022-r5.ebuild, +dracut-022-r6.ebuild, -dracut-023.ebuild,
-dracut-023-r1.ebuild, +dracut-023-r2.ebuild:
Fixes bug #438064 and bug #438434.
*dracut-023-r1 (07 Oct 2012)
07 Oct 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/023-0001-dracut-functions.sh-find_binary-path-s.patch,
+files/023-0002-90crypt-call-systemd-commands-only-if-.patch,
+dracut-023-r1.ebuild:
Fixes for bug #436712, bug #437142 and bug #437270.
Thanks to Jonathan Callen <abcd@gentoo.org>, Nikoli <nikoli@lavabit.com> and
Alexander Tsoy <bugs+gentoo@puleglot.ru>.
09 Sep 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r2.ebuild, dracut-019-r5.ebuild, dracut-022-r5.ebuild,
dracut-023.ebuild:
Depend on net-misc/dhcp with "client" flag enabled. Fixes bug #433808.
20 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-022-r5.ebuild:
Building docs conditionally along with optimization is a mistake. Fixed.
*dracut-023 (20 Aug 2012)
20 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-023.ebuild:
Version bump. This version allows to install systemd module which has been
disabled in previous ebuilds.
NEWS
~~~~
- resume from hibernate fixes
- -N option for --no-hostonly
- support for systemd crypto handling
- new dracut module "crypt-loop"
- deprecate the old kernel command line options
- more documentation
- multipath fixes
- i18n: fixed inclusion of "include" keymaps
- root on cifs support
- support for xfs / reiserfs separate journal device
Following changes has been backported to Gentoo's 022-r5 and are included by
upstream in 023:
- honor CFLAGS for dracut-install build
- / is mounted according to rootflags parameter but forced ro at first.
Later it is remounted according to /etc/fstab + rootflags parameter
and "ro"/"rw".
- new "ro_mnt" option to force ro mount of / and /usr
- dracut-install: fixed issue for /var/tmp containing a symlink
- only lazy resolve with ldd, if the /var/tmp partition is not mounted with
"noexec"
17 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-022-r5.ebuild:
Move udev to common dependencies, because its configuration is being checked
in the ebuild.
09 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-019-r5.ebuild:
Remove udev-187 blocker from 019. Fixes bug #430002.
09 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-019-r5.ebuild:
dracut-019 uses pkg-config at run-time to detect udevdir. Rels bug #430002.
*dracut-022-r5 (09 Aug 2012)
09 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-022-r4.ebuild,
+dracut-022-r5.ebuild:
pkg-config is now used to configure udevdir path in the ebuild.
Rels bug #430002.
09 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-022-r4.ebuild:
Use pkg-config to detect udevdir. Remove udev-187 blocker.
04 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-019-r4.ebuild,
-dracut-022-r3.ebuild:
Remove old revisions of 019 and 022.
*dracut-022-r4 (04 Aug 2012)
*dracut-019-r5 (04 Aug 2012)
04 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-019-r5.ebuild,
+dracut-022-r4.ebuild:
Block >=udev-187, because dracut doesn't boot with 187.
*dracut-022-r3 (31 Jul 2012)
*dracut-019-r4 (31 Jul 2012)
31 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/019-0001-90multipath-added-kpartx.rules-multipa.patch,
-files/019-0001-multipath-udev-rules.patch,
+files/019-0002-Avoid-annonying-warnings-when-pkg-conf.patch,
-files/019-0002-no-pkg-config-warnings.patch,
+files/019-0003-99shutdown-remove-no-wall-argument-for.patch,
+files/019-0004-dracut.sh-do-not-copy-var-run-and-var-.patch,
+files/019-0005-dracut.sh-create-relative-symlinks-for.patch,
-files/019-0017-99shutdown-remove-no-wall-argument-for.patch,
+files/022-0018-dracut.sh-do-not-copy-var-run-and-var-.patch,
-dracut-019-r3.ebuild, +dracut-019-r4.ebuild,
+files/022-0019-dracut.sh-create-relative-symlinks-for.patch,
-dracut-022-r2.ebuild, +dracut-022-r3.ebuild:
Fixes bug #428142 in 019 and 022.
*dracut-022-r2 (31 Jul 2012)
*dracut-019-r3 (31 Jul 2012)
31 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/019-0001-multipath-udev-rules.patch,
+files/019-0002-no-pkg-config-warnings.patch,
+files/019-0017-99shutdown-remove-no-wall-argument-for.patch,
+files/022-0017-99shutdown-remove-no-wall-argument-for.patch,
-dracut-019-r2.ebuild, +dracut-019-r3.ebuild,
-files/dracut-019-multipath-udev-rules.patch,
-files/dracut-019-no-pkg-config-warnings.patch, -dracut-022-r1.ebuild,
+dracut-022-r2.ebuild:
Fixed bug #388199 in 019 and 022. 018 is ignored because it is going to be
removed soon. I have changed patches naming scheme in 019 as I did in 022.
Thanks to Alexander E. Patrakov <patrakov@gmail.com> for solving the issue.
30 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-022.ebuild:
Remove old 022 revision.
*dracut-022-r1 (30 Jul 2012)
30 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/022-0016-dracut.sh-test-if-we-can-lazy-resolve-.patch,
+dracut-022-r1.ebuild:
Rev-bump. Fixes bug #428232.
27 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r2.ebuild, dracut-019-r2.ebuild, dracut-022.ebuild:
Install into correct libdir.
27 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-022.ebuild:
Export CC to emake and warn about optimization.
27 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-022.ebuild:
optimization might not work in some cases, don't make it default, yet.
27 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-022.ebuild:
Removing the hashmap.o file which was accidentally added to the tarball by
upstream.
26 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-014-r3.ebuild,
dracut-018-r2.ebuild, dracut-019-r2.ebuild:
Remove useless postinst messages. Users should refer to Dracut Docs or Gentoo
Wiki.
26 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-022.ebuild:
Man pages in 022 are patched, therefore docs need to be rebuilt. It should be
done in src_compile, not in src_install as it was before.
*dracut-022 (26 Jul 2012)
26 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org>
+files/022-0001-qemu-module-setup.sh-provide-alternati.patch,
+files/022-0002-Makefile-use-implicit-rules-for-instal.patch,
+files/022-0003-kernel-modules-module-setup.sh-just-op.patch,
+files/022-0004-90multipath-added-kpartx.rules-multipa.patch,
+files/022-0005-gentoo.conf-set-udevdir.patch,
+files/022-0006-Config-file-for-systemd-on-Gentoo.patch,
+files/022-0007-Remove-obsolete-gentoo-conf-file.patch,
+files/022-0008-95rootfs-block-fix-left-fsck-rel.-chec.patch,
+files/022-0009-98usrmount-use-rw-and-ro-options-inste.patch,
+files/022-0010-98usrmount-print-mount-options.patch,
+files/022-0011-dracut-lib-new-functions-listlist-and-.patch,
+files/022-0012-apply-ro-and-rw-options-from-cmdline-t.patch,
+files/022-0013-ro_mnt-option-at-build-time-to-force-r.patch,
+files/022-0014-parse-root-opts-first-check-for-ro-lat.patch,
+files/022-0015-gentoo.conf-enable-ro_mnt.patch, +dracut-022.ebuild,
metadata.xml:
Version bump to 022. 020 and 021 has been skipped.
This version is heavily patched to support /usr mounting the way OpenRC team
expects. Patches also include few more customizations and fixes for Gentoo.
Changes since 019
=================
020
~~~
- arm kernel modules added to kernel-modules
- make udevdir systemdutildir systemdsystemunitdir global vars
your distribution should ship those settings in
/etc/dracut.conf.d/01-distro.conf
see dracut.conf.d/fedora.conf.example
- kernel modules are now only handled with /sys/modules and modules.dep
- systemd fixups
- mdraid: wait for md devices to be clean, before shutdown
- ifup fixed for ipv6
- add PARTUUID as root=PARTUUID=<partition uuid> parameter
- fixed instmods() return code and set pipefail globally
- add 04watchdog dracut module
- dracut-shutdown.service: fixed ordering to be before shutdown.target
- make use of "ln -r" instead of shell functions, if new coreutils is
installed
- network: support vlan tagged bonding
- new dracut module qemu and qemu-net to install all kernel driver
- fs-lib/fs-lib.sh: removed test mounting of btrfs and xfs
- no more "mknod" in the initramfs!!
- replaced all "tr" calls with "sed"
- speedup with lazy kernel module dependency resolving
- lots of speedup optimizations
- dracut-install:
- new binary to significanlty speedup the installation process
- dracut-functions.sh makes use of it, if installed
021
~~~
- fixed systemd in the initramfs (requires systemd >= 187)
- dracut-install: massive speedup with /var on the same filesystem with COW
copy
- new options: "rd.usrmount.ro" and "rd.skipfsck"
- less mount/umount
- apply "ro" on the kernel command line also to /usr
- mount according to fstab, if neither "ro" or "rw" is specified
- skip fsck for xfs and btrfs. remount is enough
- give emergency_shell if /usr mount failed
- dracut now uses getopt:
* options can be position independent now!!
* we can now use --option=<arg>
- added option "--kver=<kernel-version>", and the image location can be
omitted
# dracut --kver 3.5.0-0.rc7.git1.2.fc18.x86_64
- dracut.sh: for --include copy also the symbolic links
- man pages: lsinitrd and mkinitrd added
- network: We do not support renaming in the kernel namespace anymore
(as udev does that not anymore). So, if a user wants to use ifname, he has
to rename to a custom namespace. "eth[0-9]+" is not allowed anymore. !!!!!
- resume: moved the resume process to the initqueue.
This should prevent accidently mounting the root file system.
022
~~~
- fixed host-only kernel module bug
25 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-014-r2.ebuild,
-dracut-018-r1.ebuild, -dracut-018.ebuild, -dracut-019-r1.ebuild,
-dracut-019.ebuild:
Remove old revisions.
*dracut-019-r2 (25 Jul 2012)
25 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-019-r2.ebuild,
+files/dracut-019-no-pkg-config-warnings.patch:
Make virtual/pkgconfig optional. Fixes bug #420585 in better way than
previous commit.
*dracut-019-r1 (25 Jul 2012)
*dracut-018-r2 (25 Jul 2012)
*dracut-014-r3 (25 Jul 2012)
25 Jul 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-014-r3.ebuild,
+dracut-018-r2.ebuild, +dracut-019-r1.ebuild:
Dependencies revised.
Dracut requires >=udev-166 and >=util-linux-2.21 since 018, but >=udev-186
needs to be blocked for versions 018 and earlier. pkgconfig is required for
019.
Fixes bug #420585 and bug #424878.
*dracut-019 (09 Jun 2012)
09 Jun 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-019.ebuild,
+files/dracut-019-multipath-udev-rules.patch:
Version bump.
NEWS
~~~~
- initqueue/online hook
- fixes for ifcfg write out
- rootfs-block: avoid remount when options don't change
- virtfs root filesystem support
- cope with systemd-udevd
- mount tmpfs with strictatime
- include all kernel/drivers/net/phy drivers
- add debug_on() and debug_off() functions
- add arguments for source_hook() and source_all()
- cleanup hook
- plymouth: get consoledev from /sys/class/tty/console/active
- install xhci-hcd kernel module
- dracut: new "--mount" option
- lsinitrd: new option --printsize
- ARM storage kernel modules added
- /etc/initrd-release in the initrd
- vlan support
- full bonding and bridge support
- removed scsi_wait_scan kernel module from standard install
- support rd.luks.allow-discards and honor options in crypttab
- lots of bugfixes
18 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-018-r1.ebuild:
Added 'bootchart' module.
18 May 2012; Lance Albertson <ramereth@gentoo.org> metadata.xml:
remove myself as a maintainer
*dracut-018-r1 (16 May 2012)
16 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-018-r1.ebuild,
+files/dracut-018-lsinitrd-support-symlinks.patch:
Fixes bug #411821. Thanks to Nikoli <nikoli@lavabit.com> for the patch.
09 May 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-017-r1.ebuild,
-dracut-017-r2.ebuild, -dracut-017-r3.ebuild,
-files/dracut-017-convertfs-fix-check-for-usr-bin.patch,
-files/dracut-017-crypt-simplify-rd.luks.uuid-testing.patch,
-files/dracut-017-fstab-sys-no-check-for-dev.patch,
-files/dracut-017-fstab-sys-remove-bashism.patch,
-files/dracut-017-inst_symlink-parent-dir.patch,
-files/dracut-017-multipath-udev-rules.patch,
-files/dracut-017-tmpdir-option.patch,
-files/dracut-017-usrmount-fstab-comments.patch,
-files/dracut-017-usrmount-newroot-etc-check.patch:
Removed 017, because 018 fixes bugs which are not going to be backported to
017.
26 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-018.ebuild:
Removed use of WITH_SWITCH_ROOT variables.
*dracut-018 (05 Apr 2012)
05 Apr 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-018.ebuild,
+files/dracut-018-multipath-udev-rules.patch:
Version bump. Fixes btw bug #408669.
Build time dependencies are no longer required, because man pages and html
doc are already built. Therefore compile phase in empty.
NEWS
~~~~
(Taken from NEWS file. Lines which don't apply to Gentoo package are
removed.)
- lvm: ignore lvm mirrors
- lsinitrd: handle LZMA images
- iscsi: add rd.iscsi.param
- iscsi: add iscsi interface binding
- fixed fstab.sys handling
- new dracut option "--tmpdir"
- new dracut option "--no-hostonly"
- nbd: name based nbd connects
- write-ifcfg fixes and cleanups
- ifup is now done in the initqueue
- netroot cleanup
- initqueue/online is now for hooks, which require network
- no more /tmp/root.info
- 98pollcdrom: factored out the ugly cdrom polling in the main loop
- simplified rd.luks.uuid testing
- removed "egrep" and "ls" calls
- speedup kernel module installation
- lots of bugfixes
*dracut-017-r3 (27 Mar 2012)
27 Mar 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-017-r3.ebuild,
+files/dracut-017-fstab-sys-no-check-for-dev.patch,
+files/dracut-017-fstab-sys-remove-bashism.patch:
Fixed fstab-sys not working with dash wrt bug #406755.
Applied also patch removing check for existing /dev, because "there are a lot
of filesystems, which do not need an actual device node".
*dracut-017-r2 (26 Mar 2012)
26 Mar 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-017-r2.ebuild,
+files/dracut-017-inst_symlink-parent-dir.patch,
+files/dracut-017-tmpdir-option.patch:
Fixes "inst_symlink will not create directory containing the symlink"
(bug #409167) and adds new tiny feature - tmpdir option (bug #409177).
05 Mar 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-017-r1.ebuild:
Warn if kernel config cannot be checked.
*dracut-017-r1 (01 Mar 2012)
01 Mar 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-017.ebuild,
+dracut-017-r1.ebuild:
Don't create broken misplaced symlink.
29 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-010-r3.ebuild,
-files/dracut-010-empty-etc-ld.so.conf.d.patch,
-files/dracut-010-multipath-udev-rules.patch,
-files/dracut-010-rd.driver.post-fixed.patch,
-files/dracut-010-rd.driver.pre-and-blacklist-fix.patch,
-dracut-013-r2.ebuild, -files/dracut-013-integrated-initramfs-fix.patch,
-files/dracut-013-livenet-gentoo-ca-bundle-path.patch,
-files/dracut-013-makefile-manpages.patch,
-files/dracut-013-multipath-udev-rules.patch, -dracut-016.ebuild,
-files/dracut-016-multipath-udev-rules.patch:
Removed old versions. Left 014 because it is most stable and 017 because this
is the latest with important fixes.
*dracut-017 (29 Feb 2012)
29 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-017.ebuild,
+files/dracut-017-convertfs-fix-check-for-usr-bin.patch,
+files/dracut-017-crypt-simplify-rd.luks.uuid-testing.patch,
+files/dracut-017-multipath-udev-rules.patch,
+files/dracut-017-usrmount-fstab-comments.patch,
+files/dracut-017-usrmount-newroot-etc-check.patch:
Version bump.
Backported patches:
- fixes for usrmount (bug #406023)
- workaround for broken dm-setup not detecting /dev/dm-* (bug #405921)
- fix for convertfs
NEWS
~~~~
- a _lot_ faster than dracut-016 in image creation
- systemd service dracut-shutdown.service
- livenet fixes
- ssh-client module install fix
- root=iscsi:... fixed
- lots of restructuring and optimizing in dracut-functions.sh
- usrmount: honor fs_passno in /etc/fstab
- renamed all shell scripts to .sh
- new option "--omit-drivers" and config option "omit_drivers"
- hostonly mode fixups
27 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-010-r3.ebuild,
dracut-013-r2.ebuild, dracut-014-r2.ebuild, dracut-016.ebuild:
Depend on module-init-tools or >kmod-5[tools] explicitly instead of
virtual/modutils. Rels bug #405827 and bug #402557.
21 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-016.ebuild:
Check kernel config for CONFIG_MODULES. Added -f option to rm_module
function, btw.
18 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-016.ebuild,
metadata.xml:
Renamed 'dm' flag to 'device-mapper', because the later is used also by lilo,
grub and parted.
16 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-010-r3.ebuild,
dracut-013-r2.ebuild, dracut-014-r2.ebuild, dracut-016.ebuild:
Depend on virtual/modutils instead of sys-apps/module-init-tools. Dracut
should work with kmod tools which is alternative to module-init-tools,
although it hasn't been well tested yet.
16 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-016.ebuild,
metadata.xml:
Remove network or dm related modules when USE flags 'net' or 'dm' are
disabled. Modules depending on networking or device-mapper have corresponding
flags which depend on 'net' or 'dm'.
'ssh-client' dracut_module was added and net-misc/curl dependency to 'net'
because of new url-lib module.
*dracut-016 (15 Feb 2012)
15 Feb 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-016.ebuild,
+files/dracut-016-multipath-udev-rules.patch:
Version bump.
New modules come:
- convertfs
- ssh-client
- terminfo
Kernel options are checked starting with this ebuild. CONFIG_BLK_DEV_INITRD
is obvious and was always required and since dracut 015 CONFIG_DEVTMPFS is
required, too.
usrmount module doesn't enforce /usr being mount ro anymore.
NEWS
~~~~
Extracted from Dracut NEWS file - merged news from version 015 and 016,
because 015 was skipped in Portage:
- fixed lsinitrd
- honor binaries in sbin first
- fixed usrmount module
- added systemd service for shutdown
- fixed terminfo on distros with /usr/share/terminfo
- reload udev rules after "pre-trigger" hook
- improved test suite
- new parameter "--omit-drivers" and new conf param omit_drivers
- "--offroot" support for mdraid
- new libs: net-lib.sh, nfs-lib.sh, url-lib.sh, img-lib.sh
full of functions to use in your dracut module
- hostonly mode automatically adds command line options for root and /usr
- --add-fstab --mount parameters
- ssh-client module
- --ctty option: add job control
- cleanup /run/initramfs
- convertfs module
- /sbin/ifup can be called directly
- support kernel modules compressed with xz
- s390 iscsi modules added
- terminfo module
- lsinitrd can handle concatened images
- lsinitrd can sort by size
*dracut-014-r2 (30 Jan 2012)
30 Jan 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-014-r1.ebuild,
+dracut-014-r2.ebuild:
Depend on >=sys-apps/util-linux-2.20. Fixes bug #399213.
12 Jan 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-013-r2.ebuild,
dracut-014-r1.ebuild:
Removed unused variables.
12 Jan 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-014.ebuild:
Removed old 014 revision.
*dracut-014-r1 (12 Jan 2012)
12 Jan 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-014-r1.ebuild,
+files/dracut-014-usrmount-fsck-fix.patch:
Fixed fsck usage error on /usr mount wrt bug #396575.
11 Jan 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-010-r3.ebuild,
+files/dracut-010-empty-etc-ld.so.conf.d.patch,
+files/dracut-010-multipath-udev-rules.patch,
+files/dracut-010-rd.driver.post-fixed.patch,
+files/dracut-010-rd.driver.pre-and-blacklist-fix.patch:
Restored 010-r3, because some people need it for ZFS support. Fixes
bug #398213.
27 Dec 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-014.ebuild:
Removed dracut_modules_xen from ebuild modules list and dependencies.
27 Dec 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-013.ebuild,
-dracut-013-r1.ebuild:
Removed old 013 revisions.
*dracut-014 (27 Dec 2011)
27 Dec 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-014.ebuild,
+files/dracut-014-multipath-udev-rules.patch:
Version bump.
This version provides new modules:
- usrmount
- securityfs
Following modules were removed:
- xen
NEWS
~~~~
From Dracut NEWS file:
- new dracut arguments:
--lvmconf
--nolvmconf
--fscks [LIST]
--nofscks
- new .conf options:
install_items
fscks
nofscks
- new kernel options:
rd.md.ddf
rd.md.waitclean
plymouth.enable
- dracut move from /sbin to /usr/bin
- dracut modules dir moved from /usr/share/dracut to /usr/lib/dracut
- profiling with "dracut --profile"
- speedup of initramfs creation
- ask_for_password fallback to CLI
- mdraid completely switched to incremental assembly
- no more cdrom polling
- "switch_root" breakpoint is now very late
- /dev/live is gone
- /dev/root is gone
- fs-lib dracut module for fscks added
- usb mass storage kernel drivers now included
- usrmount dracut module added:
mount /usr if found in /sysroot/etc/fstab
- only include fsck helper needed for hostonly
- support iSCSI drivers: qla4xxx, cxgb3i, cxgb4i, bnx2i, be2iscsi
- add install_items to dracut.conf
install_items+=" <file>[ <file> ...] "
16 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-010-r3.ebuild,
-files/dracut-010-empty-etc-ld.so.conf.d.patch,
-files/dracut-010-multipath-udev-rules.patch,
-files/dracut-010-rd.driver.post-fixed.patch,
-files/dracut-010-rd.driver.pre-and-blacklist-fix.patch, -dracut-011.ebuild,
-dracut-011-r1.ebuild, -files/dracut-011-integrated-initramfs-fix.patch,
-files/dracut-011-multipath-udev-rules.patch:
Removed old versions: 010 and 011.
*dracut-013-r2 (16 Nov 2011)
16 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-013-r2.ebuild,
+files/dracut-013-makefile-manpages.patch:
Patched Makefile to install man pages properly. Fixes bug #390629. Btw, use
single call to epatch.
09 Sep 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-010-r3.ebuild,
dracut-011.ebuild, dracut-011-r1.ebuild, dracut-013.ebuild,
dracut-013-r1.ebuild:
Added app-arch/cpio dependency, because it's going to be removed from system
set.
04 Sep 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-008-r1.ebuild:
Removed left 008-r1 ebuild.
*dracut-013-r1 (04 Sep 2011)
*dracut-011-r1 (04 Sep 2011)
04 Sep 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-011-r1.ebuild,
+files/dracut-011-integrated-initramfs-fix.patch, +dracut-013-r1.ebuild,
+files/dracut-013-integrated-initramfs-fix.patch:
Fixed bug #380111 - "kernels with integrated initramfs and dracut failed to
boot"
31 Aug 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-007.ebuild,
-files/dracut-007-dm-udev-rules.patch,
-files/dracut-007-multipath-udev-rules.patch, -dracut-008.ebuild,
-files/dracut-008-dm-udev-rules.patch,
-files/dracut-008-i18n-config-file-parsing-in-hostonly.patch,
-files/dracut-008-multipath-udev-rules.patch, -dracut-009-r1.ebuild,
-files/dracut-009-don-t-skip-zero-length-string-outfile.patch,
-files/dracut-009-multipath-udev-rules.patch, metadata.xml:
Removed older ebuilds (<010) with corresponding files. metadata.xml was
cleaned up from flags descriptions which are used no more.
31 Aug 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-013.ebuild:
Added 'crypt' requirement for 'crypt-gpg'.
*dracut-013 (21 Aug 2011)
21 Aug 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-013.ebuild,
+files/dracut-013-livenet-gentoo-ca-bundle-path.patch,
+files/dracut-013-multipath-udev-rules.patch:
Version bump to 013 and EAPI bump to 4.
This version provides new modules:
- livenet
- fs-lib
sys-fs/udev-164 is OK after all. Some dependencies were removed, because
they are optional:
- net-misc/ifenslave
- net-misc/bridge-utils
- virtual/eject
dracut will warn if something optional is missing, but will continue build an
image without issues.
New important for bug #378863 option was introduced: --force-add
Dracut can now mount /usr if it's defined in /etc/fstab on destination
rootfs.
*dracut-011 (18 Jul 2011)
18 Jul 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-011.ebuild,
+files/dracut-011-multipath-udev-rules.patch:
Version bump.
This version provides new modules:
- crypt-gpg
- shutdown
sys-fs/udev version was restricted to 168 and above and
sys-apps/module-init-tools to 3.8 or above.
30 Jun 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-010.ebuild,
-dracut-010-r1.ebuild, -dracut-010-r2.ebuild:
Removed old revisions of version 010.
*dracut-010-r3 (30 Jun 2011)
30 Jun 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-010-r3.ebuild,
+files/dracut-010-rd.driver.post-fixed.patch,
+files/dracut-010-rd.driver.pre-and-blacklist-fix.patch:
rd.driver.* kernel args handling patches. Fixes bug #373007.
23 Jun 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-009-r1.ebuild,
dracut-010.ebuild, dracut-010-r1.ebuild, dracut-010-r2.ebuild:
Missing RESTRICT="test" fixed. Refs bug #298014.
*dracut-010-r2 (07 Jun 2011)
07 Jun 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-010-r2.ebuild:
Added missing net-misc/ifenslave runtime dependency.
*dracut-010-r1 (01 Apr 2011)
01 Apr 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-010-r1.ebuild,
+files/dracut-010-empty-etc-ld.so.conf.d.patch:
Rev-bump. Fixes #361603.
*dracut-010 (01 Apr 2011)
01 Apr 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-010.ebuild,
+files/dracut-010-multipath-udev-rules.patch:
Version bump. No, it's not a joke. It's generally a bugfix release.
31 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> dracut-007.ebuild,
dracut-008.ebuild, dracut-008-r1.ebuild, dracut-009-r1.ebuild:
Use virtual/eject instead of sys-apps/eject.
29 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
-files/dracut-002-add-missing-functions.patch,
-files/dracut-002-custom-paths.patch, -files/dracut-002-dir-symlinks.patch,
-files/dracut-002-gencmdline-check-for-keyboard-i18n-files.patch,
-files/dracut-002-makefile-add-with_switch_root.patch,
-files/dracut-002-unmount.patch,
-files/dracut-006-console_init-not-necessary.patch,
-files/dracut-006-dhcp6.patch, -files/dracut-006-dm-udev-rules.patch,
-files/dracut-006-lc-all-c.patch:
Removed patches of not existing ebuilds.
29 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -dracut-002-r1.ebuild,
-dracut-003.ebuild, -dracut-004.ebuild, -dracut-006.ebuild,
-dracut-006-r1.ebuild, -dracut-009.ebuild, metadata.xml:
Removed ancient versions and broken dracut-009.ebuild.
*dracut-009-r1 (29 Mar 2011)
29 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-009-r1.ebuild:
Not removing 97biosdevname module anymore.
*dracut-009 (28 Mar 2011)
28 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-009.ebuild,
+files/dracut-009-don-t-skip-zero-length-string-outfile.patch,
+files/dracut-009-multipath-udev-rules.patch:
Version bump.
This version provides new modules:
- biosdevname
- caps
sys-block/open-iscsi is restricted to 2.0.871.3 and above because of required
iBFT support which starts with this version.
net-misc/dhcp restricted to 4.2.1-r1 and above because dhcp-3 doesn't work
with Qemu and dhcp-4 is already ~arch keyworded.
21 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-002-r1.ebuild,
dracut-003.ebuild, dracut-004.ebuild, dracut-006.ebuild,
dracut-006-r1.ebuild, dracut-007.ebuild, dracut-008.ebuild,
dracut-008-r1.ebuild:
Tests are restricted for all ebuilds. See bug #298014.
16 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-002-r1.ebuild,
dracut-003.ebuild, dracut-004.ebuild, dracut-006.ebuild,
dracut-006-r1.ebuild, dracut-007.ebuild, dracut-008.ebuild,
dracut-008-r1.ebuild:
Project's home page update.
*dracut-008-r1 (07 Mar 2011)
07 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-008-r1.ebuild:
Revision bump. Added plymouth module. Related to bug #353577.
02 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-007.ebuild:
Propagated few improvements from dracut-008.ebuild. Resolves bug #348085.
Changes include:
- removed mount-boot and mkdir of /boot/dracut (user can create it
him/herself if really needed)
01 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-007.ebuild:
Added dependency on baselayout-1.12.14-r1 or above.
01 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> dracut-008.ebuild:
Added notice about new options format.
*dracut-008 (01 Mar 2011)
01 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> +dracut-008.ebuild,
+files/dracut-008-dm-udev-rules.patch,
+files/dracut-008-i18n-config-file-parsing-in-hostonly.patch,
+files/dracut-008-multipath-udev-rules.patch:
Version bump, resolves bug #353577
Changes:
- modules controlled by DRACUT_MODULES USE_EXPAND instead of regular IUSE
(except of 'debug' and 'selinux')
- removed mount-boot and mkdir of /boot/dracut (user can create it
him/herself if really needed)
- added dependency on baselayout-1.12.14-r1 or above
- few minor fixes in the ebuild like missing 'die' and so
Other notes:
- removing biosdevname module (there's no package yet)
- removing broken modules: bootchart and busybox
Thanks to
Lucian Muresan <lucianm@users.sourceforge.net>
and Xake <xake@rymdraket.net>
for report and comments.
09 Jan 2011; Mike Frysinger <vapier@gentoo.org> dracut-007.ebuild:
Use new mount-boot_pkg_postinst helper.
25 Aug 2010; Lance Albertson <ramereth@gentoo.org> dracut-006-r1.ebuild,
dracut-007.ebuild:
Fixes bug #334347 (dm related dependencies). Thanks to Akos Szalkai
<szalkai@szalkai.net> for report and patch.
*dracut-007 (17 Aug 2010)
*dracut-006-r1 (17 Aug 2010)
17 Aug 2010; Lance Albertson <ramereth@gentoo.org> +dracut-006-r1.ebuild,
+files/dracut-006-console_init-not-necessary.patch,
+files/dracut-006-dm-udev-rules.patch, +dracut-007.ebuild,
+files/dracut-007-dm-udev-rules.patch,
+files/dracut-007-multipath-udev-rules.patch, metadata.xml:
Version bump and revision update
Update 006 with patches from #329003, bump to 007 to resolve #331903.
Thanks to Amadeusz Żołnowski for contributing the ebuilds and patches.
*dracut-006 (07 Jul 2010)
07 Jul 2010; Lance Albertson <ramereth@gentoo.org> +dracut-006.ebuild,
+files/dracut-006-dhcp6.patch, +files/dracut-006-lc-all-c.patch,
metadata.xml:
Version bump, resolves bug #324705
Thanks to Amadeusz Żołnowski for submitting the ebuild and patches.
22 Mar 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
metadata.xml:
Fixed herd.
*dracut-004 (02 Feb 2010)
02 Feb 2010; Lance Albertson <ramereth@gentoo.org> -dracut-002.ebuild,
+dracut-004.ebuild:
Version bump
*dracut-003 (09 Dec 2009)
*dracut-002-r1 (09 Dec 2009)
09 Dec 2009; Lance Albertson <ramereth@gentoo.org> +dracut-002-r1.ebuild,
+files/dracut-002-makefile-add-with_switch_root.patch, +dracut-003.ebuild:
Version bump, fix switch_root issues #293178, & remove system deps
Force package dep >=sys-apps/util-linux-2.16 which includes switch_root by
default. Otherwise dracut would have a file conflict with util-linux.
Backport upstream Makefile patch b3611b525 for version 002 instead of patch
included in the bug report.
29 Sep 2009; Lance Albertson <ramereth@gentoo.org> dracut-002.ebuild,
+files/dracut-002-add-missing-functions.patch,
+files/dracut-002-gencmdline-check-for-keyboard-i18n-files.patch:
Fix dracut-gencmdline issues
*dracut-002 (27 Sep 2009)
27 Sep 2009; Lance Albertson <ramereth@gentoo.org> +dracut-002.ebuild,
+files/dracut-002-custom-paths.patch,
+files/dracut-002-dir-symlinks.patch, +files/dracut-002-unmount.patch,
+metadata.xml:
Initial ebuild based from #278442
Thanks to Ambroz Bizjak <ambro@b4ever.net> for the initial ebuild and
patches
|