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
|
#!/bin/bash
# $Id$
COPY_BINARIES=false
CPIO_ARGS="--quiet -o -H newc --owner root:root --force-local"
# The copy_binaries function is explicitly released under the CC0 license to
# encourage wide adoption and re-use. That means:
# - You may use the code of copy_binaries() as CC0 outside of genkernel
# - Contributions to this function are licensed under CC0 as well.
# - If you change it outside of genkernel, please consider sending your
# modifications back to genkernel@gentoo.org.
#
# On a side note: "Both public domain works and the simple license provided by
# CC0 are compatible with the GNU GPL."
# (from https://www.gnu.org/licenses/license-list.html#CC0)
#
# Written by:
# - Sebastian Pipping <sebastian@pipping.org> (error checking)
# - Robin H. Johnson <robbat2@gentoo.org> (complete rewrite)
# - Richard Yao <ryao@cs.stonybrook.edu> (original concept)
# Usage:
# copy_binaries DESTDIR BINARIES...
copy_binaries() {
local destdir=${1}
shift
if [ ! -f "${TEMP}/.binaries_copied" ]
then
touch "${TEMP}/.binaries_copied" \
|| gen_die "Failed to set '${TEMP}/.binaries_copied' marker!"
fi
local binary
for binary in "$@"
do
[[ -e "${binary}" ]] \
|| gen_die "Binary ${binary} could not be found"
if LC_ALL=C lddtree "${binary}" 2>&1 | fgrep -q 'not found'
then
gen_die "Binary ${binary} is linked to missing libraries and may need to be re-built"
fi
done
# This must be OUTSIDE the for loop, we only want to run lddtree etc ONCE.
# lddtree does not have the -V (version) nor the -l (list) options prior to version 1.18
(
if lddtree -V > /dev/null 2>&1
then
lddtree -l "$@" \
|| gen_die "Binary '${binary}' or some of its library dependencies could not be copied!"
else
lddtree "$@" \
| tr ')(' '\n' \
| awk '/=>/{ if($3 ~ /^\//){print $3}}' \
|| gen_die "Binary '${binary}' or some of its library dependencies could not be copied!"
fi
) \
| sort \
| uniq \
| cpio -p --make-directories --dereference --quiet "${destdir}" \
|| gen_die "Binary '${binary}' or some of its library dependencies could not be copied!"
}
log_future_cpio_content() {
if [[ "${LOGLEVEL}" -gt 1 ]]; then
echo =================================================================
echo "About to add these files from '${PWD}' to cpio archive:"
find . | xargs ls -ald
echo =================================================================
fi
}
append_devices() {
if [[ ! -x "${KERNEL_OUTPUTDIR}/usr/gen_init_cpio" ]]; then
compile_gen_init_cpio
fi
# WARNING, does NOT support appending to cpio!
cat >"${TEMP}/initramfs-base-temp.devices" <<-EOF
dir /dev 0755 0 0
nod /dev/console 660 0 0 c 5 1
nod /dev/null 660 0 0 c 1 3
nod /dev/zero 660 0 0 c 1 5
nod /dev/tty0 600 0 0 c 4 0
nod /dev/tty1 600 0 0 c 4 1
nod /dev/ttyS0 600 0 0 c 4 64
EOF
if [[ "${LOGLEVEL}" -gt 1 ]]; then
echo "$(getIndent 2)Adding devices to cpio:"
cat "${TEMP}/initramfs-base-temp.devices"
fi
${KERNEL_OUTPUTDIR}/usr/gen_init_cpio "${TEMP}/initramfs-base-temp.devices" >"${CPIO}" \
|| gen_die "Failed to add devices to cpio"
}
append_base_layout() {
local TDIR="${TEMP}/initramfs-base-temp"
if [ -d "${TDIR}" ]
then
rm -r "${TDIR}" || gen_die "Failed to clean out existing '${TDIR}'!"
fi
mkdir "${TDIR}" || gen_die "Failed to create '${TDIR}'!"
cd "${TDIR}" || gen_die "Failed to chdir to '${TDIR}'!"
local mydir=
for mydir in \
.initrd \
bin \
dev \
etc \
etc/mdev/helpers \
lib \
mnt \
proc \
run \
sbin \
sys \
tmp \
usr \
usr/bin \
usr/lib \
usr/sbin \
var/log \
; do
mkdir -p "${TDIR}"/${mydir} || gen_die "Failed to create '${TDIR}/${mydir}'!"
done
ln -s ../run var/run || gen_die "Failed to create symlink '${TDIR}/var/run' to '${TDIR}/run'!"
chmod 1777 "${TDIR}"/tmp || gen_die "Failed to chmod of '${TDIR}/tmp' to 1777!"
# In general, we don't really need lib{32,64} anymore because we now
# compile most stuff on our own and therefore don't have to deal with
# multilib anymore. However, when copy_binaries() was used to copy
# binaries from a multilib-enabled system, this could be a problem.
# So let's keep symlinks to ensure that all libraries will land in
# /lib.
local myliblink
for myliblink in \
lib32 \
lib64 \
usr/lib32 \
usr/lib64 \
; do
ln -s lib ${myliblink} || gen_die "Failed to create symlink '${TDIR}/${myliblink}' to '${TDIR}/lib'!"
done
print_info 2 "$(get_indent 2)>> Populating '/etc/fstab' ..."
echo "/dev/ram0 / ext2 defaults 0 0" > "${TDIR}"/etc/fstab \
|| gen_die "Failed to add /dev/ram0 to '${TDIR}/etc/fstab'!"
echo "proc /proc proc defaults 0 0" >> "${TDIR}"/etc/fstab \
|| gen_die "Failed to add proc to '${TDIR}/etc/fstab'!"
print_info 2 "$(get_indent 2)>> Adding /etc/ld.so.conf ..."
cat >"${TDIR}"/etc/ld.so.conf <<-EOF
# ld.so.conf generated by genkernel
include ld.so.conf.d/*.conf
/lib
/usr/lib
EOF
print_info 2 "$(get_indent 2)>> Adding misc files ..."
date -u '+%Y-%m-%d %H:%M:%S UTC' > "${TDIR}"/etc/build_date \
|| gen_die "Failed to create '${TDIR}/etc/build_date'!"
echo "Genkernel $GK_V" > "${TDIR}"/etc/build_id \
|| gen_die "Failed to create '${TDIR}/etc/build_id'!"
dd if=/dev/zero of="${TDIR}/var/log/lastlog" bs=1 count=0 seek=0 &>/dev/null \
|| die "Failed to create '${TDIR}/var/log/lastlog'!"
dd if=/dev/zero of="${TDIR}/var/log/wtmp" bs=1 count=0 seek=0 &>/dev/null \
|| die "Failed to create '${TDIR}/var/log/wtmp'!"
dd if=/dev/zero of="${TDIR}/run/utmp" bs=1 count=0 seek=0 &>/dev/null \
|| die "Failed to create '${TDIR}/run/utmp'!"
print_info 2 "$(get_indent 2)>> Adding mdev config ..."
install -m 644 -t "${TDIR}"/etc "${GK_SHARE}"/mdev/mdev.conf \
|| gen_die "Failed to install '${GK_SHARE}/mdev/mdev.conf'!"
install -m 755 -t "${TDIR}"/etc/mdev/helpers "${GK_SHARE}"/mdev/helpers/nvme \
|| gen_die "Failed to install '${GK_SHARE}/mdev/helpers/nvme'!"
install -m 755 -t "${TDIR}"/etc/mdev/helpers "${GK_SHARE}"/mdev/helpers/storage-device \
|| gen_die "Failed to install '${GK_SHARE}/mdev/helpers/storage-device'!"
cd "${TDIR}" || gen_die "Failed to chdir to '${TDIR}'!"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "Failed to append baselayout to cpio!"
}
append_busybox() {
local PN=busybox
local TDIR="${TEMP}/initramfs-${PN}-temp"
if [ -d "${TDIR}" ]
then
rm -r "${TDIR}" || gen_die "Failed to clean out existing '${TDIR}'!"
fi
populate_binpkg ${PN}
mkdir "${TDIR}" || gen_die "Failed to create '${TDIR}'!"
unpack "$(get_gkpkg_binpkg "${PN}")" "${TDIR}"
cd "${TDIR}" || gen_die "Failed to chdir to '${TDIR}'!"
# Delete unneeded files
rm -rf configs/
mkdir -p "${TDIR}"/usr/share/udhcpc || gen_die "Failed to create '${TDIR}/usr/share/udhcpc'!"
cp -a "${GK_SHARE}"/defaults/udhcpc.scripts usr/share/udhcpc/default.script 2>/dev/null \
|| gen_die "Failed to copy '${GK_SHARE}/defaults/udhcpc.scripts' to '${TDIR}/usr/share/udhcpc/default.script'!"
local myfile=
for myfile in \
bin/busybox \
usr/share/udhcpc/default.script \
; do
chmod +x "${TDIR}"/${myfile} || gen_die "Failed to chmod of '${TDIR}/${myfile}'!"
done
# Set up a few default symlinks
local required_applets='[ ash sh mount uname echo cut cat'
local required_applet=
for required_applet in ${required_applets}
do
ln -s busybox "${TDIR}"/bin/${required_applet} \
|| gen_die "Failed to create Busybox symlink for '${required_applet}' applet!"
done
# allow for DNS resolution
local libdir=$(get_chost_libdir)
mkdir -p "${TDIR}"/lib || gen_die "Failed to create '${TDIR}/lib'!"
copy_system_binaries "${TDIR}"/lib "${libdir}"/libnss_dns.so.2
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "Failed to append ${PN} to cpio!"
}
append_e2fsprogs(){
if [ -d "${TEMP}"/initramfs-e2fsprogs-temp ]
then
rm -r "${TEMP}"/initramfs-e2fsprogs-temp
fi
cd "${TEMP}" \
|| gen_die "cd '${TEMP}' failed"
mkdir -p initramfs-e2fsprogs-temp
copy_binaries "${TEMP}"/initramfs-e2fsprogs-temp/ /sbin/{e2fsck,mke2fs}
cd "${TEMP}"/initramfs-e2fsprogs-temp \
|| gen_die "cd '${TEMP}/initramfs-e2fsprogs-temp' failed"
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
rm -rf "${TEMP}"/initramfs-e2fsprogs-temp > /dev/null
}
append_blkid(){
if [ -d "${TEMP}/initramfs-blkid-temp" ]
then
rm -r "${TEMP}/initramfs-blkid-temp/"
fi
cd ${TEMP}
mkdir -p "${TEMP}/initramfs-blkid-temp/"
if isTrue "${DISKLABEL}"; then
copy_binaries "${TEMP}"/initramfs-blkid-temp/ /sbin/blkid
fi
cd "${TEMP}/initramfs-blkid-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing blkid cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-blkid-temp" > /dev/null
}
#append_fuse() {
# if [ -d "${TEMP}/initramfs-fuse-temp" ]
# then
# rm -r "${TEMP}/initramfs-fuse-temp"
# fi
# cd ${TEMP}
# mkdir -p "${TEMP}/initramfs-fuse-temp/lib/"
# tar -C "${TEMP}/initramfs-fuse-temp/lib/" -xf "${FUSE_BINCACHE}"
# cd "${TEMP}/initramfs-fuse-temp/"
# find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
# || gen_die "compressing fuse cpio"
# rm -rf "${TEMP}/initramfs-fuse-temp" > /dev/null
#}
append_unionfs_fuse() {
if [ -d "${TEMP}/initramfs-unionfs-fuse-temp" ]
then
rm -r "${TEMP}/initramfs-unionfs-fuse-temp"
fi
compile_unionfs_fuse
cd ${TEMP}
mkdir -p "${TEMP}/initramfs-unionfs-fuse-temp/sbin/"
bzip2 -dc "${UNIONFS_FUSE_BINCACHE}" > "${TEMP}/initramfs-unionfs-fuse-temp/sbin/unionfs" ||
gen_die 'Could not extract unionfs-fuse binary cache!'
chmod a+x "${TEMP}/initramfs-unionfs-fuse-temp/sbin/unionfs"
cd "${TEMP}/initramfs-unionfs-fuse-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing unionfs fuse cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-unionfs-fuse-temp" > /dev/null
}
#append_suspend(){
# if [ -d "${TEMP}/initramfs-suspend-temp" ];
# then
# rm -r "${TEMP}/initramfs-suspend-temp/"
# fi
# print_info 1 "$(getIndent 2)SUSPEND: Adding support (compiling binaries)..."
# compile_suspend
# mkdir -p "${TEMP}/initramfs-suspend-temp/"
# /bin/tar -xpf "${SUSPEND_BINCACHE}" -C "${TEMP}/initramfs-suspend-temp" ||
# gen_die "Could not extract suspend binary cache!"
# mkdir -p "${TEMP}/initramfs-suspend-temp/etc"
# cp -f /etc/suspend.conf "${TEMP}/initramfs-suspend-temp/etc" ||
# gen_die 'Could not copy /etc/suspend.conf'
# cd "${TEMP}/initramfs-suspend-temp/"
# log_future_cpio_content
# find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
# || gen_die "compressing suspend cpio"
# rm -r "${TEMP}/initramfs-suspend-temp/"
#}
append_multipath(){
if [ -d "${TEMP}/initramfs-multipath-temp" ]
then
rm -r "${TEMP}/initramfs-multipath-temp"
fi
print_info 1 "$(getIndent 2)Multipath: Adding support (using system binaries)..."
mkdir -p "${TEMP}"/initramfs-multipath-temp/{bin,etc,sbin,lib}/
# Copy files
copy_binaries "${TEMP}/initramfs-multipath-temp" \
/bin/mountpoint \
/sbin/{multipath,kpartx,dmsetup} \
/{lib,lib64}/{udev/scsi_id,multipath/*so}
# Support multipath-tools-0.4.8 and previous
if [ -x /sbin/mpath_prio_* ]
then
copy_binaries "${TEMP}/initramfs-multipath-temp" \
/sbin/mpath_prio_*
fi
if [ -x /sbin/multipath ]
then
cp /etc/multipath.conf "${TEMP}/initramfs-multipath-temp/etc/" || gen_die 'could not copy /etc/multipath.conf please check this'
fi
# /etc/scsi_id.config does not exist in newer udevs
# copy it optionally.
if [ -x /sbin/scsi_id -a -f /etc/scsi_id.config ]
then
cp /etc/scsi_id.config "${TEMP}/initramfs-multipath-temp/etc/" || gen_die 'could not copy scsi_id.config'
fi
cd "${TEMP}/initramfs-multipath-temp"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing multipath cpio"
cd "${TEMP}"
rm -r "${TEMP}/initramfs-multipath-temp/"
}
append_dmraid(){
if [ -d "${TEMP}/initramfs-dmraid-temp" ]
then
rm -r "${TEMP}/initramfs-dmraid-temp/"
fi
print_info 1 "$(getIndent 2)DMRAID: Adding support (compiling binaries)..."
compile_dmraid
mkdir -p "${TEMP}/initramfs-dmraid-temp/"
/bin/tar -xpf "${DMRAID_BINCACHE}" -C "${TEMP}/initramfs-dmraid-temp" ||
gen_die "Could not extract dmraid binary cache!";
[ -x /sbin/dmsetup -a -x /sbin/kpartx ] && copy_binaries \
"${TEMP}/initramfs-dmraid-temp/" \
/sbin/{kpartx,dmsetup}
cd "${TEMP}/initramfs-dmraid-temp/"
module_ext=$(modules_kext)
RAID456=`find . -type f -name raid456${module_ext}`
if [ -n "${RAID456}" ]
then
cd "${RAID456/raid456${module_ext}/}"
ln -sf raid456.kp $(basename ${RAID456})
cd "${TEMP}/initramfs-dmraid-temp/"
fi
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing dmraid cpio"
cd "${TEMP}"
rm -r "${TEMP}/initramfs-dmraid-temp/"
}
append_iscsi(){
if [ -d "${TEMP}/initramfs-iscsi-temp" ]
then
rm -r "${TEMP}/initramfs-iscsi-temp/"
fi
print_info 1 "$(getIndent 2)iSCSI: Adding support (compiling binaries)..."
compile_iscsi
cd ${TEMP}
mkdir -p "${TEMP}/initramfs-iscsi-temp/bin/"
/bin/bzip2 -dc "${ISCSI_BINCACHE}" > "${TEMP}/initramfs-iscsi-temp/bin/iscsistart" ||
gen_die "Could not extract iscsi binary cache!"
chmod a+x "${TEMP}/initramfs-iscsi-temp/bin/iscsistart"
cd "${TEMP}/initramfs-iscsi-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing iscsi cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-iscsi-temp" > /dev/null
}
append_lvm(){
if [ -d "${TEMP}/initramfs-lvm-temp" ]
then
rm -r "${TEMP}/initramfs-lvm-temp/"
fi
cd ${TEMP}
mkdir -p "${TEMP}/initramfs-lvm-temp/bin/"
mkdir -p "${TEMP}/initramfs-lvm-temp/sbin/"
mkdir -p "${TEMP}/initramfs-lvm-temp/etc/lvm/"
mkdir -p "${TEMP}/initramfs-lvm-temp/etc/lvm/cache"
if false && [ -e '/sbin/lvm.static' ]
then
print_info 1 "$(getIndent 2)LVM: Adding support (using local static binary /sbin/lvm.static)..."
cp /sbin/lvm.static "${TEMP}/initramfs-lvm-temp/sbin/lvm" ||
gen_die 'Could not copy over lvm!'
# See bug 382555
if [ -e '/sbin/dmsetup.static' ]
then
cp /sbin/dmsetup.static "${TEMP}/initramfs-lvm-temp/bin/dmsetup"
fi
elif false && [ -e '/sbin/lvm' ] && LC_ALL="C" ldd /sbin/lvm|grep -q 'not a dynamic executable'
then
print_info 1 "$(getIndent 2)LVM: Adding support (using local static binary /sbin/lvm)..."
cp /sbin/lvm "${TEMP}/initramfs-lvm-temp/sbin/lvm" ||
gen_die 'Could not copy over lvm!'
# See bug 382555
if [ -e '/sbin/dmsetup' ] && LC_ALL="C" ldd /sbin/dmsetup | grep -q 'not a dynamic executable'
then
cp /sbin/dmsetup "${TEMP}/initramfs-lvm-temp/bin/dmsetup"
fi
else
print_info 1 "$(getIndent 2)LVM: Adding support (compiling binaries)..."
compile_lvm || gen_die "Could not compile LVM"
/bin/tar -xpf "${LVM_BINCACHE}" -C "${TEMP}/initramfs-lvm-temp" ||
gen_die "Could not extract lvm binary cache!";
# Remove any dynamic binaries that exist, so the rest of the code will
# fail better if something is missing
for f in ${TEMP}/initramfs-lvm-temp/{bin,sbin}/* ; do
[ -x "$f" ] && LC_ALL="C" ldd $f | grep -sq '(' && rm -f "$f"
done
# Now move the static binaries into good places.
mv ${TEMP}/initramfs-lvm-temp/sbin/lvm.static ${TEMP}/initramfs-lvm-temp/sbin/lvm ||
gen_die 'LVM error: Could not move lvm.static to lvm!'
# See bug 382555; use /sbin/dmsetup to match multipath code
mv ${TEMP}/initramfs-lvm-temp/sbin/dmsetup.static ${TEMP}/initramfs-lvm-temp/sbin/dmsetup ||
gen_die 'LVM error: Could not move dmsetup.static to dmsetup!'
# Clean up other stuff we don't need
rm -rf ${TEMP}/initramfs-lvm-temp/{lib*,share,man,include,sbin/dmeventd.static}
fi
# Include a symlink in the old location, for people with other appended
# scripts that might look for it in the old location.
ln -s ../sbin/lvm "${TEMP}/initramfs-lvm-temp/bin/lvm"
# Include the LVM config now
if [ -x /sbin/lvm -o -x /bin/lvm ]
then
# lvm dumpconfig 2>&1 > /dev/null || gen_die 'Could not copy over lvm.conf!'
# ret=$?
# if [ ${ret} != 0 ]
# then
cp /etc/lvm/lvm.conf "${TEMP}/initramfs-lvm-temp/etc/lvm/" || \
gen_die 'Could not copy over lvm.conf!'
# else
# gen_die 'Could not copy over lvm.conf!'
# fi
# Some LVM config options need changing, because the functionality is
# not compiled in:
sed -r -i \
-e '/^[[:space:]]*obtain_device_list_from_udev/s,=.*,= 0,g' \
-e '/^[[:space:]]*use_lvmetad/s,=.*,= 0,g' \
-e '/^[[:space:]]*monitoring/s,=.*,= 0,g' \
-e '/^[[:space:]]*external_device_info_source/s,=.*,= "none",g' \
-e '/^[[:space:]]*units/s,=.*"r",= "h",g' \
"${TEMP}/initramfs-lvm-temp/etc/lvm/lvm.conf" || \
gen_die 'Could not sed lvm.conf!'
fi
cd "${TEMP}/initramfs-lvm-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing lvm cpio"
cd "${TEMP}"
rm -r "${TEMP}/initramfs-lvm-temp/"
}
append_mdadm(){
if [ -d "${TEMP}/initramfs-mdadm-temp" ]
then
rm -r "${TEMP}/initramfs-mdadm-temp/"
fi
cd ${TEMP}
mkdir -p "${TEMP}/initramfs-mdadm-temp/etc/"
mkdir -p "${TEMP}/initramfs-mdadm-temp/sbin/"
if isTrue "${MDADM}"
then
if [ -n "${MDADM_CONFIG}" ]
then
if [ -f "${MDADM_CONFIG}" ]
then
cp -a "${MDADM_CONFIG}" "${TEMP}/initramfs-mdadm-temp/etc/mdadm.conf" \
|| gen_die "Could not copy mdadm.conf!"
else
gen_die "${MDADM_CONFIG} does not exist!"
fi
else
print_info 1 "$(getIndent 2)MDADM: Skipping inclusion of mdadm.conf"
fi
if [ -e '/sbin/mdadm' ] && LC_ALL="C" ldd /sbin/mdadm | grep -q 'not a dynamic executable' \
&& [ -e '/sbin/mdmon' ] && LC_ALL="C" ldd /sbin/mdmon | grep -q 'not a dynamic executable'
then
print_info 1 "$(getIndent 2)MDADM: Adding support (using local static binaries /sbin/mdadm and /sbin/mdmon)..."
cp /sbin/mdadm /sbin/mdmon "${TEMP}/initramfs-mdadm-temp/sbin/" ||
gen_die 'Could not copy over mdadm!'
else
print_info 1 "$(getIndent 2)MDADM: Adding support (compiling binaries)..."
compile_mdadm
/bin/tar -xpf "${MDADM_BINCACHE}" -C "${TEMP}/initramfs-mdadm-temp" ||
gen_die "Could not extract mdadm binary cache!";
fi
fi
cd "${TEMP}/initramfs-mdadm-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing mdadm cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-mdadm-temp" > /dev/null
}
append_zfs(){
if [ -d "${TEMP}/initramfs-zfs-temp" ]
then
rm -r "${TEMP}/initramfs-zfs-temp"
fi
mkdir -p "${TEMP}/initramfs-zfs-temp/etc/zfs"
# Copy files to /etc/zfs
for i in zdev.conf zpool.cache
do
if [ -f /etc/zfs/${i} ]
then
print_info 1 "$(getIndent 2)zfs: >> Including ${i}"
cp -a "/etc/zfs/${i}" "${TEMP}/initramfs-zfs-temp/etc/zfs" 2> /dev/null \
|| gen_die "Could not copy file ${i} for ZFS"
fi
done
if [ -f "/etc/hostid" ]
then
local _hostid=$(hostid)
print_info 1 "$(getIndent 2)zfs: >> Embedding hostid '${_hostid}' into initramfs..."
cp -a /etc/hostid "${TEMP}/initramfs-zfs-temp/etc" 2> /dev/null \
|| gen_die "Failed to copy /etc/hostid"
echo "${_hostid}" > "${TEMP}/.embedded_hostid"
else
print_info 2 "$(getIndent 2)zfs: /etc/hostid not found; You must use 'spl_hostid' kernel command-line parameter!"
fi
copy_binaries "${TEMP}/initramfs-zfs-temp" /sbin/{mount.zfs,zdb,zfs,zpool}
cd "${TEMP}/initramfs-zfs-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing zfs cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-zfs-temp" > /dev/null
}
append_btrfs() {
if [ -d "${TEMP}/initramfs-btrfs-temp" ]
then
rm -r "${TEMP}/initramfs-btrfs-temp"
fi
mkdir -p "${TEMP}/initramfs-btrfs-temp"
# Copy binaries
copy_binaries "${TEMP}/initramfs-btrfs-temp" /sbin/btrfs
cd "${TEMP}/initramfs-btrfs-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing btrfs cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-btrfs-temp" > /dev/null
}
append_libgcc_s() {
if [ -d "${TEMP}/initramfs-libgcc_s-temp" ]
then
rm -r "${TEMP}/initramfs-libgcc_s-temp"
fi
mkdir -p "${TEMP}/initramfs-libgcc_s-temp"
# Include libgcc_s.so.1:
# - workaround for zfsonlinux/zfs#4749
# - required for LUKS2 (libargon2 uses pthread_cancel)
local libgccpath
if type gcc-config 2>&1 1>/dev/null; then
libgccpath="/usr/lib/gcc/$(s=$(gcc-config -c); echo ${s%-*}/${s##*-})/libgcc_s.so.1"
fi
if [[ ! -f ${libgccpath} ]]; then
libgccpath="/usr/lib/gcc/*/*/libgcc_s.so.1"
fi
# Copy binaries
copy_binaries "${TEMP}/initramfs-libgcc_s-temp" ${libgccpath}
cd "${TEMP}/initramfs-libgcc_s-temp/lib64"
ln -s "..${libgccpath}"
cd "${TEMP}/initramfs-libgcc_s-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing libgcc_s cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-libgcc_s-temp" > /dev/null
}
append_linker() {
if [ -d "${TEMP}/initramfs-linker-temp" ]
then
rm -r "${TEMP}/initramfs-linker-temp"
fi
mkdir -p "${TEMP}/initramfs-linker-temp/etc"
if [ -e "/etc/ld.so.conf" ]
then
cp "/etc/ld.so.conf" "${TEMP}/initramfs-linker-temp/etc/" 2> /dev/null \
|| gen_die "Could not copy ld.so.conf"
fi
if [ -e "/etc/ld.so.cache" ]
then
cp "/etc/ld.so.cache" "${TEMP}/initramfs-linker-temp/etc/" 2> /dev/null \
|| gen_die "Could not copy ld.so.cache"
fi
if [ -d "/etc/ld.so.conf.d" ]
then
mkdir -p "${TEMP}/initramfs-linker-temp/etc/ld.so.conf.d"
cp -r "/etc/ld.so.conf.d" "${TEMP}/initramfs-linker-temp/etc/" 2> /dev/null \
|| gen_die "Could not copy ld.so.conf.d"
fi
cd "${TEMP}/initramfs-linker-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing linker cpio"
cd "${TEMP}"
rm -rf "${TEMP}/initramfs-linker-temp" > /dev/null
}
append_splash(){
splash_geninitramfs=`which splash_geninitramfs 2>/dev/null`
if [ -x "${splash_geninitramfs}" ] && grep -q -E '^CONFIG_FRAMEBUFFER_CONSOLE=[y|m]' ${KERNEL_CONFIG}
then
[ -z "${SPLASH_THEME}" ] && [ -e /etc/conf.d/splash ] && source /etc/conf.d/splash
[ -z "${SPLASH_THEME}" ] && SPLASH_THEME=default
print_info 1 "$(getIndent 1)>> Installing splash [ using the ${SPLASH_THEME} theme ]..."
if [ -d "${TEMP}/initramfs-splash-temp" ]
then
rm -r "${TEMP}/initramfs-splash-temp/"
fi
mkdir -p "${TEMP}/initramfs-splash-temp"
cd /
local tmp=""
[ -n "${SPLASH_RES}" ] && tmp="-r ${SPLASH_RES}"
splash_geninitramfs -c "${TEMP}/initramfs-splash-temp" ${tmp} ${SPLASH_THEME} || gen_die "Could not build splash cpio archive"
if [ -e "/usr/share/splashutils/initrd.splash" ]; then
mkdir -p "${TEMP}/initramfs-splash-temp/etc"
cp -f "/usr/share/splashutils/initrd.splash" "${TEMP}/initramfs-splash-temp/etc"
fi
cd "${TEMP}/initramfs-splash-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing splash cpio"
cd "${TEMP}"
rm -r "${TEMP}/initramfs-splash-temp/"
else
print_warning 1 "$(getIndent 1)>> No splash detected; skipping!"
fi
}
append_overlay(){
cd ${INITRAMFS_OVERLAY}
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing overlay cpio"
}
append_luks() {
local _luks_error_format="LUKS support cannot be included: %s. Please emerge sys-fs/cryptsetup."
local _luks_source=/sbin/cryptsetup
local _luks_dest=/sbin/cryptsetup
if [ -d "${TEMP}/initramfs-luks-temp" ]
then
rm -r "${TEMP}/initramfs-luks-temp/"
fi
mkdir -p "${TEMP}/initramfs-luks-temp/lib/luks/"
mkdir -p "${TEMP}/initramfs-luks-temp/sbin"
cd "${TEMP}/initramfs-luks-temp"
if isTrue "${LUKS}"
then
[ -x "${_luks_source}" ] \
|| gen_die "$(printf "${_luks_error_format}" "no file ${_luks_source}")"
print_info 1 "$(getIndent 2)LUKS: Adding support (using system binaries)..."
copy_binaries "${TEMP}/initramfs-luks-temp/" /sbin/cryptsetup
fi
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "appending cryptsetup to cpio"
cd "${TEMP}"
rm -r "${TEMP}/initramfs-luks-temp/"
}
append_dropbear(){
if [ -d "${TEMP}"/initramfs-dropbear-temp ]
then
rm -r "${TEMP}"/initramfs-dropbear-temp
fi
if [ ! -d /etc/dropbear ]
then
mkdir /etc/dropbear
fi
if [ ! -e /etc/dropbear/dropbear_rsa_host_key ]
then
if [ -e /usr/bin/dropbearconvert -a /etc/ssh/ssh_host_rsa_key ]
then
if /usr/bin/dropbearconvert openssh dropbear /etc/ssh/ssh_host_rsa_key /etc/dropbear/dropbear_rsa_host_key
then
print_info 1 "$(getIndent 2)SSH: >> /etc/ssh/ssh_host_rsa_key converted into /etc/dropbear/dropbear_rsa_host_key"
else
gen_die "RSA host key conversion using dropbearconvert failed"
fi
else
if /usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key -s 4096 > /dev/null
then
print_info 1 "$(getIndent 2)SSH: >> New dropbear RSA host key /etc/dropbear/dropbear_rsa_host_key created"
else
gen_die "RSA host key generation using dropbearkey failed"
fi
fi
fi
if [ ! -e /etc/dropbear/dropbear_dss_host_key ]
then
if /usr/bin/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key > /dev/null
then
print_info 1 "$(getIndent 2)SSH: >> New dropbear DSS host key /etc/dropbear/dropbear_dss_host_key created"
else
gen_die "DSS host key generation using dropbearkey failed"
fi
fi
cd "${TEMP}" \
|| gen_die "cd '${TEMP}' failed"
mkdir -p ${TEMP}/initramfs-dropbear-temp/var/run
mkdir -p ${TEMP}/initramfs-dropbear-temp/var/log
mkdir -p ${TEMP}/initramfs-dropbear-temp/etc/dropbear
mkdir -p ${TEMP}/initramfs-dropbear-temp/bin
mkdir -p ${TEMP}/initramfs-dropbear-temp/root/.ssh
cp -L ${GK_SHARE}/defaults/login-remote.sh ${TEMP}/initramfs-dropbear-temp/bin/ || gen_die "failed to copy defaults/login-remote.sh"
cp -L /etc/dropbear/{dropbear_rsa_host_key,dropbear_dss_host_key} ${TEMP}/initramfs-dropbear-temp/etc/dropbear/ || gen_die "failed to copy dropbear host key(s)"
cp -L /etc/dropbear/authorized_keys ${TEMP}/initramfs-dropbear-temp/root/.ssh || gen_die "failed to copy /etc/dropbear/authorized_keys. Did you forget to configure dropbear?"
cp -L /etc/localtime ${TEMP}/initramfs-dropbear-temp/etc/ || gen_die "failed to copy /etc/localtime. Please set system's timezone!"
if [ ${ARCH} = "x86_64" ]
then
mkdir -p ${TEMP}/initramfs-dropbear-temp/lib64
cp -L /lib64/libnss_files.so.2 ${TEMP}/initramfs-dropbear-temp/lib64/ || gen_die "failed to copy libnss_files.so.2"
else
mkdir -p ${TEMP}/initramfs-dropbear-temp/lib
cp -L /lib/libnss_files.so.2 ${TEMP}/initramfs-dropbear-temp/lib/ || gen_die "failed to libnss_files.so.2"
fi
sed "s/compat/files/g" /etc/nsswitch.conf > ${TEMP}/initramfs-dropbear-temp/etc/nsswitch.conf || gen_die "failed to modify /etc/nsswitch.conf"
echo "root:x:0:0:root:/root:/bin/login-remote.sh" > ${TEMP}/initramfs-dropbear-temp/etc/passwd
echo "/bin/login-remote.sh" > ${TEMP}/initramfs-dropbear-temp/etc/shells
echo "root:!:0:0:99999:7:::" > ${TEMP}/initramfs-dropbear-temp/etc/shadow
echo "root:x:0:root" > ${TEMP}/initramfs-dropbear-temp/etc/group
echo "" > ${TEMP}/initramfs-dropbear-temp/var/log/lastlog
chmod 0755 ${TEMP}/initramfs-dropbear-temp/bin/login-remote.sh
chmod 0700 ${TEMP}/initramfs-dropbear-temp/root/.ssh
chmod 0640 ${TEMP}/initramfs-dropbear-temp/etc/shadow
chmod 0644 ${TEMP}/initramfs-dropbear-temp/etc/passwd
chmod 0644 ${TEMP}/initramfs-dropbear-temp/etc/group
mkfifo ${TEMP}/initramfs-dropbear-temp/etc/dropbear/fifo_root
mkfifo ${TEMP}/initramfs-dropbear-temp/etc/dropbear/fifo_swap
copy_binaries "${TEMP}"/initramfs-dropbear-temp/ /usr/sbin/dropbear \
/bin/login /usr/bin/passwd
log_future_cpio_content
cd "${TEMP}"/initramfs-dropbear-temp \
|| gen_die "cd '${TEMP}/initramfs-dropbear-temp' failed"
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
rm -rf "${TEMP}"/initramfs-dropbear-temp > /dev/null
}
append_firmware() {
if [ ! -d "${FIRMWARE_DIR}" ]
then
gen_die "specified firmware directory (${FIRMWARE_DIR}) does not exist"
fi
if [ -d "${TEMP}/initramfs-firmware-temp" ]
then
rm -r "${TEMP}/initramfs-firmware-temp/"
fi
mkdir -p "${TEMP}/initramfs-firmware-temp/lib/firmware"
cd "${TEMP}/initramfs-firmware-temp"
if [ -n "${FIRMWARE_FILES}" ]
then
pushd ${FIRMWARE_DIR} >/dev/null
cp -rL --parents --target-directory="${TEMP}/initramfs-firmware-temp/lib/firmware/" ${FIRMWARE_FILES}
popd >/dev/null
else
cp -a "${FIRMWARE_DIR}"/* ${TEMP}/initramfs-firmware-temp/lib/firmware/
fi
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "appending firmware to cpio"
cd "${TEMP}"
rm -r "${TEMP}/initramfs-firmware-temp/"
}
append_gpg() {
if [ -d "${TEMP}/initramfs-gpg-temp" ]
then
rm -r "${TEMP}/initramfs-gpg-temp"
fi
cd ${TEMP}
mkdir -p "${TEMP}/initramfs-gpg-temp/sbin/"
if [ ! -e ${GPG_BINCACHE} ] ; then
print_info 1 "$(getIndent 2)GPG: Adding support (compiling binaries)..."
compile_gpg
fi
bzip2 -dc "${GPG_BINCACHE}" > "${TEMP}/initramfs-gpg-temp/sbin/gpg" ||
gen_die 'Could not extract gpg binary cache!'
chmod a+x "${TEMP}/initramfs-gpg-temp/sbin/gpg"
cd "${TEMP}/initramfs-gpg-temp/"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
rm -rf "${TEMP}/initramfs-gpg-temp" > /dev/null
}
print_list()
{
local x
for x in ${*}
do
echo ${x}
done
}
append_modules() {
local group
local group_modules
local MOD_EXT="$(modules_kext)"
if [ -d "${TEMP}/initramfs-modules-${KV}-temp" ]
then
rm -r "${TEMP}/initramfs-modules-${KV}-temp/"
fi
print_info 2 "$(getIndent 2)modules: >> Copying modules to initramfs..."
if [ "${INSTALL_MOD_PATH}" != '' ]
then
cd ${INSTALL_MOD_PATH} || gen_die "Failed to chdir into '${INSTALL_MOD_PATH}'!"
else
cd / || gen_die "Failed to chdir into '/'!"
fi
local _MODULES_DIR="${PWD%/}/lib/modules/${KV}"
if [ ! -d "${_MODULES_DIR}" ]
then
error_message="'${_MODULES_DIR}' does not exist! Did you forget"
error_message+=" to compile kernel before building initramfs?"
error_message+=" If you know what you are doing please set '--no-ramdisk-modules'."
gen_die "${error_message}"
fi
mkdir -p "${TEMP}/initramfs-modules-${KV}-temp/lib/modules/${KV}"
local n_copied_modules=0
for i in `gen_dep_list`
do
mymod=`find "${_MODULES_DIR}" -name "${i}${MOD_EXT}" 2>/dev/null| head -n 1 `
if [ -z "${mymod}" ]
then
print_warning 2 "$(getIndent 3) - ${i}${MOD_EXT} not found; skipping..."
continue;
fi
print_info 2 "$(getIndent 3) - Copying ${i}${MOD_EXT}..."
cp -ax --parents "${mymod}" "${TEMP}/initramfs-modules-${KV}-temp" ||
gen_die "failed to copy '${mymod}' to '${TEMP}/initramfs-modules-${KV}-temp'"
n_copied_modules=$[$n_copied_modules+1]
done
if [ ${n_copied_modules} -eq 0 ]
then
print_warning 1 "$(getIndent 2)modules: ${n_copied_modules} modules copied. Is that correct?"
else
print_info 2 "$(getIndent 2)modules: ${n_copied_modules} modules copied!"
fi
cp -ax --parents "${_MODULES_DIR}"/modules* ${TEMP}/initramfs-modules-${KV}-temp ||
gen_die "failed to copy '${_MODULES_DIR}/modules*' to '${TEMP}/initramfs-modules-${KV}-temp'"
mkdir -p "${TEMP}/initramfs-modules-${KV}-temp/etc/modules"
for group_modules in ${!MODULES_*}; do
group="$(echo $group_modules | cut -d_ -f2- | tr "[:upper:]" "[:lower:]")"
print_list ${!group_modules} > "${TEMP}/initramfs-modules-${KV}-temp/etc/modules/${group}"
done
cd "${TEMP}/initramfs-modules-${KV}-temp/"
log_future_cpio_content
find . | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing modules cpio"
cd "${TEMP}"
rm -r "${TEMP}/initramfs-modules-${KV}-temp/"
}
append_modprobed() {
local TDIR="${TEMP}/initramfs-modprobe.d-temp"
if [ -d "${TDIR}" ]
then
rm -r "${TDIR}"
fi
mkdir -p "${TDIR}/etc"
cp -r "/etc/modprobe.d" "${TDIR}/etc/modprobe.d"
cd "${TDIR}"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "compressing modprobe.d cpio"
cd "${TEMP}"
rm -rf "${TDIR}" > /dev/null
}
# check for static linked file with objdump
is_static() {
LANG="C" LC_ALL="C" objdump -T $1 2>&1 | grep "not a dynamic object" > /dev/null
return $?
}
append_auxilary() {
local TDIR="${TEMP}/initramfs-aux-temp"
if [ -d "${TDIR}" ]
then
rm -r "${TDIR}" || gen_die "Failed to clean out existing '${TDIR}'!"
fi
mkdir "${TDIR}" || gen_die "Failed to create '${TDIR}'!"
cd "${TDIR}" || gen_die "Failed to chdir to '${TDIR}'!"
local mydir=
for mydir in \
etc \
sbin \
; do
mkdir -p "${TDIR}"/${mydir} || gen_die "Failed to create '${TDIR}/${mydir}'!"
done
local mylinuxrc=
if [ -f "${CMD_LINUXRC}" ]
then
mylinuxrc="${CMD_LINUXRC}"
print_info 2 "$(get_indent 2)>> Copying user specified linuxrc '${mylinuxrc}' to '/init' ..."
cp -aL "${mylinuxrc}" "${TDIR}"/init 2>/dev/null \
|| gen_die "Failed to copy '${mylinuxrc}' to '${TDIR}/init'!"
elif isTrue "${NETBOOT}"
then
mylinuxrc="${GK_SHARE}/netboot/linuxrc.x"
print_info 2 "$(get_indent 2)>> Copying netboot specific linuxrc '${mylinuxrc}' to '/init' ..."
cp -aL "${mylinuxrc}" "${TDIR}"/init 2>/dev/null \
|| gen_die "Failed to copy '${mylinuxrc}' to '${TDIR}/init'!"
else
if [ -f "${GK_SHARE}/arch/${ARCH}/linuxrc" ]
then
mylinuxrc="${GK_SHARE}/arch/${ARCH}/linuxrc"
else
mylinuxrc="${GK_SHARE}/defaults/linuxrc"
fi
print_info 2 "$(get_indent 2)>> Copying '${mylinuxrc}' to '/init' ..."
cp -aL "${mylinuxrc}" "${TDIR}"/init 2>/dev/null \
|| gen_die "Failed to copy '${mylinuxrc}' to '${TDIR}/init'!"
fi
# Make sure it's executable
chmod 0755 "${TDIR}"/init || gen_die "Failed to chmod of '${TDIR}/init' to 0755!"
# Make a symlink to init .. in case we are bundled inside the kernel as one
# big cpio.
pushd "${TDIR}" &>/dev/null || gen_die "Failed to chdir to '${TDIR}'!"
ln -s init linuxrc || gen_die "Failed to create symlink 'linuxrc' to 'init'!"
popd &>/dev/null || gen_die "Failed to chdir!"
local myinitrd_script=
if [ -f "${GK_SHARE}/arch/${ARCH}/initrd.scripts" ]
then
myinitrd_script="${GK_SHARE}/arch/${ARCH}/initrd.scripts"
else
myinitrd_script="${GK_SHARE}/defaults/initrd.scripts"
fi
print_info 2 "$(get_indent 2)>> Copying '${myinitrd_script}' to '/etc/initrd.scripts' ..."
cp -aL "${myinitrd_script}" "${TDIR}"/etc/initrd.scripts 2>/dev/null \
|| gen_die "Failed to copy '${myinitrd_script}' to '${TDIR}/etc/initrd.scripts'!"
local myinitrd_default=
if [ -f "${GK_SHARE}/arch/${ARCH}/initrd.defaults" ]
then
myinitrd_default="${GK_SHARE}/arch/${ARCH}/initrd.defaults"
else
myinitrd_default="${GK_SHARE}/defaults/initrd.defaults"
fi
print_info 2 "$(get_indent 2)>> Copying '${myinitrd_default}' to '/etc/initrd.defaults' ..."
cp -aL "${myinitrd_default}" "${TDIR}"/etc/initrd.defaults 2>/dev/null \
|| gen_die "Failed to copy '${myinitrd_default}' to '${TDIR}/etc/initrd.defaults'!"
if [ -n "${REAL_ROOT}" ]
then
print_info 2 "$(get_indent 2)>> Setting REAL_ROOT to '${REAL_ROOT}' in '/etc/initrd.defaults' ..."
sed -i "s:^REAL_ROOT=.*$:REAL_ROOT='${REAL_ROOT}':" \
"${TDIR}"/etc/initrd.defaults \
|| gen_die "Failed to set REAL_ROOT in '${TDIR}/etc/initrd.defaults'!"
fi
printf "%s" 'HWOPTS="$HWOPTS ' >> "${TDIR}"/etc/initrd.defaults \
|| gen_die "Failed to add HWOPTS to '${TDIR}/etc/initrd.defaults'!"
local group_modules group
for group_modules in ${!MODULES_*}; do
group="$(echo ${group_modules} | cut -d_ -f2 | tr "[:upper:]" "[:lower:]")"
printf "%s" "${group} " >> "${TDIR}"/etc/initrd.defaults \
|| gen_die "Failed to add MODULES_* to '${TDIR}/etc/initrd.defaults'!"
done
echo '"' >> "${TDIR}"/etc/initrd.defaults \
|| gen_die "Failed to add closing '\"' to '${TDIR}/etc/initrd.defaults'!"
if isTrue "${CMD_KEYMAP}"
then
print_info 2 "$(get_indent 2)>> Copying keymaps ..."
mkdir -p "${TDIR}"/lib || gen_die "Failed to create '${TDIR}/lib'!"
cp -R "${GK_SHARE}/defaults/keymaps" "${TDIR}"/lib/ 2>/dev/null \
|| gen_die "Failed to copy '${GK_SHARE}/defaults/keymaps' to '${TDIR}/lib'!"
if isTrue "${CMD_DOKEYMAPAUTO}"
then
print_info 2 "$(get_indent 2)>> Forcing keymap selection in initrd script due to DOKEYMAPAUTO setting ..."
echo 'MY_HWOPTS="${MY_HWOPTS} keymap"' >> "${TDIR}"/etc/initrd.defaults \
|| gen_die "Failed to add keymap to MY_HWOPTS in '${TDIR}/etc/initrd.defaults'!"
fi
fi
pushd "${TDIR}"/sbin &>/dev/null || gen_die "Failed to chdir to '${TDIR}/sbin'!"
ln -s ../init init || gen_die "Failed to create symlink 'init' to '../init'!"
popd &>/dev/null || gen_die "Failed to chdir!"
if isTrue "${NETBOOT}"
then
pushd "${GK_SHARE}/netboot/misc" &>/dev/null || gen_die "Failed to chdir to '${GK_SHARE}/netboot/misc'!"
cp -pPRf * "${TDIR}"/ 2>/dev/null \
|| gen_die "Failed to copy '${GK_SHARE}/netboot/misc' to '${TDIR}'!"
popd &>/dev/null || gen_die "Failed to chdir!"
fi
cd "${TDIR}" || gen_die "Failed to chdir to '${TDIR}'!"
log_future_cpio_content
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
|| gen_die "Failed to append auxilary to cpio!"
}
append_data() {
local name=$1 var=$2
local func="append_${name}"
[ $# -eq 0 ] && gen_die "append_data() called with zero arguments"
if [ $# -eq 1 ] || isTrue "${var}"
then
print_info 1 "$(getIndent 1)>> Appending ${name} cpio data..."
${func} || gen_die "${func}() failed"
fi
}
create_initramfs() {
local lddtree_testfile=`which cpio 2>/dev/null`
if [[ -z "${lddtree_testfile}" || ! -e "${lddtree_testfile}" ]]; then
print_warning 1 "cpio binary not found -- cannot check if lddtree is working!"
elif ! lddtree "${lddtree_testfile}" 1>/dev/null 2>&1; then
gen_die "'lddtree ${lddtree_testfile}' failed -- cannot generate initramfs without working lddtree!"
fi
local compress_ext=""
print_info 1 "initramfs: >> Initializing..."
# Create empty cpio
CPIO="${TMPDIR}/initramfs-${KV}"
append_data 'devices' # WARNING, must be first!
append_data 'base_layout'
append_data 'auxilary' "${BUSYBOX}"
append_data 'busybox' "${BUSYBOX}"
isTrue "${CMD_E2FSPROGS}" && append_data 'e2fsprogs'
append_data 'lvm' "${LVM}"
append_data 'dmraid' "${DMRAID}"
append_data 'iscsi' "${ISCSI}"
append_data 'mdadm' "${MDADM}"
append_data 'luks' "${LUKS}"
append_data 'dropbear' "${SSH}"
append_data 'multipath' "${MULTIPATH}"
append_data 'gpg' "${GPG}"
if isTrue "${RAMDISKMODULES}"
then
append_data 'modules'
else
print_info 1 "initramfs: Not copying modules..."
fi
append_data 'zfs' "${ZFS}"
append_data 'btrfs' "${BTRFS}"
append_data 'blkid' "${DISKLABEL}"
append_data 'unionfs_fuse' "${UNIONFS}"
append_data 'splash' "${SPLASH}"
append_data 'modprobed'
if isTrue "${ZFS}" || isTrue "${LUKS}"
then
append_data 'libgcc_s'
fi
if isTrue "${FIRMWARE}" && [ -n "${FIRMWARE_DIR}" ]
then
append_data 'firmware'
fi
# This should always be appended last
if [ "${INITRAMFS_OVERLAY}" != '' ]
then
append_data 'overlay'
fi
if [ -f "${TEMP}/.binaries_copied" ]
then
append_data 'linker'
else
print_info 2 "initramfs: Not appending linker because no binaries have been copied ..."
fi
# Finalize cpio by removing duplicate files
# TODO: maybe replace this with:
# http://search.cpan.org/~pixel/Archive-Cpio-0.07/lib/Archive/Cpio.pm
# as then we can dedupe ourselves...
if [[ $UID -eq 0 ]]; then
print_info 1 "$(getIndent 1)>> Deduping cpio..."
local TDIR="${TEMP}/initramfs-final"
mkdir -p "${TDIR}"
cd "${TDIR}"
cpio --quiet -i -F "${CPIO}" 2> /dev/null \
|| gen_die "extracting cpio for dedupe"
find . -print | cpio ${CPIO_ARGS} -F "${CPIO}" 2>/dev/null \
|| gen_die "rebuilding cpio for dedupe"
cd "${TEMP}"
rm -rf "${TDIR}"
else
print_info 1 "$(getIndent 1)>> Cannot deduping cpio contents without root; skipping"
fi
cd "${TEMP}"
# NOTE: We do not work with ${KERNEL_CONFIG} here, since things like
# "make oldconfig" or --noclean could be in effect.
if [ -f "${KERNEL_OUTPUTDIR}"/.config ]; then
local ACTUAL_KERNEL_CONFIG="${KERNEL_OUTPUTDIR}"/.config
else
local ACTUAL_KERNEL_CONFIG="${KERNEL_CONFIG}"
fi
if [[ "$(file --brief --mime-type "${ACTUAL_KERNEL_CONFIG}")" == application/x-gzip ]]; then
# Support --kernel-config=/proc/config.gz, mainly
local CONFGREP=zgrep
else
local CONFGREP=grep
fi
if isTrue "${LVM}" ; then
if ! ${CONFGREP} -q "^CONFIG_FILE_LOCKING=y" "${ACTUAL_KERNEL_CONFIG}" ; then
gen_die "LVM will require a kernel with CONFIG_FILE_LOCKING=y set!"
fi
fi
if isTrue "${INTEGRATED_INITRAMFS}"
then
# Explicitly do not compress if we are integrating into the kernel.
# The kernel will do a better job of it than us.
mv ${TMPDIR}/initramfs-${KV} ${TMPDIR}/initramfs-${KV}.cpio
sed -i '/^.*CONFIG_INITRAMFS_SOURCE=.*$/d' "${KERNEL_OUTPUTDIR}/.config" ||
gen_die "failed to delete CONFIG_INITRAMFS_SOURCE from '${KERNEL_OUTPUTDIR}/.config'"
compress_config='INITRAMFS_COMPRESSION_NONE'
case ${compress_ext} in
gz) compress_config='INITRAMFS_COMPRESSION_GZIP' ;;
bz2) compress_config='INITRAMFS_COMPRESSION_BZIP2' ;;
lzma) compress_config='INITRAMFS_COMPRESSION_LZMA' ;;
xz) compress_config='INITRAMFS_COMPRESSION_XZ' ;;
lzo) compress_config='INITRAMFS_COMPRESSION_LZO' ;;
lz4) compress_config='INITRAMFS_COMPRESSION_LZ4' ;;
*) compress_config='INITRAMFS_COMPRESSION_NONE' ;;
esac
# All N default except XZ, so there it gets used if the kernel does
# compression on it's own.
cat >>${KERNEL_OUTPUTDIR}/.config <<-EOF
CONFIG_INITRAMFS_SOURCE="${TMPDIR}/initramfs-${KV}.cpio${compress_ext}"
CONFIG_INITRAMFS_ROOT_UID=0
CONFIG_INITRAMFS_ROOT_GID=0
CONFIG_INITRAMFS_COMPRESSION_NONE=n
CONFIG_INITRAMFS_COMPRESSION_GZIP=n
CONFIG_INITRAMFS_COMPRESSION_BZIP2=n
CONFIG_INITRAMFS_COMPRESSION_LZMA=n
CONFIG_INITRAMFS_COMPRESSION_XZ=y
CONFIG_INITRAMFS_COMPRESSION_LZO=n
CONFIG_INITRAMFS_COMPRESSION_LZ4=n
CONFIG_${compress_config}=y
EOF
else
if isTrue "${COMPRESS_INITRD}"
then
cmd_xz=$(type -p xz)
cmd_lzma=$(type -p lzma)
cmd_bzip2=$(type -p bzip2)
cmd_gzip=$(type -p gzip)
cmd_lzop=$(type -p lzop)
cmd_lz4=$(type -p lz4)
pkg_xz='app-arch/xz-utils'
pkg_lzma='app-arch/xz-utils'
pkg_bzip2='app-arch/bzip2'
pkg_gzip='app-arch/gzip'
pkg_lzop='app-arch/lzop'
pkg_lz4='app-arch/lz4'
local compression
case ${COMPRESS_INITRD_TYPE} in
xz|lzma|bzip2|gzip|lzop|lz4) compression=${COMPRESS_INITRD_TYPE} ;;
lzo) compression=lzop ;;
best|fastest)
for tuple in \
'CONFIG_RD_XZ cmd_xz xz' \
'CONFIG_RD_LZMA cmd_lzma lzma' \
'CONFIG_RD_BZIP2 cmd_bzip2 bzip2' \
'CONFIG_RD_GZIP cmd_gzip gzip' \
'CONFIG_RD_LZO cmd_lzop lzop' \
'CONFIG_RD_LZ4 cmd_lz4 lz4' \
; do
set -- ${tuple}
kernel_option=$1
cmd_variable_name=$2
if ${CONFGREP} -q "^${kernel_option}=y" "${ACTUAL_KERNEL_CONFIG}" && test -n "${!cmd_variable_name}" ; then
compression=$3
[[ ${COMPRESS_INITRD_TYPE} == best ]] && break
fi
done
[[ -z "${compression}" ]] && gen_die "None of the initramfs compression methods we tried are supported by your kernel (config file \"${ACTUAL_KERNEL_CONFIG}\"), strange!?"
;;
*)
gen_die "Compression '${COMPRESS_INITRD_TYPE}' unknown"
;;
esac
# Check for actual availability
cmd_variable_name=cmd_${compression}
pkg_variable_name=pkg_${compression}
[[ -z "${!cmd_variable_name}" ]] && gen_die "Compression '${compression}' is not available. Please install package '${!pkg_variable_name}'."
case $compression in
xz) compress_ext='.xz' compress_cmd="${cmd_xz} -e --check=none -z -f -9" ;;
lzma) compress_ext='.lzma' compress_cmd="${cmd_lzma} -z -f -9" ;;
bzip2) compress_ext='.bz2' compress_cmd="${cmd_bzip2} -z -f -9" ;;
gzip) compress_ext='.gz' compress_cmd="${cmd_gzip} -f -9" ;;
lzop) compress_ext='.lzo' compress_cmd="${cmd_lzop} -f -9" ;;
lz4) compress_ext='.lz4' compress_cmd="${cmd_lz4} -f -9 -l -q" ;;
esac
if [ -n "${compression}" ]; then
print_info 1 "$(getIndent 1)>> Compressing cpio data (${compress_ext})..."
print_info 5 "$(getIndent 1)>> Compression command (${compress_cmd} $CPIO)..."
${compress_cmd} "${CPIO}" || gen_die "Compression (${compress_cmd}) failed"
mv -f "${CPIO}${compress_ext}" "${CPIO}" || gen_die "Rename failed"
else
print_info 1 "$(getIndent 1)>> Not compressing cpio data ..."
fi
fi
## To early load microcode we need to follow some pretty specific steps
## mostly laid out in linux/Documentation/x86/early-microcode.txt
## It only loads monolithic ucode from an uncompressed cpio, which MUST
## be before the other cpio archives in the stream.
cfg_CONFIG_MICROCODE=$(kconfig_get_opt "${KERNEL_OUTPUTDIR}"/.config CONFIG_MICROCODE)
if isTrue "${MICROCODE_INITRAMFS}" && [ "${cfg_CONFIG_MICROCODE}" == "y" ]; then
if [[ "${MICROCODE}" == intel ]]; then
# Only show this information for Intel users because we have no mechanism yet
# to generate amd-*.img in /boot after sys-kernel/linux-firmware update
print_info 1 "MICROCODE_INITRAMFS option is enabled by default for compatability but made obsolete by >=sys-boot/grub-2.02-r1"
fi
cfg_CONFIG_MICROCODE_INTEL=$(kconfig_get_opt "${KERNEL_OUTPUTDIR}"/.config CONFIG_MICROCODE_INTEL)
cfg_CONFIG_MICROCODE_AMD=$(kconfig_get_opt "${KERNEL_OUTPUTDIR}"/.config CONFIG_MICROCODE_AMD)
print_info 1 "$(getIndent 1)>> Adding early-microcode support..."
UCODEDIR="${TEMP}/ucode_tmp/kernel/x86/microcode/"
mkdir -p "${UCODEDIR}"
if [ "${cfg_CONFIG_MICROCODE_INTEL}" == "y" ]; then
if [ -d /lib/firmware/intel-ucode ]; then
print_info 1 "$(getIndent 2)early-microcode: Adding GenuineIntel.bin..."
cat /lib/firmware/intel-ucode/* > "${UCODEDIR}/GenuineIntel.bin" || gen_die "Failed to concat intel cpu ucode"
else
print_info 1 "$(getIndent 2)early-microcode: CONFIG_MICROCODE_INTEL=y set but no ucode available. Please install sys-firmware/intel-microcode[split-ucode]"
fi
fi
if [ "${cfg_CONFIG_MICROCODE_AMD}" == "y" ]; then
if [ -d /lib/firmware/amd-ucode ]; then
print_info 1 "$(getIndent 2)early-microcode: Adding AuthenticAMD.bin..."
cat /lib/firmware/amd-ucode/*.bin > "${UCODEDIR}/AuthenticAMD.bin" || gen_dir "Failed to concat amd cpu ucode"
else
print_info 1 "$(getIndent 2)early-microcode: CONFIG_MICROCODE_AMD=y set but no ucode available. Please install sys-firmware/linux-firmware"
fi
fi
if [ -f "${UCODEDIR}/AuthenticAMD.bin" -o -f "${UCODEDIR}/GenuineIntel.bin" ]; then
print_info 1 "$(getIndent 2)early-microcode: Creating cpio..."
pushd "${TEMP}/ucode_tmp" > /dev/null
find . | cpio -o -H newc > ../ucode.cpio || gen_die "Failed to create cpu microcode cpio"
popd > /dev/null
print_info 1 "$(getIndent 2)early-microcode: Prepending early-microcode to initramfs..."
cat "${TEMP}/ucode.cpio" "${CPIO}" > "${CPIO}.early-microcode" || gen_die "Failed to prepend early-microcode to initramfs"
mv -f "${CPIO}.early-microcode" "${CPIO}" || gen_die "Rename failed"
else
print_info 1 "$(getIndent 2)early-microcode: CONFIG_MICROCODE=y is set but no microcode found"
print_info 1 "$(getIndent 2)early-microcode: You can disable MICROCODE_INITRAMFS option if you use your bootloader to load AMD/Intel ucode initrd"
fi
fi
if isTrue "${WRAP_INITRD}"
then
local mkimage_cmd=$(type -p mkimage)
[[ -z ${mkimage_cmd} ]] && gen_die "mkimage is not available. Please install package 'dev-embedded/u-boot-tools'."
local mkimage_args="-A ${ARCH} -O linux -T ramdisk -C ${compression:-none} -a 0x00000000 -e 0x00000000"
print_info 1 "$(getIndent 1)>> Wrapping initramfs using mkimage..."
print_info 2 "$(getIndent 1)${mkimage_cmd} ${mkimage_args} -n initramfs-${KV} -d ${CPIO} ${CPIO}.uboot"
${mkimage_cmd} ${mkimage_args} -n "initramfs-${KV}" -d "${CPIO}" "${CPIO}.uboot" >> ${LOGFILE} 2>&1 || gen_die "Wrapping initramfs using mkimage failed"
mv -f "${CPIO}.uboot" "${CPIO}" || gen_die "Rename failed"
fi
fi
if isTrue "${CMD_INSTALL}"
then
if ! isTrue "${INTEGRATED_INITRAMFS}"
then
copy_image_with_preserve "initramfs" \
"${TMPDIR}/initramfs-${KV}" \
"initramfs-${KNAME}-${ARCH}-${KV}"
fi
fi
}
|