1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663 |
+ export BPO_JOB_ID=1134839
+ BPO_JOB_ID=1134839
++ cat img-prefix
+ IMG_PREFIX=20240122-0322-postmarketOS-v23.06-sxmo-de-sway-1.14.0-pine64-pinephone
+ pmbootstrap config kernel ''
[03:22:01] Config changed: kernel=''
+ pmbootstrap config extra_space 0
[03:22:01] Config changed: extra_space='0'
+ pmbootstrap config extra_packages lang,musl-locales,osk-sdl
[03:22:01] Config changed: extra_packages='lang,musl-locales,osk-sdl'
+ pmbootstrap -q -y zap -p
+ printf '%s\n%s\n' 147147 147147
+ pmbootstrap -m http://dl-cdn.alpinelinux.org/alpine/ -mp http://mirror.postmarketos.org/postmarketos/ --details-to-stdout install --no-sshd --no-local-pkgs
(002289) [03:22:02] % cd /home/build/pmaports; git remote -v
origin https://gitlab.com/postmarketOS/pmaports.git/ (fetch)
origin https://gitlab.com/postmarketOS/pmaports.git/ (push)
(002289) [03:22:02] % cd /home/build/pmaports; git show origin/master:channels.cfg
# Reference: https://postmarketos.org/channels.cfg
[channels.cfg]
recommended=edge
[edge]
description=Rolling release / Most devices / Occasional breakage: https://postmarketos.org/edge
branch_pmaports=master
branch_aports=master
mirrordir_alpine=edge
[v23.12]
description=Latest release / Recommended for best stability
branch_pmaports=v23.12
branch_aports=3.19-stable
mirrordir_alpine=v3.19
[v23.06]
description=Old release (supported until 2024-01-18)
branch_pmaports=v23.06
branch_aports=3.18-stable
mirrordir_alpine=v3.18
[v22.12]
description=Old release (unsupported)
branch_pmaports=v22.12
branch_aports=3.17-stable
mirrordir_alpine=v3.17
[v22.06]
description=Old release (unsupported)
branch_pmaports=v22.06
branch_aports=3.16-stable
mirrordir_alpine=v3.16
[v21.12]
description=Old release (unsupported)
branch_pmaports=v21.12
branch_aports=3.15-stable
mirrordir_alpine=v3.15
[v21.06]
description=Old release (unsupported)
branch_pmaports=v21.06
branch_aports=3.14-stable
mirrordir_alpine=v3.14
[v21.03]
description=Old release (unsupported)
branch_pmaports=v21.03
branch_aports=3.13-stable
mirrordir_alpine=v3.13
[v20.05]
description=Old release (unsupported)
branch_pmaports=v20.05
branch_aports=3.12-stable
mirrordir_alpine=v3.12
(002289) [03:22:02] *** (1/4) PREPARE NATIVE CHROOT ***
(002289) [03:22:02] NOTE: Skipped apk version check for chroot 'native', because it is not installed yet!
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev
(002289) [03:22:02] % sudo mount -t tmpfs -o size=1M,noexec,dev tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev/pts /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002289) [03:22:02] % sudo mount -t tmpfs -o nodev,nosuid,noexec tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002289) [03:22:02] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/null c 1 3
(002289) [03:22:02] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/zero c 1 5
(002289) [03:22:02] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/full c 1 7
(002289) [03:22:02] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/random c 1 8
(002289) [03:22:02] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/urandom c 1 9
(002289) [03:22:02] % sudo ln -sf /proc/self/fd /home/build/.local/var/pmbootstrap/chroot_native/dev/
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/proc
(002289) [03:22:02] % sudo mount --bind /proc /home/build/.local/var/pmbootstrap/chroot_native/proc
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_apk_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_appstream/x86_64/v23.06
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/appstream-data
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_appstream/x86_64/v23.06 /home/build/.local/var/pmbootstrap/chroot_native/mnt/appstream-data
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_ccache_x86_64
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/ccache
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_ccache_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/ccache
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_distfiles
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_distfiles /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/git
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_git /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/git
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_go
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/go
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_go /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/go
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_rust
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/rust
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_rust /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/rust
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_abuild
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/abuild-config
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_abuild /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/abuild-config
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_apk_keys
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_apk_keys /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_sccache
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/sccache
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_sccache /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/sccache
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/images_netboot
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/netboot
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/images_netboot /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/netboot
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/packages/v23.06
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002289) [03:22:02] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/v23.06 /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002289) [03:22:02] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/in-pmbootstrap
(002289) [03:22:02] APKINDEX outdated (file does not exist yet): http://mirror.postmarketos.org/postmarketos/v23.06/x86_64/APKINDEX.tar.gz
(002289) [03:22:02] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.18/main/x86_64/APKINDEX.tar.gz
(002289) [03:22:02] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.18/community/x86_64/APKINDEX.tar.gz
(002289) [03:22:02] Update package index for x86_64 (3 file(s))
(002289) [03:22:02] % mkdir -p /home/build/.local/var/pmbootstrap/cache_http
(002289) [03:22:02] Download http://mirror.postmarketos.org/postmarketos/v23.06/x86_64/APKINDEX.tar.gz
(002289) [03:22:02] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_bd43633c57e23d0883a7891fa31c728c01ed4fc9e79bec961d643649f5950a8a /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.1d747f28.tar.gz
(002289) [03:22:02] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/main/x86_64/APKINDEX.tar.gz
(002289) [03:22:02] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_33d9b8e7f4d819eb01593e9ecfc108559f684f4e5d7cfb81f5bb2dde02ef2c09 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.257f6e09.tar.gz
(002289) [03:22:02] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/community/x86_64/APKINDEX.tar.gz
(002289) [03:22:02] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_2c3eaa40a62625a4ba80422a148ce82cd6019f8810c0fad3a285bb268b6ddc4b /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.bddb353e.tar.gz
(002289) [03:22:02] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/main/x86_64/apk-tools-static-2.14.0-r2.apk
(002289) [03:22:02] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002289) [03:22:02] sigkey: alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002289) [03:22:02] extracted: /tmp/pmbootstrap274x9e8iapk
(002289) [03:22:02] extracted: /tmp/pmbootstrap2hnwj3tesig
(002289) [03:22:02] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002289) [03:22:02] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub -signature /tmp/pmbootstrap2hnwj3tesig /tmp/pmbootstrap274x9e8iapk
Verified OK
(002289) [03:22:02] Verify the version reported by the apk.static binary (must match the package version 2.14.0-r2)
(002289) [03:22:02] % /tmp/pmbootstrap274x9e8iapk --version
apk-tools 2.14.0, compiled for x86_64.
(002289) [03:22:02] (native) install alpine-base
(002289) [03:22:02] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/cache
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58e4f17d.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-58e4f17d.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/build.postmarketos.org.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/build.postmarketos.org.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616abc23.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616abc23.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616ae350.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616ae350.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5e69ca50.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-5e69ca50.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-60ac2099.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-60ac2099.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58cbb476.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-58cbb476.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616a9724.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616a9724.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-61666e3f.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-61666e3f.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616adfeb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616adfeb.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616db30d.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616db30d.rsa.pub
(002289) [03:22:02] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616ac3bc.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616ac3bc.rsa.pub
(002289) [03:22:02] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_native/etc/resolv.conf
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk
(002289) [03:22:02] (native) update /etc/apk/repositories
(002289) [03:22:02] % sudo sh -c echo /mnt/pmbootstrap/packages >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002289) [03:22:02] % sudo sh -c echo http://mirror.postmarketos.org/postmarketos/v23.06 >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002289) [03:22:02] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.18/main >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002289) [03:22:02] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.18/community >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002289) [03:22:02] % sudo mkdir -p /home/build/.local/var/pmbootstrap/tmp
(002289) [03:22:02] % sudo mkfifo /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002289) [03:22:02] % sudo cat /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002289) [03:22:02] % sudo sh -c exec 3>/home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo; /home/build/.local/var/pmbootstrap/apk.static --no-progress --progress-fd 3 --root /home/build/.local/var/pmbootstrap/chroot_native --cache-dir /home/build/.local/var/pmbootstrap/cache_apk_x86_64 --initdb --arch x86_64 add alpine-base --no-interactive
(002289) [03:22:02] New background process: pid=2450, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/25) Installing alpine-baselayout-data (3.4.3-r1)
(2/25) Installing musl (1.2.4-r2)
(3/25) Installing busybox (1.36.1-r5)
Executing busybox-1.36.1-r5.post-install
(4/25) Installing busybox-binsh (1.36.1-r5)
(5/25) Installing alpine-baselayout (3.4.3-r1)
Executing alpine-baselayout-3.4.3-r1.pre-install
Executing alpine-baselayout-3.4.3-r1.post-install
(6/25) Installing ifupdown-ng (0.12.1-r2)
(7/25) Installing libcap2 (2.69-r0)
(8/25) Installing openrc (0.48-r0)
Executing openrc-0.48-r0.post-install
(9/25) Installing mdev-conf (4.5-r0)
(10/25) Installing busybox-mdev-openrc (1.36.1-r5)
(11/25) Installing alpine-conf (3.16.2-r0)
(12/25) Installing alpine-keys (2.4-r1)
(13/25) Installing alpine-release (3.18.5-r0)
(14/25) Installing ca-certificates-bundle (20230506-r0)
(15/25) Installing libcrypto3 (3.1.4-r4)
(16/25) Installing libssl3 (3.1.4-r4)
(17/25) Installing ssl_client (1.36.1-r5)
(18/25) Installing zlib (1.2.13-r1)
(19/25) Installing apk-tools (2.14.0-r2)
(20/25) Installing busybox-openrc (1.36.1-r5)
(21/25) Installing busybox-suid (1.36.1-r5)
(22/25) Installing scanelf (1.3.7-r1)
(23/25) Installing musl-utils (1.2.4-r2)
(24/25) Installing libc-utils (0.7.2-r5)
(25/25) Installing alpine-base (3.18.5-r0)
Executing busybox-1.36.1-r5.trigger
OK: 10 MiB in 25 packages
(002289) [03:22:03] (native) % adduser -D pmos -u 12345
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/abuild-config /home/pmos/.abuild
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/abuild-config
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/ccache /home/pmos/.ccache
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/ccache
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cache
(002289) [03:22:03] (native) % mkdir -p /mnt/pmbootstrap/go/gocache
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gocache /home/pmos/.cache/go-build
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gocache
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/go/pkg
(002289) [03:22:03] (native) % mkdir -p /mnt/pmbootstrap/go/gomodcache
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gomodcache /home/pmos/go/pkg/mod
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gomodcache
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/packages
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/packages /home/pmos/packages/pmos
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/packages
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/git
(002289) [03:22:03] (native) % mkdir -p /mnt/pmbootstrap/rust/git/db
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/git/db /home/pmos/.cargo/git/db
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/git/db
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/registry
(002289) [03:22:03] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/cache
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/cache /home/pmos/.cargo/registry/cache
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/cache
(002289) [03:22:03] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/index
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/index /home/pmos/.cargo/registry/index
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/index
(002289) [03:22:03] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/sccache /home/pmos/.cache/sccache
(002289) [03:22:03] (native) % chown pmos:pmos /mnt/pmbootstrap/sccache
(002289) [03:22:03] (native) calculate depends of cryptsetup, util-linux, parted (pmbootstrap -v for details)
(002289) [03:22:03] (native) install cryptsetup util-linux parted
(002289) [03:22:03] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002289) [03:22:03] (native) % cat /tmp/apk_progress_fifo
(002289) [03:22:03] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add cryptsetup util-linux parted --no-interactive
(002289) [03:22:03] New background process: pid=2529, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/43) Installing libblkid (2.38.1-r8)
(2/43) Installing argon2-libs (20190702-r4)
(3/43) Installing device-mapper-libs (2.03.21-r3)
(4/43) Installing json-c (0.16-r3)
(5/43) Installing libuuid (2.38.1-r8)
(6/43) Installing cryptsetup-libs (2.6.1-r3)
(7/43) Installing popt (1.19-r2)
(8/43) Installing cryptsetup (2.6.1-r3)
(9/43) Installing cryptsetup-openrc (2.6.1-r3)
(10/43) Installing ncurses-terminfo-base (6.4_p20230506-r0)
(11/43) Installing libncursesw (6.4_p20230506-r0)
(12/43) Installing readline (8.2.1-r1)
(13/43) Installing parted (3.6-r1)
(14/43) Installing util-linux (2.38.1-r8)
(15/43) Installing setarch (2.38.1-r8)
(16/43) Installing libfdisk (2.38.1-r8)
(17/43) Installing libmount (2.38.1-r8)
(18/43) Installing libsmartcols (2.38.1-r8)
(19/43) Installing util-linux-misc (2.38.1-r8)
(20/43) Installing libeconf (0.5.2-r1)
(21/43) Installing linux-pam (1.5.2-r10)
(22/43) Installing runuser (2.38.1-r8)
(23/43) Installing mount (2.38.1-r8)
(24/43) Installing losetup (2.38.1-r8)
(25/43) Installing hexdump (2.38.1-r8)
(26/43) Installing uuidgen (2.38.1-r8)
(27/43) Installing blkid (2.38.1-r8)
(28/43) Installing sfdisk (2.38.1-r8)
(29/43) Installing mcookie (2.38.1-r8)
(30/43) Installing agetty (2.38.1-r8)
(31/43) Installing agetty-openrc (0.48-r0)
(32/43) Installing wipefs (2.38.1-r8)
(33/43) Installing cfdisk (2.38.1-r8)
(34/43) Installing umount (2.38.1-r8)
(35/43) Installing util-linux-openrc (2.38.1-r8)
(36/43) Installing flock (2.38.1-r8)
(37/43) Installing lsblk (2.38.1-r8)
(38/43) Installing libcap-ng (0.8.3-r3)
(39/43) Installing setpriv (2.38.1-r8)
(40/43) Installing logger (2.38.1-r8)
(41/43) Installing partx (2.38.1-r8)
(42/43) Installing fstrim (2.38.1-r8)
(43/43) Installing findmnt (2.38.1-r8)
Executing busybox-1.36.1-r5.trigger
OK: 20 MiB in 68 packages
(002289) [03:22:04] *** (2/4) CREATE DEVICE ROOTFS ("pine64-pinephone") ***
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev
(002289) [03:22:04] % sudo mount -t tmpfs -o size=1M,noexec,dev tmpfs /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/pts /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/shm
(002289) [03:22:04] % sudo mount -t tmpfs -o nodev,nosuid,noexec tmpfs /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/shm
(002289) [03:22:04] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/null c 1 3
(002289) [03:22:04] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/zero c 1 5
(002289) [03:22:04] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/full c 1 7
(002289) [03:22:04] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/random c 1 8
(002289) [03:22:04] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/urandom c 1 9
(002289) [03:22:04] % sudo ln -sf /proc/self/fd /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/proc
(002289) [03:22:04] % sudo mount --bind /proc /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/proc
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/apk
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_apk_aarch64 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/apk
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_appstream/aarch64/v23.06
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/appstream-data
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_appstream/aarch64/v23.06 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/appstream-data
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_ccache_aarch64
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/ccache
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_ccache_aarch64 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/ccache
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/distfiles
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_distfiles /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/distfiles
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/git
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_git /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/git
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/go
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_go /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/go
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/rust
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_rust /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/rust
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/abuild-config
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_abuild /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/abuild-config
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/keys
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_apk_keys /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/keys
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/sccache
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_sccache /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/sccache
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/netboot
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/images_netboot /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/netboot
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/packages
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/v23.06 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/packages
(002289) [03:22:04] (native) calculate depends of qemu-aarch64 (pmbootstrap -v for details)
(002289) [03:22:04] (native) install qemu-aarch64
(002289) [03:22:04] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002289) [03:22:04] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002289) [03:22:04] (native) % cat /tmp/apk_progress_fifo
(002289) [03:22:04] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add qemu-aarch64 --no-interactive
(002289) [03:22:04] New background process: pid=2616, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/1) Installing qemu-aarch64 (8.0.5-r0)
Executing busybox-1.36.1-r5.trigger
OK: 25 MiB in 69 packages
(002289) [03:22:04] Register qemu binfmt (aarch64)
(002289) [03:22:04] % sudo sh -c echo ":qemu-aarch64:M::\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/bin/qemu-aarch64-static:C" > /proc/sys/fs/binfmt_misc/register
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/usr/bin
(002289) [03:22:04] % sudo touch /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/usr/bin/qemu-aarch64-static
(002289) [03:22:04] % sudo mount --bind /home/build/.local/var/pmbootstrap/chroot_native/usr/bin/qemu-aarch64 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/usr/bin/qemu-aarch64-static
(002289) [03:22:04] % sudo touch /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/in-pmbootstrap
(002289) [03:22:04] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002289) [03:22:04] sigkey: alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002289) [03:22:04] extracted: /tmp/pmbootstrap8xeuqbpnapk
(002289) [03:22:04] extracted: /tmp/pmbootstrap69ntr9y3sig
(002289) [03:22:04] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002289) [03:22:04] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub -signature /tmp/pmbootstrap69ntr9y3sig /tmp/pmbootstrap8xeuqbpnapk
Verified OK
(002289) [03:22:04] Verify the version reported by the apk.static binary (must match the package version 2.14.0-r2)
(002289) [03:22:04] % /tmp/pmbootstrap8xeuqbpnapk --version
apk-tools 2.14.0, compiled for x86_64.
(002289) [03:22:04] (rootfs_pine64-pinephone) install alpine-base
(002289) [03:22:04] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/cache
(002289) [03:22:04] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/resolv.conf
(002289) [03:22:04] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk
(002289) [03:22:04] (rootfs_pine64-pinephone) update /etc/apk/repositories
(002289) [03:22:04] % sudo sh -c echo /mnt/pmbootstrap/packages >> /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/repositories
(002289) [03:22:04] % sudo sh -c echo http://mirror.postmarketos.org/postmarketos/v23.06 >> /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/repositories
(002289) [03:22:04] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.18/main >> /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/repositories
(002289) [03:22:04] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.18/community >> /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/repositories
(002289) [03:22:04] APKINDEX outdated (file does not exist yet): http://mirror.postmarketos.org/postmarketos/v23.06/aarch64/APKINDEX.tar.gz
(002289) [03:22:04] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.18/main/aarch64/APKINDEX.tar.gz
(002289) [03:22:04] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.18/community/aarch64/APKINDEX.tar.gz
(002289) [03:22:04] Update package index for aarch64 (3 file(s))
(002289) [03:22:04] Download http://mirror.postmarketos.org/postmarketos/v23.06/aarch64/APKINDEX.tar.gz
(002289) [03:22:05] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_4b46daddd5f7e1c9359d3204c80cf44610c13652dc2452cde7d531888cf987d3 /home/build/.local/var/pmbootstrap/cache_apk_aarch64/APKINDEX.1d747f28.tar.gz
(002289) [03:22:05] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/main/aarch64/APKINDEX.tar.gz
(002289) [03:22:05] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_40065443b333ea740ff24c0a8577b15ea962f62fc32f301dcb1f08aac856421f /home/build/.local/var/pmbootstrap/cache_apk_aarch64/APKINDEX.257f6e09.tar.gz
(002289) [03:22:05] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/community/aarch64/APKINDEX.tar.gz
(002289) [03:22:05] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_2453b1c83aceddbfa675d771c9eb5dfd7564196882e826d93da0be8d53564518 /home/build/.local/var/pmbootstrap/cache_apk_aarch64/APKINDEX.bddb353e.tar.gz
(002289) [03:22:05] % sudo mkdir -p /home/build/.local/var/pmbootstrap/tmp
(002289) [03:22:05] % sudo rm -f /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002289) [03:22:05] % sudo mkfifo /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002289) [03:22:05] % sudo cat /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002289) [03:22:05] % sudo sh -c exec 3>/home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo; /home/build/.local/var/pmbootstrap/apk.static --no-progress --progress-fd 3 --root /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone --cache-dir /home/build/.local/var/pmbootstrap/cache_apk_aarch64 --initdb --arch aarch64 add alpine-base --no-interactive
(002289) [03:22:05] New background process: pid=2660, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/25) Installing alpine-baselayout-data (3.4.3-r1)
(2/25) Installing musl (1.2.4-r2)
(3/25) Installing busybox (1.36.1-r5)
Executing busybox-1.36.1-r5.post-install
(4/25) Installing busybox-binsh (1.36.1-r5)
(5/25) Installing alpine-baselayout (3.4.3-r1)
Executing alpine-baselayout-3.4.3-r1.pre-install
Executing alpine-baselayout-3.4.3-r1.post-install
(6/25) Installing ifupdown-ng (0.12.1-r2)
(7/25) Installing libcap2 (2.69-r0)
(8/25) Installing openrc (0.48-r0)
Executing openrc-0.48-r0.post-install
(9/25) Installing mdev-conf (4.5-r0)
(10/25) Installing busybox-mdev-openrc (1.36.1-r5)
(11/25) Installing alpine-conf (3.16.2-r0)
(12/25) Installing alpine-keys (2.4-r1)
(13/25) Installing alpine-release (3.18.5-r0)
(14/25) Installing ca-certificates-bundle (20230506-r0)
(15/25) Installing libcrypto3 (3.1.4-r4)
(16/25) Installing libssl3 (3.1.4-r4)
(17/25) Installing ssl_client (1.36.1-r5)
(18/25) Installing zlib (1.2.13-r1)
(19/25) Installing apk-tools (2.14.0-r2)
(20/25) Installing busybox-openrc (1.36.1-r5)
(21/25) Installing busybox-suid (1.36.1-r5)
(22/25) Installing scanelf (1.3.7-r1)
(23/25) Installing musl-utils (1.2.4-r2)
(24/25) Installing libc-utils (0.7.2-r5)
(25/25) Installing alpine-base (3.18.5-r0)
Executing busybox-1.36.1-r5.trigger
OK: 13 MiB in 25 packages
(002289) [03:22:05] (rootfs_pine64-pinephone) % getent passwd user
(002289) [03:22:05] (rootfs_pine64-pinephone) % adduser -D -u 10000 user
(002289) [03:22:06] postmarketos-ui-sxmo-de-sway: install _pmb_groups: seat
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup -S audio
addgroup: group 'audio' in use
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup user audio
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup -S input
addgroup: group 'input' in use
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup user input
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup -S netdev
addgroup: group 'netdev' in use
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup user netdev
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup -S plugdev
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup user plugdev
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup -S video
addgroup: group 'video' in use
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup user video
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup -S wheel
addgroup: group 'wheel' in use
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup user wheel
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup -S seat
(002289) [03:22:06] (rootfs_pine64-pinephone) % addgroup user seat
(002289) [03:22:06] postmarketos-ui-sxmo-de-sway: install _pmb_recommends: w3m, sfeed, adwaita-icon-theme, clickclack, firefox-esr, font-noto, font-noto-emoji, imv, mobile-config-firefox, postmarketos-default-camera, postprocessd, ttyescape
(002289) [03:22:06] (rootfs_pine64-pinephone) calculate depends of postmarketos-base, device-pine64-pinephone, postmarketos-ui-sxmo-de-sway, device-pine64-pinephone-nonfree-firmware, lang, musl-locales, osk-sdl, postmarketos-base-nofde, w3m, sfeed, adwaita-icon-theme, clickclack, firefox-esr, font-noto, font-noto-emoji, imv, mobile-config-firefox, postmarketos-default-camera, postprocessd, ttyescape (pmbootstrap -v for details)
(002289) [03:22:07] sudo-virt: picked provider(s) with highest priority 100: sudo
(002289) [03:22:07] openssh-client: picked provider(s) with highest priority 2: openssh-client-default
(002289) [03:22:07] so:libpolkit-gobject-1.so.0: picked provider(s) with highest priority 100: polkit-noelogind-libs
(002289) [03:22:07] icu-data: picked provider(s) with highest priority 100: icu-data-en
(002289) [03:22:07] so:libjack.so.0: has multiple providers (jack, pipewire-jack), picked shortest: jack
(002289) [03:22:07] (rootfs_pine64-pinephone) install postmarketos-base device-pine64-pinephone postmarketos-ui-sxmo-de-sway device-pine64-pinephone-nonfree-firmware lang musl-locales osk-sdl postmarketos-base-nofde w3m sfeed adwaita-icon-theme clickclack firefox-esr font-noto font-noto-emoji imv mobile-config-firefox postmarketos-default-camera postprocessd ttyescape
(002289) [03:22:07] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/tmp/apk_progress_fifo
(002289) [03:22:07] (rootfs_pine64-pinephone) % cat /tmp/apk_progress_fifo
(002289) [03:22:07] (rootfs_pine64-pinephone) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add postmarketos-base device-pine64-pinephone postmarketos-ui-sxmo-de-sway device-pine64-pinephone-nonfree-firmware lang musl-locales osk-sdl postmarketos-base-nofde w3m sfeed adwaita-icon-theme clickclack firefox-esr font-noto font-noto-emoji imv mobile-config-firefox postmarketos-default-camera postprocessd ttyescape --no-interactive
(002289) [03:22:07] New background process: pid=2768, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/679) Installing libxau (1.0.11-r2)
(2/679) Installing libmd (1.0.4-r2)
(3/679) Installing libbsd (0.11.7-r1)
(4/679) Installing libxdmcp (1.1.4-r2)
(5/679) Installing libxcb (1.15-r1)
(6/679) Installing libx11 (1.8.7-r0)
(7/679) Installing libxext (1.3.5-r2)
(8/679) Installing libxrender (0.9.11-r3)
(9/679) Installing libexpat (2.5.0-r1)
(10/679) Installing brotli-libs (1.0.9-r14)
(11/679) Installing libbz2 (1.0.8-r5)
(12/679) Installing libpng (1.6.39-r3)
(13/679) Installing freetype (2.13.0-r5)
(14/679) Installing fontconfig (2.14.2-r3)
(15/679) Installing pixman (0.42.2-r1)
(16/679) Installing cairo (1.17.8-r1)
(17/679) Installing libffi (3.4.4-r2)
(18/679) Installing libintl (0.21.1-r7)
(19/679) Installing libblkid (2.38.1-r8)
(20/679) Installing libmount (2.38.1-r8)
(21/679) Installing pcre2 (10.42-r1)
(22/679) Installing glib (2.76.4-r0)
(23/679) Installing cairo-gobject (1.17.8-r1)
(24/679) Installing libgcc (12.2.1_git20220924-r10)
(25/679) Installing pkgconf (1.9.5-r0)
(26/679) Installing xz-libs (5.4.3-r0)
(27/679) Installing libxml2 (2.11.6-r0)
(28/679) Installing shared-mime-info (2.2-r5)
(29/679) Installing libjpeg-turbo (2.1.5.1-r3)
(30/679) Installing libwebp (1.3.2-r0)
(31/679) Installing zstd-libs (1.5.5-r4)
(32/679) Installing tiff (4.5.1-r0)
(33/679) Installing gdk-pixbuf (2.42.10-r5)
(34/679) Installing libxft (2.3.8-r1)
(35/679) Installing fribidi (1.0.13-r0)
(36/679) Installing graphite2 (1.3.14-r5)
(37/679) Installing harfbuzz (7.3.0-r0)
(38/679) Installing pango (1.50.14-r1)
(39/679) Installing librsvg (2.56.3-r0)
(40/679) Installing adwaita-icon-theme (44.0-r0)
(41/679) Installing sdl2 (2.26.5-r0)
(42/679) Installing clickclack (0.2.3-r2)
(43/679) Installing alsa-ucm-conf (1.2.9-r0)
(44/679) Installing atinout (0.9.1-r2)
(45/679) Installing ca-certificates (20230506-r0)
(46/679) Installing libunistring (1.1-r1)
(47/679) Installing libidn2 (2.3.4-r1)
(48/679) Installing nghttp2-libs (1.57.0-r0)
(49/679) Installing libcurl (8.5.0-r0)
(50/679) Installing libgpiod (1.6.4-r0)
(51/679) Installing eudev-libs (3.2.11-r8)
(52/679) Installing libgudev (237-r1)
(53/679) Installing libmm-glib (1.20.6-r2)
(54/679) Installing libusb (1.0.26-r2)
(55/679) Installing eg25-manager (0.4.6-r1)
(56/679) Installing eg25-manager-openrc (0.4.6-r1)
(57/679) Installing libstdc++ (12.2.1_git20220924-r10)
(58/679) Installing gpsd (3.25-r1)
(59/679) Installing gpsd-openrc (3.25-r1)
(60/679) Installing libnl3 (3.7.0-r1)
(61/679) Installing iw (5.19-r1)
(62/679) Installing linux-postmarketos-allwinner (6.3.5_git20230530-r0)
(63/679) Installing mesa (23.0.4-r0)
(64/679) Installing libdrm (2.4.115-r4)
(65/679) Installing wayland-libs-server (1.22.0-r2)
(66/679) Installing mesa-gbm (23.0.4-r0)
(67/679) Installing mesa-glapi (23.0.4-r0)
(68/679) Installing wayland-libs-client (1.22.0-r2)
(69/679) Installing libxshmfence (1.3.2-r2)
(70/679) Installing mesa-egl (23.0.4-r0)
(71/679) Installing udev-init-scripts (35-r1)
(72/679) Installing udev-init-scripts-openrc (35-r1)
(73/679) Installing kmod-libs (30-r3)
(74/679) Installing eudev (3.2.11-r8)
(75/679) Installing eudev-openrc (3.2.11-r8)
(76/679) Installing openssh-keygen (9.3_p2-r1)
(77/679) Installing ncurses-terminfo-base (6.4_p20230506-r0)
(78/679) Installing libncursesw (6.4_p20230506-r0)
(79/679) Installing libedit (20221030.3.1-r1)
(80/679) Installing openssh-client-common (9.3_p2-r1)
(81/679) Installing openssh-client-default (9.3_p2-r1)
(82/679) Installing openssh-sftp-server (9.3_p2-r1)
(83/679) Installing openssh-server-common (9.3_p2-r1)
(84/679) Installing openssh-server (9.3_p2-r1)
(85/679) Installing openssh (9.3_p2-r1)
(86/679) Installing pbsplash (0.3.1-r0)
(87/679) Installing postmarketos-bootsplash (0.2-r3)
(88/679) Installing postmarketos-bootsplash-openrc (0.2-r3)
Executing postmarketos-bootsplash-openrc-0.2-r3.post-install
* service kill-pbsplash added to runlevel default
(89/679) Installing busybox-extras (1.36.1-r5)
Executing busybox-extras-1.36.1-r5.post-install
(90/679) Installing lzo (2.10-r5)
(91/679) Installing libuuid (2.38.1-r8)
(92/679) Installing btrfs-progs (6.3.2-r0)
(93/679) Installing bzip2 (1.0.8-r5)
(94/679) Installing argon2-libs (20190702-r4)
(95/679) Installing device-mapper-libs (2.03.21-r3)
(96/679) Installing json-c (0.16-r3)
(97/679) Installing cryptsetup-libs (2.6.1-r3)
(98/679) Installing popt (1.19-r2)
(99/679) Installing cryptsetup (2.6.1-r3)
(100/679) Installing cryptsetup-openrc (2.6.1-r3)
(101/679) Installing libaio (0.3.113-r1)
(102/679) Installing device-mapper-event-libs (2.03.21-r3)
(103/679) Installing lvm2-libs (2.03.21-r3)
(104/679) Installing device-mapper (2.03.21-r3)
(105/679) Installing device-mapper-udev (2.03.21-r3)
Executing device-mapper-udev-2.03.21-r3.post-install
(106/679) Installing libcom_err (1.47.0-r2)
(107/679) Installing e2fsprogs-libs (1.47.0-r2)
(108/679) Installing e2fsprogs (1.47.0-r2)
(109/679) Installing e2fsprogs-extra (1.47.0-r2)
(110/679) Installing f2fs-tools-libs (1.16.0-r0)
(111/679) Installing f2fs-tools (1.16.0-r0)
(112/679) Installing lz4 (1.9.4-r4)
(113/679) Installing userspace-rcu (0.14.0-r1)
(114/679) Installing multipath-tools (0.9.5-r1)
(115/679) Installing multipath-tools-openrc (0.9.5-r1)
(116/679) Installing readline (8.2.1-r1)
(117/679) Installing parted (3.6-r1)
(118/679) Installing postmarketos-mvcfg (1-r0)
(119/679) Installing postmarketos-keys (1-r0)
(120/679) Installing sudo (1.9.13_p3-r2)
(121/679) Installing setarch (2.38.1-r8)
(122/679) Installing libfdisk (2.38.1-r8)
(123/679) Installing libsmartcols (2.38.1-r8)
(124/679) Installing util-linux-misc (2.38.1-r8)
(125/679) Installing zram-init (11.1-r1)
(126/679) Installing zram-init-openrc (11.1-r1)
(127/679) Installing postmarketos-base-nofde (26.1-r0)
(128/679) Installing boot-deploy (0.8.1-r0)
(129/679) Installing postmarketos-mkinitfs (2.1.1-r0)
(130/679) Installing unudhcpd (0.2.1-r0)
(131/679) Installing xz (5.4.3-r0)
(132/679) Installing postmarketos-initramfs (1.1.1-r0)
(133/679) Installing postmarketos-base (26.1-r0)
Executing postmarketos-base-26.1-r0.post-install
* service udev added to runlevel sysinit
* service udev-trigger added to runlevel sysinit
* service udev-settle added to runlevel sysinit
* service udev-postmount added to runlevel default
(134/679) Installing llvm15-libs (15.0.7-r6)
(135/679) Installing musl-fts (1.2.7-r5)
(136/679) Installing libelf (0.189-r2)
(137/679) Installing mesa-dri-gallium (23.0.4-r0)
(138/679) Installing postmarketos-base-mesa (26.1-r0)
(139/679) Installing u-boot-pinephone (2023.01-r0)
(140/679) Installing u-boot-tools (2023.04-r4)
(141/679) Installing dbus-libs (1.14.8-r0)
(142/679) Installing dbus (1.14.8-r0)
Executing dbus-1.14.8-r0.pre-install
Executing dbus-1.14.8-r0.post-install
(143/679) Installing dbus-openrc (1.14.8-r0)
(144/679) Installing dbus-daemon-launch-helper (1.14.8-r0)
(145/679) Installing libacl (2.3.1-r3)
(146/679) Installing lz4-libs (1.9.4-r4)
(147/679) Installing libarchive (3.7.2-r0)
(148/679) Installing libcbor (0.10.2-r1)
(149/679) Installing pciutils-libs (3.10.0-r0)
(150/679) Installing flashrom-libs (1.3.0-r1)
(151/679) Installing libgcab (1.5-r0)
(152/679) Installing gmp (6.2.1-r3)
(153/679) Installing nettle (3.8.1-r2)
(154/679) Installing p11-kit (0.24.1-r2)
(155/679) Installing libtasn1 (4.19.0-r1)
(156/679) Installing gnutls (3.8.3-r0)
(157/679) Installing json-glib (1.6.6-r1)
(158/679) Installing libgusb (0.4.6-r0)
(159/679) Installing libgpg-error (1.47-r1)
(160/679) Installing libassuan (2.5.6-r0)
(161/679) Installing pinentry (1.2.1-r1)
Executing pinentry-1.2.1-r1.post-install
(162/679) Installing libgcrypt (1.10.2-r1)
(163/679) Installing gnupg-gpgconf (2.4.3-r0)
(164/679) Installing libksba (1.6.4-r0)
(165/679) Installing gdbm (1.23-r1)
(166/679) Installing libsasl (2.1.28-r4)
(167/679) Installing libldap (2.6.5-r0)
(168/679) Installing npth (1.6-r4)
(169/679) Installing gnupg-dirmngr (2.4.3-r0)
(170/679) Installing sqlite-libs (3.41.2-r3)
(171/679) Installing gnupg-keyboxd (2.4.3-r0)
(172/679) Installing gpg (2.4.3-r0)
(173/679) Installing gpg-agent (2.4.3-r0)
(174/679) Installing gpgsm (2.4.3-r0)
(175/679) Installing gpgme (1.20.0-r1)
(176/679) Installing libjcat (0.1.13-r0)
(177/679) Installing libmbim (1.28.4-r0)
(178/679) Installing polkit-noelogind-libs (122-r5)
(179/679) Installing protobuf-c (1.4.1-r2)
(180/679) Installing libqrtr-glib (1.2.2-r0)
(181/679) Installing libqmi (1.32.4-r0)
(182/679) Installing tpm2-tss-mu (4.0.1-r0)
(183/679) Installing tpm2-tss-sys (4.0.1-r0)
(184/679) Installing tpm2-tss-esys (4.0.1-r0)
(185/679) Installing libxmlb (0.3.11-r0)
(186/679) Installing fwupd (1.9.3-r0)
(187/679) Installing fwupd-openrc (1.9.3-r0)
(188/679) Installing device-pine64-pinephone (0.46-r1)
Executing device-pine64-pinephone-0.46-r1.post-install
* service eg25-manager added to runlevel default
* service gpsd added to runlevel default
* service gpsd_pinephone added to runlevel default
(189/679) Installing linux-firmware-rtlwifi (20230515-r6)
(190/679) Installing linux-firmware-rtl_bt (20230515-r6)
(191/679) Installing firmware-pine64-rtl8723bt (0_git20200705-r0)
(192/679) Installing firmware-pine64-ov5640 (0_git20201028-r0)
(193/679) Installing device-pine64-pinephone-nonfree-firmware (0.46-r1)
(194/679) Installing svt-av1-libs (1.6.0-r0)
(195/679) Installing aom-libs (3.6.1-r0)
(196/679) Installing libxfixes (6.0.1-r2)
(197/679) Installing libva (2.18.0-r1)
(198/679) Installing libvdpau (1.5-r1)
(199/679) Installing ffmpeg-libavutil (6.0.1-r0)
(200/679) Installing libdav1d (1.2.1-r0)
(201/679) Installing libhwy (1.0.4-r1)
(202/679) Installing lcms2 (2.15-r2)
(203/679) Installing libjxl (0.8.2-r0)
(204/679) Installing lame-libs (3.100-r5)
(205/679) Installing opus (1.4-r0)
(206/679) Installing libgomp (12.2.1_git20220924-r10)
(207/679) Installing soxr (0.1.3-r5)
(208/679) Installing ffmpeg-libswresample (6.0.1-r0)
(209/679) Installing libogg (1.3.5-r4)
(210/679) Installing libtheora (1.1.1-r17)
(211/679) Installing libvorbis (1.3.7-r1)
(212/679) Installing libvpx (1.13.0-r2)
(213/679) Installing x264-libs (0.164_git20220602-r1)
(214/679) Installing numactl (2.0.16-r4)
(215/679) Installing x265-libs (3.5-r4)
(216/679) Installing xvidcore (1.3.7-r1)
(217/679) Installing ffmpeg-libavcodec (6.0.1-r0)
(218/679) Installing libxcomposite (0.4.6-r3)
(219/679) Installing libxdamage (1.1.6-r2)
(220/679) Installing libxrandr (1.5.3-r2)
(221/679) Installing alsa-lib (1.2.9-r1)
(222/679) Installing libatk-1.0 (2.48.4-r0)
(223/679) Installing dbus-glib (0.112-r5)
(224/679) Installing libevent (2.1.12-r6)
(225/679) Installing hicolor-icon-theme (0.17-r2)
(226/679) Installing gtk-update-icon-cache (3.24.38-r1)
(227/679) Installing libxcursor (1.2.1-r2)
(228/679) Installing libxi (1.8.1-r0)
(229/679) Installing libxinerama (1.1.5-r2)
(230/679) Installing libxtst (1.2.4-r2)
(231/679) Installing at-spi2-core (2.48.4-r0)
(232/679) Installing libatk-bridge-2.0 (2.48.4-r0)
(233/679) Installing avahi-libs (0.8-r13)
(234/679) Installing cups-libs (2.4.7-r0)
(235/679) Installing libepoxy (1.5.10-r1)
(236/679) Installing wayland-libs-cursor (1.22.0-r2)
(237/679) Installing wayland-libs-egl (1.22.0-r2)
(238/679) Installing xkeyboard-config (2.38-r0)
(239/679) Installing libxkbcommon (1.5.0-r2)
(240/679) Installing gtk+3.0 (3.24.38-r1)
Executing gtk+3.0-3.24.38-r1.post-install
(241/679) Installing icu-data-en (73.2-r2)
Executing icu-data-en-73.2-r2.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(242/679) Installing icu-libs (73.2-r2)
(243/679) Installing nspr (4.35-r2)
(244/679) Installing nss (3.94-r0)
(245/679) Installing firefox-esr (115.6.0-r0)
(246/679) Installing font-noto-common (23.5.1-r0)
(247/679) Installing font-noto-math (23.5.1-r0)
(248/679) Installing font-noto-symbols (23.5.1-r0)
(249/679) Installing font-noto (23.5.1-r0)
(250/679) Installing font-noto-emoji (2.038-r0)
(251/679) Installing libxxf86vm (1.1.5-r3)
(252/679) Installing mesa-gl (23.0.4-r0)
(253/679) Installing inih (56-r1)
(254/679) Installing imv (4.4.0-r2)
(255/679) Installing freeimage (3.18.0-r4)
(256/679) Installing libde265 (1.0.15-r0)
(257/679) Installing libheif (1.16.2-r0)
(258/679) Installing imv-wayland (4.4.0-r2)
(259/679) Installing musl-locales (0.1.0-r1)
(260/679) Installing musl-locales-lang (0.1.0-r1)
(261/679) Installing lang (0.1-r2)
(262/679) Installing gtk+3.0-lang (3.24.38-r1)
(263/679) Installing glib-lang (2.76.4-r0)
(264/679) Installing fwupd-lang (1.9.3-r0)
(265/679) Installing gdk-pixbuf-lang (2.42.10-r5)
(266/679) Installing json-glib-lang (1.6.6-r1)
(267/679) Installing libgcab-lang (1.5-r0)
(268/679) Installing xkeyboard-config-lang (2.38-r0)
(269/679) Installing at-spi2-core-lang (2.48.4-r0)
(270/679) Installing shared-mime-info-lang (2.2-r5)
(271/679) Installing mobile-config-firefox (4.0.3-r0)
(272/679) Installing tslib (1.22-r1)
(273/679) Installing directfb (1.7.7-r6)
(274/679) Installing mesa-gles (23.0.4-r0)
(275/679) Installing encodings (1.0.7-r1)
(276/679) Installing libfontenc (1.1.7-r2)
(277/679) Installing mkfontscale (1.2.2-r3)
(278/679) Installing font-dejavu (2.37-r5)
(279/679) Installing sdl2_ttf (2.20.2-r0)
(280/679) Installing osk-sdl (0.67.1-r3)
(281/679) Installing chrony (4.3-r4)
Executing chrony-4.3-r4.pre-install
(282/679) Installing chrony-openrc (4.3-r4)
(283/679) Installing haveged (1.9.18-r1)
(284/679) Installing haveged-openrc (1.9.18-r1)
(285/679) Installing jansson (2.14-r3)
(286/679) Installing libmnl (1.0.5-r1)
(287/679) Installing libnftnl (1.2.5-r1)
(288/679) Installing nftables (1.0.7-r2)
(289/679) Installing nftables-openrc (1.0.7-r2)
(290/679) Installing postmarketos-config-nftables (0.14-r1)
Executing postmarketos-config-nftables-0.14-r1.post-install
* service nftables added to runlevel default
(291/679) Installing postmarketos-base-nftables (26.1-r0)
Executing postmarketos-base-nftables-26.1-r0.post-install
(292/679) Installing postmarketos-artwork-icons (3-r0)
(293/679) Installing linux-pam (1.5.2-r10)
(294/679) Installing shadow (4.13-r4)
(295/679) Installing tzdata (2023d-r0)
(296/679) Installing util-linux (2.38.1-r8)
(297/679) Installing libeconf (0.5.2-r1)
(298/679) Installing runuser (2.38.1-r8)
(299/679) Installing mount (2.38.1-r8)
(300/679) Installing losetup (2.38.1-r8)
(301/679) Installing hexdump (2.38.1-r8)
(302/679) Installing uuidgen (2.38.1-r8)
(303/679) Installing blkid (2.38.1-r8)
(304/679) Installing sfdisk (2.38.1-r8)
(305/679) Installing mcookie (2.38.1-r8)
(306/679) Installing agetty (2.38.1-r8)
(307/679) Installing agetty-openrc (0.48-r0)
(308/679) Installing wipefs (2.38.1-r8)
(309/679) Installing cfdisk (2.38.1-r8)
(310/679) Installing umount (2.38.1-r8)
(311/679) Installing util-linux-openrc (2.38.1-r8)
(312/679) Installing flock (2.38.1-r8)
(313/679) Installing lsblk (2.38.1-r8)
(314/679) Installing libcap-ng (0.8.3-r3)
(315/679) Installing setpriv (2.38.1-r8)
(316/679) Installing logger (2.38.1-r8)
(317/679) Installing partx (2.38.1-r8)
(318/679) Installing fstrim (2.38.1-r8)
(319/679) Installing findmnt (2.38.1-r8)
(320/679) Installing wireless-regdb (2023.05.03-r0)
(321/679) Installing pcsc-lite-libs (1.9.9-r3)
(322/679) Installing wpa_supplicant (2.10-r7)
(323/679) Installing wpa_supplicant-openrc (2.10-r7)
(324/679) Installing ifupdown-ng-wifi (0.12.1-r2)
(325/679) Installing postmarketos-default-camera (10-r1)
(326/679) Installing libraw (0.21.1-r1)
(327/679) Installing libraw-tools (0.21.1-r1)
(328/679) Installing libltdl (2.4.7-r2)
(329/679) Installing imagemagick-libs (7.1.1.13-r1)
(330/679) Installing jbig2dec (0.19-r3)
(331/679) Installing ghostscript (10.02.0-r0)
(332/679) Installing imagemagick (7.1.1.13-r1)
(333/679) Installing perl (5.36.2-r0)
(334/679) Installing perl-image-exiftool (12.60-r0)
(335/679) Installing exiftool (12.60-r0)
(336/679) Installing feedbackd-device-themes (0.1.0-r0)
(337/679) Installing sound-theme-freedesktop (0.8-r0)
(338/679) Installing libcanberra (0.30-r9)
(339/679) Installing gsound (1.0.3-r1)
(340/679) Installing feedbackd (0.2.0-r0)
Executing feedbackd-0.2.0-r0.pre-install
*
* If you are switching between UIs on existing installations,
* make sure that you add your user to the feedbackd group.
* If the user isn't part of that group, the LED indicator won't be
* functional.
*
(341/679) Installing iso-codes (4.15.0-r0)
(342/679) Installing iso-codes-lang (4.15.0-r0)
(343/679) Installing graphene (1.10.8-r2)
(344/679) Installing libxv (1.0.12-r3)
(345/679) Installing cdparanoia-libs (10.2-r14)
(346/679) Installing gstreamer (1.22.8-r0)
(347/679) Installing gstreamer-lang (1.22.8-r0)
(348/679) Installing libcanberra-gstreamer (0.30-r9)
(349/679) Installing orc (0.4.34-r0)
(350/679) Installing gst-plugins-base (1.22.8-r0)
(351/679) Installing gst-plugins-base-lang (1.22.8-r0)
(352/679) Installing openexr-libiex (3.1.9-r0)
(353/679) Installing mpdecimal (2.5.1-r2)
(354/679) Installing libpanelw (6.4_p20230506-r0)
(355/679) Installing python3 (3.11.6-r0)
(356/679) Installing python3-pycache-pyc0 (3.11.6-r0)
(357/679) Installing pyc (0.1-r0)
(358/679) Installing python3-pyc (3.11.6-r0)
(359/679) Installing boost1.82-python3 (1.82.0-r1)
(360/679) Installing imath (3.1.7-r1)
(361/679) Installing openexr-libilmthread (3.1.9-r0)
(362/679) Installing openexr-libopenexr (3.1.9-r0)
(363/679) Installing soundtouch (2.3.2-r2)
(364/679) Installing libunibreak (5.1-r0)
(365/679) Installing libass (0.17.1-r0)
(366/679) Installing libraw1394 (2.1.2-r4)
(367/679) Installing libdc1394 (2.2.6-r1)
(368/679) Installing faac (1.30-r4)
(369/679) Installing fdk-aac (2.0.2-r2)
(370/679) Installing flite (2.2-r2)
(371/679) Installing libfreeaptx (0.1.1-r1)
(372/679) Installing gsm (1.0.22-r3)
(373/679) Installing libldac (2.0.2.3-r1)
(374/679) Installing libmodplug (0.8.9.0-r2)
(375/679) Installing neon (0.32.5-r1)
(376/679) Installing libnice (0.1.21-r0)
(377/679) Installing openal-soft-libs (1.23.1-r0)
(378/679) Installing openjpeg (2.5.0-r3)
(379/679) Installing librtmp (2.4_git20190330-r3)
(380/679) Installing sbc (2.0-r0)
(381/679) Installing flac-libs (1.4.3-r0)
(382/679) Installing libsndfile (1.2.0-r2)
(383/679) Installing spandsp (0.0.6-r5)
(384/679) Installing libsrtp (2.5.0-r1)
(385/679) Installing vo-aacenc (0.1.3-r1)
(386/679) Installing vo-amrwbenc (0.1.3-r1)
(387/679) Installing libzbar (0.23.92-r2)
(388/679) Installing gst-plugins-bad (1.22.8-r0)
(389/679) Installing gst-plugins-bad-lang (1.22.8-r0)
(390/679) Installing gtk4.0 (4.10.5-r0)
Executing gtk4.0-4.10.5-r0.post-install
(391/679) Installing gtk4.0-lang (4.10.5-r0)
(392/679) Installing megapixels (1.7.0-r0)
(393/679) Installing device-pine64-pinephone-camera (0.46-r1)
(394/679) Installing dialog (1.3.20230209-r1)
(395/679) Installing fftw-single-libs (3.3.10-r2)
(396/679) Installing libformw (6.4_p20230506-r0)
(397/679) Installing libmenuw (6.4_p20230506-r0)
(398/679) Installing alsa-utils (1.2.9-r0)
(399/679) Installing alsa-utils-openrc (1.2.9-r0)
(400/679) Installing callaudiod-libs (0.1.9-r0)
(401/679) Installing libasyncns (0.8-r1)
(402/679) Installing speexdsp (1.2.1-r1)
(403/679) Installing tdb-libs (1.4.8-r1)
(404/679) Installing libpulse (9999_git20220621-r1)
(405/679) Installing libpulse-mainloop-glib (9999_git20220621-r1)
(406/679) Installing callaudiod (0.1.9-r0)
(407/679) Installing libressl3.7-libtls (3.7.3-r0)
(408/679) Installing codemadness-frontends (0.6-r2)
(409/679) Installing giflib (5.2.1-r4)
(410/679) Installing libid3tag (0.16.2-r2)
(411/679) Installing imlib2 (1.11.1-r0)
(412/679) Installing wireless-tools-libs (30_pre9-r4)
(413/679) Installing lua5.4-libs (5.4.6-r0)
(414/679) Installing conky (1.19.1-r1)
(415/679) Installing dnsmasq-common (2.89-r5)
(416/679) Installing dnsmasq-openrc (2.89-r5)
(417/679) Installing dnsmasq-dnssec-dbus (2.89-r5)
Executing dnsmasq-dnssec-dbus-2.89-r5.pre-install
(418/679) Installing libnotify (0.8.2-r0)
(419/679) Installing dunstify (1.9.0-r2)
(420/679) Installing libmagic (5.45-r0)
(421/679) Installing file (5.45-r0)
(422/679) Installing font-dejavu-sans-mono-nerd (2.3.3-r0)
(423/679) Installing avahi-glib (0.8-r13)
(424/679) Installing gsettings-desktop-schemas (44.0-r0)
(425/679) Installing gsettings-desktop-schemas-lang (44.0-r0)
(426/679) Installing libproxy (0.4.18-r2)
(427/679) Installing glib-networking (2.76.1-r0)
(428/679) Installing glib-networking-lang (2.76.1-r0)
(429/679) Installing libpsl (0.21.2-r0)
(430/679) Installing libsoup3 (3.4.2-r0)
(431/679) Installing libsoup3-lang (3.4.2-r0)
(432/679) Installing geoclue (2.7.0-r2)
Executing geoclue-2.7.0-r2.pre-install
(433/679) Installing inotify-tools-libs (3.22.6.0-r2)
(434/679) Installing inotify-tools (3.22.6.0-r2)
(435/679) Installing light (1.2.2-r2)
(436/679) Installing light-udev (1.2.2-r2)
Executing light-udev-1.2.2-r2.post-install
(437/679) Installing linux-tools-iio (6.3.12-r0)
(438/679) Installing libevdev (1.13.1-r0)
(439/679) Installing mtdev (1.1.6-r2)
(440/679) Installing libinput-libs (1.23.0-r0)
(441/679) Installing libinput-udev (1.23.0-r0)
(442/679) Installing lisgd (0.3.7-r0)
(443/679) Installing tinyxml2 (9.0.0-r2)
(444/679) Installing libzen (0.4.41-r0)
(445/679) Installing libmediainfo (23.07-r0)
(446/679) Installing mediainfo (23.07-r0)
(447/679) Installing mobile-broadband-provider-info (20230416-r0)
(448/679) Installing c-ares (1.19.1-r0)
(449/679) Installing abseil-cpp-city (20230125.3-r1)
(450/679) Installing abseil-cpp-low-level-hash (20230125.3-r1)
(451/679) Installing abseil-cpp-hash (20230125.3-r1)
(452/679) Installing abseil-cpp-raw-hash-set (20230125.3-r1)
(453/679) Installing abseil-cpp-raw-logging-internal (20230125.3-r1)
(454/679) Installing abseil-cpp-strings-internal (20230125.3-r1)
(455/679) Installing abseil-cpp-strings (20230125.3-r1)
(456/679) Installing abseil-cpp-spinlock-wait (20230125.3-r1)
(457/679) Installing abseil-cpp-base (20230125.3-r1)
(458/679) Installing abseil-cpp-malloc-internal (20230125.3-r1)
(459/679) Installing abseil-cpp-debugging-internal (20230125.3-r1)
(460/679) Installing abseil-cpp-stacktrace (20230125.3-r1)
(461/679) Installing abseil-cpp-symbolize (20230125.3-r1)
(462/679) Installing abseil-cpp-int128 (20230125.3-r1)
(463/679) Installing abseil-cpp-time-zone (20230125.3-r1)
(464/679) Installing abseil-cpp-time (20230125.3-r1)
(465/679) Installing abseil-cpp-synchronization (20230125.3-r1)
(466/679) Installing boost1.82-thread (1.82.0-r1)
(467/679) Installing libprotobuf (3.21.12-r2)
(468/679) Installing libphonenumber (8.13.17-r0)
(469/679) Installing mmsd-tng (2.3.0-r0)
(470/679) Installing mmsd-tng-tools (2.3.0-r0)
(471/679) Installing mnc (0.4-r18)
(472/679) Installing polkit-common (122-r5)
Executing polkit-common-122-r5.pre-install
(473/679) Installing polkit-openrc (122-r5)
(474/679) Installing duktape (2.7.0-r1)
(475/679) Installing polkit (122-r5)
(476/679) Installing polkit-lang (122-r5)
(477/679) Installing modemmanager (1.20.6-r2)
(478/679) Installing modemmanager-lang (1.20.6-r2)
(479/679) Installing modemmanager-openrc (1.20.6-r2)
(480/679) Installing libxpresent (1.0.1-r1)
(481/679) Installing libxscrnsaver (1.2.4-r0)
(482/679) Installing libbluray (1.3.4-r0)
(483/679) Installing mpg123-libs (1.31.3-r1)
(484/679) Installing libopenmpt (0.7.2-r0)
(485/679) Installing cjson (1.7.17-r0)
(486/679) Installing mbedtls (2.28.5-r0)
(487/679) Installing librist (0.2.7-r0)
(488/679) Installing libsrt (1.5.2-r0)
(489/679) Installing libssh (0.10.5-r0)
(490/679) Installing libsodium (1.0.18-r3)
(491/679) Installing libzmq (4.3.4-r4)
(492/679) Installing ffmpeg-libavformat (6.0.1-r0)
(493/679) Installing glslang-libs (1.3.243.0-r1)
(494/679) Installing spirv-tools (1.3.243.0-r1)
(495/679) Installing shaderc (2023.3-r1)
(496/679) Installing vulkan-loader (1.3.243.0-r1)
(497/679) Installing libplacebo (5.264.1-r1)
(498/679) Installing ffmpeg-libpostproc (6.0.1-r0)
(499/679) Installing ffmpeg-libswscale (6.0.1-r0)
(500/679) Installing vidstab (1.1.1-r0)
(501/679) Installing zimg (3.0.5-r0)
(502/679) Installing ffmpeg-libavfilter (6.0.1-r0)
(503/679) Installing v4l-utils-libs (1.24.1-r0)
(504/679) Installing ffmpeg-libavdevice (6.0.1-r0)
(505/679) Installing libcdio (2.1.0-r2)
(506/679) Installing libcdio-paranoia (10.2.2.0.1-r1)
(507/679) Installing libdvdcss (1.4.3-r0)
(508/679) Installing libdvdread (6.1.3-r1)
(509/679) Installing libdvdnav (6.1.1-r0)
(510/679) Installing libsamplerate (0.2.2-r2)
(511/679) Installing jack (1.9.22-r4)
(512/679) Installing luajit (2.1_p20230410-r1)
(513/679) Installing pipewire-libs (0.3.70-r1)
(514/679) Installing fftw-double-libs (3.3.10-r2)
(515/679) Installing rubberband-libs (3.2.1-r0)
(516/679) Installing sndio-libs (1.9.0-r0)
(517/679) Installing uchardet-libs (0.0.8-r0)
(518/679) Installing mpv (0.36.0-r0)
(519/679) Installing ncurses (6.4_p20230506-r0)
(520/679) Installing pnc (0.9.4-r1)
(521/679) Installing postmarketos-base-ui (10-r1)
Executing postmarketos-base-ui-10-r1.post-install
(522/679) Installing elogind-common (246.10-r9)
(523/679) Installing busctl (246.10-r9)
(524/679) Installing gojq (0.12.12-r6)
(525/679) Installing libnm (1.42.8-r0)
(526/679) Installing networkmanager-common (1.42.8-r0)
(527/679) Installing networkmanager-openrc (1.42.8-r0)
(528/679) Installing libndp (1.8-r1)
(529/679) Installing networkmanager (1.42.8-r0)
Executing networkmanager-1.42.8-r0.pre-install
Executing networkmanager-1.42.8-r0.post-install
*
* To modify system network connections without the root password, add your user
* account to the 'plugdev' group.
*
* If you use wifi, bluetooth, ppp, wwan (mobile broadband), adsl or ovs (Open
* vSwitch), install the corresponding plugin: apk add networkmanager-<name>.
*
* If you use NetworkManager features which require dnsmasq, you need to install
* dnsmasq support: apk add networkmanager-dnsmasq
*
(530/679) Installing postmarketos-config-nftables-networkmanager (0.14-r1)
(531/679) Installing networkmanager-lang (1.42.8-r0)
(532/679) Installing networkmanager-cli (1.42.8-r0)
(533/679) Installing pcre (8.45-r3)
(534/679) Installing slang (2.3.3-r1)
(535/679) Installing newt (0.52.23-r1)
(536/679) Installing newt-lang (0.52.23-r1)
(537/679) Installing networkmanager-tui (1.42.8-r0)
(538/679) Installing networkmanager-wifi (1.42.8-r0)
Executing networkmanager-wifi-1.42.8-r0.post-install
*
* To control WiFi devices, install either 'wpa_supplicant' or 'iwd' package,
* enable and start the corresponding service (rc-update add <name>;
* rc-service <name> start), and restart networkmanager.
*
* If you chose iwd, you have to also add 'wifi.backend=iwd' into section
* '[device]' in /etc/NetworkManager/NetworkManager.conf.
*
(539/679) Installing networkmanager-wwan (1.42.8-r0)
(540/679) Installing networkmanager-dnsmasq (1.42.8-r0)
(541/679) Installing postmarketos-base-ui-networkmanager (10-r1)
(542/679) Installing pulseaudio-utils (9999_git20220621-r1)
(543/679) Installing superd (0.7.1-r10)
(544/679) Installing wireplumber-libs (0.4.14-r2)
(545/679) Installing wireplumber (0.4.14-r2)
(546/679) Installing wireplumber-lang (0.4.14-r2)
(547/679) Installing libcamera-ipa (0.0.5-r1)
(548/679) Installing libunwind (1.6.2-r3)
(549/679) Installing yaml (0.2.5-r1)
(550/679) Installing libcamera (0.0.5-r1)
(551/679) Installing libuv (1.44.2-r2)
(552/679) Installing roc-toolkit-libs (0.2.4-r0)
(553/679) Installing webrtc-audio-processing (0.3.1-r6)
(554/679) Installing pipewire (0.3.70-r1)
Executing pipewire-0.3.70-r1.post-install
(555/679) Installing pipewire-lang (0.3.70-r1)
(556/679) Installing pipewire-pulse (0.3.70-r1)
(557/679) Installing libcanberra-pulse (0.30-r9)
(558/679) Installing postmarketos-base-ui-pulseaudio (10-r1)
(559/679) Installing sxmo-common-audio-pipewire (1.0.0-r0)
(560/679) Installing libattr (2.5.1-r4)
(561/679) Installing skalibs (2.13.1.1-r1)
(562/679) Installing utmps-libs (0.1.2.1-r1)
(563/679) Installing coreutils (9.3-r1)
(564/679) Installing gawk (5.2.2-r0)
(565/679) Installing curl (8.5.0-r0)
(566/679) Installing doas (6.8.2-r4)
Executing doas-6.8.2-r4.post-install
(567/679) Installing sxmo-utils (1.14.1-r1)
(568/679) Installing sxmo-utils-openrc (1.14.1-r1)
(569/679) Installing autologin (1.0.0-r5)
(570/679) Installing tinydm (1.1.3-r0)
(571/679) Installing tinydm-openrc (1.1.3-r0)
(572/679) Installing postmarketos-base-ui-tinydm (10-r1)
(573/679) Installing v4l-utils (1.24.1-r0)
(574/679) Installing vim-common (9.0.2073-r0)
(575/679) Installing xxd (9.0.2073-r0)
(576/679) Installing vim (9.0.2073-r0)
(577/679) Installing nftables-vim (0_git20200629-r1)
(578/679) Installing vvmd (0.15-r0)
(579/679) Installing xdg-user-dirs (0.18-r0)
(580/679) Installing xdg-user-dirs-lang (0.18-r0)
(581/679) Installing attr (2.5.1-r4)
(582/679) Installing ffmpeg (6.0.1-r0)
(583/679) Installing py3-brotli (1.0.9-r14)
(584/679) Installing py3-brotli-pyc (1.0.9-r14)
(585/679) Installing py3-mutagen (1.46.0-r2)
(586/679) Installing py3-mutagen-pyc (1.46.0-r2)
(587/679) Installing py3-pycryptodomex (3.17.0-r0)
(588/679) Installing py3-cparser (2.21-r2)
(589/679) Installing py3-cparser-pyc (2.21-r2)
(590/679) Installing py3-cffi (1.15.1-r3)
(591/679) Installing py3-cffi-pyc (1.15.1-r3)
(592/679) Installing py3-cryptography (41.0.3-r0)
(593/679) Installing py3-cryptography-pyc (41.0.3-r0)
(594/679) Installing py3-jeepney (0.8.0-r2)
(595/679) Installing py3-jeepney-pyc (0.8.0-r2)
(596/679) Installing py3-secretstorage (3.3.3-r2)
(597/679) Installing py3-secretstorage-pyc (3.3.3-r2)
(598/679) Installing py3-websockets (10.4-r3)
(599/679) Installing py3-websockets-pyc (10.4-r3)
(600/679) Installing yt-dlp-core (2023.11.14-r0)
(601/679) Installing yt-dlp-core-pyc (2023.11.14-r0)
(602/679) Installing yt-dlp (2023.11.14-r0)
(603/679) Installing bonsai (1.0.0-r1)
(604/679) Installing sxmobar (1.0.1-r2)
(605/679) Installing sxmo-common (1.14.0-r0)
Executing sxmo-common-1.14.0-r0.post-install
* service sxmo-setpermissions added to runlevel default
* service modemmanager added to runlevel default
* service tinydm added to runlevel default
* service networkmanager added to runlevel default
(606/679) Installing bemenu (0.6.14-r1)
(607/679) Installing ncurses-terminfo (6.4_p20230506-r0)
(608/679) Installing utf8proc (2.8.0-r0)
(609/679) Installing fcft (3.1.5-r1)
(610/679) Installing foot (1.14.0-r6)
(611/679) Installing grim (1.4.0-r0)
(612/679) Installing basu (0.2.1-r1)
(613/679) Installing mako (1.7.1-r1)
(614/679) Installing seatd (0.7.0-r1)
Executing seatd-0.7.0-r1.pre-install
Executing seatd-0.7.0-r1.post-install
* If you need seatd-launch SUID binary, install it: apk add cmd:seatd-launch.
(615/679) Installing seatd-openrc (0.7.0-r1)
(616/679) Installing slurp (1.4.0-r0)
(617/679) Installing swaybg (1.2.0-r0)
(618/679) Installing libelogind (246.10-r9)
(619/679) Installing swayidle (1.8.0-r0)
(620/679) Installing libseat (0.7.0-r1)
(621/679) Installing xcb-util-wm (0.4.2-r0)
(622/679) Installing xcb-util-renderutil (0.3.10-r0)
(623/679) Installing wlroots (0.16.2-r3)
(624/679) Installing sxmo-sway (1.8.1-r0)
(625/679) Installing sxmo-sway-wallpapers (1.8.1-r0)
(626/679) Installing device-pine64-pinephone-sway (0.46-r1)
(627/679) Installing wl-clipboard (2.1.0-r0)
(628/679) Installing libseccomp (2.5.4-r2)
(629/679) Installing wob (0.14.2-r0)
(630/679) Installing wtype (0.4-r0)
(631/679) Installing wvkbd (0.13-r0)
(632/679) Installing xorg-server-common (21.1.10-r0)
(633/679) Installing libxkbfile (1.1.2-r2)
(634/679) Installing xkbcomp (1.4.6-r1)
(635/679) Installing libxfont2 (2.0.6-r0)
(636/679) Installing libtirpc-conf (1.3.3-r2)
(637/679) Installing libtirpc-nokrb (1.3.3-r2)
(638/679) Installing libxcvt (0.1.2-r0)
(639/679) Installing xwayland (23.1.2-r1)
(640/679) Installing postmarketos-ui-sxmo-de-sway (1.14.0-r0)
Executing postmarketos-ui-sxmo-de-sway-1.14.0-r0.post-install
tinydm: session set: /usr/share/wayland-sessions/swmo.desktop
* service seatd added to runlevel default
(641/679) Installing libexif (0.6.24-r1)
(642/679) Installing libgfortran (12.2.1_git20220924-r10)
(643/679) Installing openblas (0.3.23-r0)
(644/679) Installing libb2 (0.98.1-r2)
(645/679) Installing double-conversion (3.2.1-r1)
(646/679) Installing libpcre2-16 (10.42-r1)
(647/679) Installing qt6-qtbase (6.5.2-r0)
(648/679) Installing libice (1.1.1-r2)
(649/679) Installing libsm (1.2.4-r1)
(650/679) Installing libxt (1.3.0-r2)
(651/679) Installing libxmu (1.1.4-r2)
(652/679) Installing xset (1.2.5-r1)
(653/679) Installing xprop (1.2.6-r0)
(654/679) Installing xdg-utils (1.1.3-r4)
(655/679) Installing xcb-util (0.4.1-r2)
(656/679) Installing xcb-util-image (0.4.1-r0)
(657/679) Installing xcb-util-cursor (0.1.4-r0)
(658/679) Installing xcb-util-keysyms (0.4.1-r0)
(659/679) Installing libxkbcommon-x11 (1.5.0-r2)
(660/679) Installing qt6-qtbase-x11 (6.5.2-r0)
(661/679) Installing qt6-qtdeclarative (6.5.2-r0)
(662/679) Installing qt6-qtwayland (6.5.2-r0)
(663/679) Installing hwloc (2.9.2-r0)
(664/679) Installing libtbb (2021.9.0-r0)
(665/679) Installing opencv (4.7.0-r6)
(666/679) Installing postprocessd (0.3.0-r0)
(667/679) Installing postprocessd-megapixels (0.3.0-r0)
(668/679) Installing sfeed (1.7-r0)
(669/679) Installing hkdm (0.2.0-r0)
(670/679) Installing buffyboard (0.2.0-r1)
(671/679) Installing font-terminus (4.49.1-r4)
(672/679) Installing kbd-misc (2.5.1-r7)
(673/679) Installing kbd (2.5.1-r7)
(674/679) Installing kbd-openrc (2.5.1-r7)
(675/679) Installing ttyescape (1.0.1-r1)
Executing ttyescape-1.0.1-r1.post-install
(676/679) Installing ttyescape-openrc (1.0.1-r1)
(677/679) Installing gc (8.2.2-r2)
(678/679) Installing w3m (0.5.3.20230718-r0)
(679/679) Installing w3m-image (0.5.3.20230718-r0)
Executing busybox-1.36.1-r5.trigger
Executing fontconfig-2.14.2-r3.trigger
Executing glib-2.76.4-r0.trigger
Executing shared-mime-info-2.2-r5.trigger
Executing gdk-pixbuf-2.42.10-r5.trigger
Executing ca-certificates-20230506-r0.trigger
Executing eudev-3.2.11-r8.trigger
Executing postmarketos-mkinitfs-2.1.1-r0.trigger
03:22:47.152789 Generating for kernel version: 6.3.5
03:22:47.155403 Output directory: /boot
03:22:47.155636 Unknown or no compression format set, using gzip
03:22:47.156431 == Generating initramfs ==
03:22:47.157118 - Using compression format gzip with level "default"
03:22:47.157327 - Searching for directories specified in /usr/share/mkinitfs/dirs
03:22:47.158180 -- Creating directories from: /usr/share/mkinitfs/dirs/00-initramfs-base.dirs
03:22:47.161594 - Searching for directories specified in /etc/mkinitfs/dirs
03:22:47.161939 - Searching for file lists from /usr/share/mkinitfs/files
03:22:47.162542 -- Including files from: /usr/share/mkinitfs/files/00-initramfs-base.files
03:22:47.172203 -- Including files from: /usr/share/mkinitfs/files/30-osk-sdl.files
03:22:47.172323 -- Including files from: /usr/share/mkinitfs/files/30-postmarketos-bootsplash.files
03:22:47.173245 - Searching for file lists from /etc/mkinitfs/files
03:22:47.173391 - Searching for hook scripts from /usr/share/mkinitfs/hooks
03:22:47.173540 - Searching for hook scripts from /etc/mkinitfs/hooks
03:22:47.174768 -- Including kernel modules from deviceinfo
03:22:47.189023 - Searching for kernel modules from /usr/share/mkinitfs/modules
03:22:47.189235 -- Including modules from: /usr/share/mkinitfs/modules/00-default.modules
03:22:47.205598 - Searching for kernel modules from /etc/mkinitfs/modules
03:22:47.209395 - Writing and verifying archive: initramfs
03:22:47.803836 initramfs completed in: 0.64s
03:22:47.803924 Unknown or no compression format set, using gzip
03:22:47.804324 == Generating initramfs-extra ==
03:22:47.804363 - Using compression format gzip with level "default"
03:22:47.804399 - Searching for file lists from /usr/share/mkinitfs/files-extra
03:22:47.804659 -- Including files from: /usr/share/mkinitfs/files-extra/00-initramfs-extra-base.files
03:22:47.826386 - Searching for file lists from /etc/mkinitfs/files-extra
03:22:47.826562 - Searching for hook scripts from /usr/share/mkinitfs/hooks-extra
03:22:47.826653 - Searching for hook scripts from /etc/mkinitfs/hooks-extra
03:22:47.827085 - Searching for kernel modules from /usr/share/mkinitfs/modules-extra
03:22:47.827230 -- Unable to find dir, skipping...
03:22:47.827575 - Searching for kernel modules from /etc/mkinitfs/modules-extra
03:22:47.827600 -- Unable to find dir, skipping...
03:22:47.827745 - Including osk-sdl support
03:22:47.981316 - Writing and verifying archive: initramfs-extra
03:23:08.620848 initramfs-extra completed in: 20.82s
03:23:08.620932 == Using boot-deploy to finalize/install files ==
==> kernel: device-tree blob operations
==> Checking free space at /boot
... OK!
==> Installing: /boot/initramfs
==> Installing: /boot/initramfs-extra
==> Installing: /boot/sun50i-a64-pinephone-1.2.dtb
03:23:11.183815 boot-deploy completed in: 2.56s
03:23:11.187648 mkinitfs completed in: 24.04s
Executing postmarketos-base-26.1-r0.trigger
Configuring a getty on port ttyS0 with baud rate 115200
Executing dbus-1.14.8-r0.trigger
Executing gtk-update-icon-cache-3.24.38-r1.trigger
Executing mkfontscale-1.2.2-r3.trigger
OK: 1451 MiB in 704 packages
(002289) [03:23:12] (rootfs_pine64-pinephone) % apk --no-progress del openssh-client-krb5 vlan --no-interactive
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
OK: 1451 MiB in 704 packages
(002289) [03:23:13] (rootfs_pine64-pinephone) calculate depends of device-pine64-pinephone (pmbootstrap -v for details)
(002289) [03:23:13] (rootfs_pine64-pinephone) install device-pine64-pinephone
(002289) [03:23:13] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/tmp/apk_progress_fifo
(002289) [03:23:13] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/tmp/apk_progress_fifo
(002289) [03:23:13] (rootfs_pine64-pinephone) % cat /tmp/apk_progress_fifo
(002289) [03:23:13] (rootfs_pine64-pinephone) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add device-pine64-pinephone --no-interactive
(002289) [03:23:13] New background process: pid=4010, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
OK: 1451 MiB in 704 packages
(002289) [03:23:15] (rootfs_pine64-pinephone) % apk --no-progress del openssh-client-krb5 vlan --no-interactive
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
OK: 1451 MiB in 704 packages
(002289) [03:23:16] (rootfs_pine64-pinephone) calculate depends of postmarketos-mkinitfs (pmbootstrap -v for details)
(002289) [03:23:16] (rootfs_pine64-pinephone) install postmarketos-mkinitfs
(002289) [03:23:16] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/tmp/apk_progress_fifo
(002289) [03:23:16] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/tmp/apk_progress_fifo
(002289) [03:23:16] (rootfs_pine64-pinephone) % cat /tmp/apk_progress_fifo
(002289) [03:23:16] (rootfs_pine64-pinephone) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add postmarketos-mkinitfs --no-interactive
(002289) [03:23:16] New background process: pid=4027, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
OK: 1451 MiB in 704 packages
(002289) [03:23:17] (rootfs_pine64-pinephone) mkinitfs postmarketos-allwinner
(002289) [03:23:17] (rootfs_pine64-pinephone) % mkinitfs
03:23:17.551511 Generating for kernel version: 6.3.5
03:23:17.553548 Output directory: /boot
03:23:17.553758 Unknown or no compression format set, using gzip
03:23:17.554490 == Generating initramfs ==
03:23:17.555169 - Using compression format gzip with level "default"
03:23:17.555382 - Searching for directories specified in /usr/share/mkinitfs/dirs
03:23:17.556250 -- Creating directories from: /usr/share/mkinitfs/dirs/00-initramfs-base.dirs
03:23:17.558277 - Searching for directories specified in /etc/mkinitfs/dirs
03:23:17.559003 - Searching for file lists from /usr/share/mkinitfs/files
03:23:17.559581 -- Including files from: /usr/share/mkinitfs/files/00-initramfs-base.files
03:23:17.569106 -- Including files from: /usr/share/mkinitfs/files/30-osk-sdl.files
03:23:17.569207 -- Including files from: /usr/share/mkinitfs/files/30-postmarketos-bootsplash.files
03:23:17.570121 - Searching for file lists from /etc/mkinitfs/files
03:23:17.570254 - Searching for hook scripts from /usr/share/mkinitfs/hooks
03:23:17.570419 - Searching for hook scripts from /etc/mkinitfs/hooks
03:23:17.571600 -- Including kernel modules from deviceinfo
03:23:17.585981 - Searching for kernel modules from /usr/share/mkinitfs/modules
03:23:17.586186 -- Including modules from: /usr/share/mkinitfs/modules/00-default.modules
03:23:17.602223 - Searching for kernel modules from /etc/mkinitfs/modules
03:23:17.606215 - Writing and verifying archive: initramfs
03:23:18.194621 initramfs completed in: 0.64s
03:23:18.194715 Unknown or no compression format set, using gzip
03:23:18.195189 == Generating initramfs-extra ==
03:23:18.195231 - Using compression format gzip with level "default"
03:23:18.195263 - Searching for file lists from /usr/share/mkinitfs/files-extra
03:23:18.195576 -- Including files from: /usr/share/mkinitfs/files-extra/00-initramfs-extra-base.files
03:23:18.216555 - Searching for file lists from /etc/mkinitfs/files-extra
03:23:18.216759 - Searching for hook scripts from /usr/share/mkinitfs/hooks-extra
03:23:18.216938 - Searching for hook scripts from /etc/mkinitfs/hooks-extra
03:23:18.217622 - Searching for kernel modules from /usr/share/mkinitfs/modules-extra
03:23:18.217892 -- Unable to find dir, skipping...
03:23:18.218620 - Searching for kernel modules from /etc/mkinitfs/modules-extra
03:23:18.218661 -- Unable to find dir, skipping...
03:23:18.218990 - Including osk-sdl support
03:23:18.382353 - Writing and verifying archive: initramfs-extra
03:23:38.669484 initramfs-extra completed in: 20.47s
03:23:38.669569 == Using boot-deploy to finalize/install files ==
==> kernel: device-tree blob operations
==> Checking free space at /boot
... OK!
==> Installing: /boot/initramfs
==> Installing: /boot/initramfs-extra
==> Installing: /boot/sun50i-a64-pinephone-1.2.dtb
03:23:41.423478 boot-deploy completed in: 2.75s
03:23:41.427418 mkinitfs completed in: 23.88s
(002289) [03:23:41] *** SET LOGIN PASSWORD FOR: 'user' ***
(002289) [03:23:41] (rootfs_pine64-pinephone) % passwd user
New password: Retype new password: passwd: password updated successfully
(002289) [03:23:41] (rootfs_pine64-pinephone) % grep ^root:!: /etc/shadow
(002289) [03:23:41] (rootfs_pine64-pinephone) locking root
(002289) [03:23:41] (rootfs_pine64-pinephone) % passwd -l root
passwd: password changed.
(002289) [03:23:41] NOTE: No valid keymap specified for device
(002289) [03:23:41] (rootfs_pine64-pinephone) % setup-timezone -i GMT
(002289) [03:23:42] (rootfs_pine64-pinephone) % sh -c echo pine64-pinephone > /etc/hostname
(002289) [03:23:42] (rootfs_pine64-pinephone) % sed -i -e s/^127\.0\.0\.1.*/127.0.0.1\tpine64\-pinephone localhost.localdomain localhost/ /etc/hosts
(002289) [03:23:42] (rootfs_pine64-pinephone) % rc-update del sshd default
* service sshd removed from runlevel default
(002289) [03:23:42] % cd /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/runlevels; sudo find -name sshd
(002289) [03:23:42] *** (3/4) PREPARE INSTALL BLOCKDEVICE ***
(002289) [03:23:42] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/distfiles
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/apk
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/usr/bin/qemu-aarch64-static
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/proc
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/sccache
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/rust
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/packages
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/netboot
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/go
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/git
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/ccache
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/abuild-config
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/appstream-data
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/keys
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/shm
(002289) [03:23:43] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev
(002289) [03:23:43] % sudo rm /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/in-pmbootstrap
(002289) [03:23:43] % sudo rm /home/build/.local/var/pmbootstrap/chroot_native/in-pmbootstrap
(002289) [03:23:43] % sudo du -ks /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone
1535652 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/in-pmbootstrap
(002289) [03:23:43] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/rootfs
(002289) [03:23:43] (native) create pine64-pinephone.img (2106M)
(002289) [03:23:43] (native) % truncate -s 2106M /home/pmos/rootfs/pine64-pinephone.img
(002289) [03:23:43] (native) mount /dev/install (pine64-pinephone.img)
(002289) [03:23:43] (native) mount /home/pmos/rootfs/pine64-pinephone.img (loop)
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop-control
(002289) [03:23:43] % sudo mount --bind /dev/loop-control /home/build/.local/var/pmbootstrap/chroot_native//dev/loop-control
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop0
(002289) [03:23:43] % sudo mount --bind /dev/loop0 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop0
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop1
(002289) [03:23:43] % sudo mount --bind /dev/loop1 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop1
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop2
(002289) [03:23:43] % sudo mount --bind /dev/loop2 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop2
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop3
(002289) [03:23:43] % sudo mount --bind /dev/loop3 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop3
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop4
(002289) [03:23:43] % sudo mount --bind /dev/loop4 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop4
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop5
(002289) [03:23:43] % sudo mount --bind /dev/loop5 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop5
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop6
(002289) [03:23:43] % sudo mount --bind /dev/loop6 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop6
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native//dev/loop7
(002289) [03:23:43] % sudo mount --bind /dev/loop7 /home/build/.local/var/pmbootstrap/chroot_native//dev/loop7
(002289) [03:23:43] (native) % losetup -f /home/pmos/rootfs/pine64-pinephone.img
(002289) [03:23:43] (native) % losetup --json --list
{
"loopdevices": [
{
"name": "/dev/loop0",
"sizelimit": 0,
"offset": 0,
"autoclear": false,
"ro": false,
"back-file": "/home/pmos/rootfs/pine64-pinephone.img",
"dio": false,
"log-sec": 512
}
]
}
(002289) [03:23:43] (native) % losetup --json --list
{
"loopdevices": [
{
"name": "/dev/loop0",
"sizelimit": 0,
"offset": 0,
"autoclear": false,
"ro": false,
"back-file": "/home/pmos/rootfs/pine64-pinephone.img",
"dio": false,
"log-sec": 512
}
]
}
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/dev/install
(002289) [03:23:43] % sudo mount --bind /dev/loop0 /home/build/.local/var/pmbootstrap/chroot_native/dev/install
(002289) [03:23:43] (native) partition /dev/install (boot: 256M, reserved: 0M, root: the rest)
(002289) [03:23:43] (native) % parted -s /dev/install mktable msdos
(002289) [03:23:43] (native) % parted -s /dev/install mkpart primary ext2 2048s 256M
(002289) [03:23:43] (native) % parted -s /dev/install mkpart primary 256M 100%
(002289) [03:23:43] (native) % parted -s /dev/install set 1 boot on
(002289) [03:23:43] (native) % losetup --json --list
{
"loopdevices": [
{
"name": "/dev/loop0",
"sizelimit": 0,
"offset": 0,
"autoclear": false,
"ro": false,
"back-file": "/home/pmos/rootfs/pine64-pinephone.img",
"dio": false,
"log-sec": 512
}
]
}
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/dev/installp1
(002289) [03:23:43] % sudo mount --bind /dev/loop0p1 /home/build/.local/var/pmbootstrap/chroot_native/dev/installp1
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/dev/installp2
(002289) [03:23:43] % sudo mount --bind /dev/loop0p2 /home/build/.local/var/pmbootstrap/chroot_native/dev/installp2
(002289) [03:23:43] (native) calculate depends of e2fsprogs (pmbootstrap -v for details)
(002289) [03:23:43] (native) install e2fsprogs
(002289) [03:23:43] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002289) [03:23:43] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002289) [03:23:43] (native) % cat /tmp/apk_progress_fifo
(002289) [03:23:43] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add e2fsprogs --no-interactive
(002289) [03:23:43] New background process: pid=5052, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/3) Installing libcom_err (1.47.0-r2)
(2/3) Installing e2fsprogs-libs (1.47.0-r2)
(3/3) Installing e2fsprogs (1.47.0-r2)
Executing busybox-1.36.1-r5.trigger
OK: 26 MiB in 72 packages
(002289) [03:23:43] (native) format /dev/installp2 (root, ext4)
(002289) [03:23:43] (native) % mkfs.ext4 -O ^metadata_csum -F -q -L pmOS_root -N 100000 /dev/installp2
(002289) [03:23:43] (native) mount /dev/installp2 to /mnt/install
(002289) [03:23:43] (native) % mkdir -p /mnt/install
(002289) [03:23:43] (native) % mount /dev/installp2 /mnt/install
(002289) [03:23:43] (native) calculate depends of e2fsprogs (pmbootstrap -v for details)
(002289) [03:23:43] (native) install e2fsprogs
(002289) [03:23:43] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002289) [03:23:43] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002289) [03:23:43] (native) % cat /tmp/apk_progress_fifo
(002289) [03:23:43] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add e2fsprogs --no-interactive
(002289) [03:23:43] New background process: pid=5072, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
OK: 26 MiB in 72 packages
(002289) [03:23:43] (native) format /dev/installp1 (boot, ext2), mount to /mnt/install/boot
(002289) [03:23:43] (native) % mkfs.ext2 -F -q -L pmOS_boot /dev/installp1
(002289) [03:23:43] (native) % mkdir -p /mnt/install/boot
(002289) [03:23:43] (native) % mount /dev/installp1 /mnt/install/boot
(002289) [03:23:43] (native) create /etc/fstab
(002289) [03:23:43] (native) % blkid -s UUID -o value /dev/installp1
9c1fe822-c12e-4ba4-8750-00de0e758275
(002289) [03:23:43] (native) % blkid -s UUID -o value /dev/installp2
5bad2566-d64b-4bb4-9875-a29795b9f756
(002289) [03:23:43] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev
(002289) [03:23:43] % sudo mount -t tmpfs -o size=1M,noexec,dev tmpfs /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev
(002289) [03:23:43] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/pts /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/shm
(002289) [03:23:43] % sudo mount -t tmpfs -o nodev,nosuid,noexec tmpfs /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/shm
(002289) [03:23:43] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/null c 1 3
(002289) [03:23:43] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/zero c 1 5
(002289) [03:23:43] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/full c 1 7
(002289) [03:23:43] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/random c 1 8
(002289) [03:23:43] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/urandom c 1 9
(002289) [03:23:43] % sudo ln -sf /proc/self/fd /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/
(002289) [03:23:43] % sudo mount --bind /proc /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/proc
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_apk_aarch64 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/apk
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_appstream/aarch64/v23.06 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/appstream-data
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_ccache_aarch64 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/ccache
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_distfiles /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/distfiles
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_git /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/git
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_go /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/go
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_rust /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/rust
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_abuild /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/abuild-config
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_apk_keys /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/keys
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_sccache /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/sccache
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/images_netboot /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/netboot
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/v23.06 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/packages
(002289) [03:23:43] % sudo mount --bind /home/build/.local/var/pmbootstrap/chroot_native/usr/bin/qemu-aarch64 /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/usr/bin/qemu-aarch64-static
(002289) [03:23:43] % sudo touch /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/in-pmbootstrap
(002289) [03:23:43] (rootfs_pine64-pinephone) % mv /tmp/fstab /etc/fstab
(002289) [03:23:43] (rootfs_pine64-pinephone) mkinitfs
(002289) [03:23:43] (rootfs_pine64-pinephone) % mkinitfs
03:23:44.098957 Generating for kernel version: 6.3.5
03:23:44.102144 Output directory: /boot
03:23:44.102380 Unknown or no compression format set, using gzip
03:23:44.103111 == Generating initramfs ==
03:23:44.103794 - Using compression format gzip with level "default"
03:23:44.104013 - Searching for directories specified in /usr/share/mkinitfs/dirs
03:23:44.104873 -- Creating directories from: /usr/share/mkinitfs/dirs/00-initramfs-base.dirs
03:23:44.107363 - Searching for directories specified in /etc/mkinitfs/dirs
03:23:44.108203 - Searching for file lists from /usr/share/mkinitfs/files
03:23:44.108782 -- Including files from: /usr/share/mkinitfs/files/00-initramfs-base.files
03:23:44.118322 -- Including files from: /usr/share/mkinitfs/files/30-osk-sdl.files
03:23:44.118423 -- Including files from: /usr/share/mkinitfs/files/30-postmarketos-bootsplash.files
03:23:44.119376 - Searching for file lists from /etc/mkinitfs/files
03:23:44.119490 - Searching for hook scripts from /usr/share/mkinitfs/hooks
03:23:44.119645 - Searching for hook scripts from /etc/mkinitfs/hooks
03:23:44.120985 -- Including kernel modules from deviceinfo
03:23:44.135139 - Searching for kernel modules from /usr/share/mkinitfs/modules
03:23:44.135346 -- Including modules from: /usr/share/mkinitfs/modules/00-default.modules
03:23:44.151644 - Searching for kernel modules from /etc/mkinitfs/modules
03:23:44.154920 - Writing and verifying archive: initramfs
03:23:44.742321 initramfs completed in: 0.64s
03:23:44.742372 Unknown or no compression format set, using gzip
03:23:44.742565 == Generating initramfs-extra ==
03:23:44.742587 - Using compression format gzip with level "default"
03:23:44.742602 - Searching for file lists from /usr/share/mkinitfs/files-extra
03:23:44.742732 -- Including files from: /usr/share/mkinitfs/files-extra/00-initramfs-extra-base.files
03:23:44.752753 - Searching for file lists from /etc/mkinitfs/files-extra
03:23:44.752834 - Searching for hook scripts from /usr/share/mkinitfs/hooks-extra
03:23:44.752921 - Searching for hook scripts from /etc/mkinitfs/hooks-extra
03:23:44.753251 - Searching for kernel modules from /usr/share/mkinitfs/modules-extra
03:23:44.753411 -- Unable to find dir, skipping...
03:23:44.753747 - Searching for kernel modules from /etc/mkinitfs/modules-extra
03:23:44.753768 -- Unable to find dir, skipping...
03:23:44.753894 - Including osk-sdl support
03:23:44.895967 - Writing and verifying archive: initramfs-extra
03:24:04.968404 initramfs-extra completed in: 20.23s
03:24:04.968489 == Using boot-deploy to finalize/install files ==
==> kernel: device-tree blob operations
==> Checking free space at /boot
... OK!
==> Installing: /boot/initramfs
==> Installing: /boot/initramfs-extra
==> Installing: /boot/sun50i-a64-pinephone-1.2.dtb
03:24:07.563533 boot-deploy completed in: 2.59s
03:24:07.567407 mkinitfs completed in: 23.47s
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/distfiles
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/var/cache/apk
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/usr/bin/qemu-aarch64-static
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/proc
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/sccache
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/rust
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/packages
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/netboot
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/go
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/git
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/ccache
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/abuild-config
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/appstream-data
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/etc/apk/keys
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev/shm
(002289) [03:24:07] % sudo umount /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/dev
(002289) [03:24:07] % sudo rm /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/in-pmbootstrap
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/rust
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/abuild-config
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/ccache
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/git
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/sccache
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/netboot
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/packages
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap/go
(002289) [03:24:07] % sudo rmdir /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/mnt/pmbootstrap
(002289) [03:24:07] *** (4/4) FILL INSTALL BLOCKDEVICE ***
(002289) [03:24:07] (native) copy rootfs_pine64-pinephone to /mnt/install/
(002289) [03:24:07] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/rootfs_pine64-pinephone
(002289) [03:24:07] % sudo mount --bind /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone /home/build/.local/var/pmbootstrap/chroot_native/mnt/rootfs_pine64-pinephone
(002289) [03:24:07] % sudo rm /home/build/.local/var/pmbootstrap/chroot_native/mnt/rootfs_pine64-pinephone/usr/bin/qemu-aarch64-static
(002289) [03:24:07] % sudo rm /home/build/.local/var/pmbootstrap/chroot_rootfs_pine64-pinephone/tmp/apk_progress_fifo
(002289) [03:24:07] (native) % cd /mnt/rootfs_pine64-pinephone; cp -a root opt dev etc lib bin mnt sys boot run srv usr var sbin tmp proc media /mnt/install/
(002289) [03:24:10] % sudo mkdir /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/home
(002289) [03:24:10] % sudo cp -a /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/skel /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/home/user
(002289) [03:24:10] % sudo chown -R 10000 /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/home/user
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58e4f17d.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/build.postmarketos.org.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616abc23.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616ae350.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5e69ca50.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-60ac2099.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58cbb476.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616a9724.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-61666e3f.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616adfeb.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616db30d.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616ac3bc.rsa.pub /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/keys/
(002289) [03:24:10] % sudo cp /home/build/.local/var/pmbootstrap/cache_apk_aarch64/APKINDEX.1d747f28.tar.gz /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/var/cache/apk/
(002289) [03:24:10] % sudo cp /home/build/.local/var/pmbootstrap/cache_apk_aarch64/APKINDEX.257f6e09.tar.gz /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/var/cache/apk/
(002289) [03:24:10] % sudo cp /home/build/.local/var/pmbootstrap/cache_apk_aarch64/APKINDEX.bddb353e.tar.gz /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/var/cache/apk/
(002289) [03:24:10] % sudo sed -i /\/mnt\/pmbootstrap\/packages/d /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/repositories
(002289) [03:24:10] % cat /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/etc/apk/repositories
http://mirror.postmarketos.org/postmarketos/v23.06
http://dl-cdn.alpinelinux.org/alpine/v3.18/main
http://dl-cdn.alpinelinux.org/alpine/v3.18/community
(002289) [03:24:10] Embed firmware u-boot/pine64-pinephone/u-boot-sunxi-with-spl-528.bin in the SD card image at offset 8 with step size 1024
(002289) [03:24:10] (native) % dd if=/mnt/rootfs_pine64-pinephone/usr/share/u-boot/pine64-pinephone/u-boot-sunxi-with-spl-528.bin of=/dev/install bs=1024 seek=8
741+1 records in
741+1 records out
(002289) [03:24:10] % sudo umount /home/build/.local/var/pmbootstrap/chroot_native/mnt/install/boot
(002289) [03:24:11] % sudo umount /home/build/.local/var/pmbootstrap/chroot_native/mnt/install
(002289) [03:24:11] (native) % losetup --json --list
{
"loopdevices": [
{
"name": "/dev/loop0",
"sizelimit": 0,
"offset": 0,
"autoclear": false,
"ro": false,
"back-file": "/home/pmos/rootfs/pine64-pinephone.img",
"dio": false,
"log-sec": 512
}
]
}
(002289) [03:24:11] (native) umount /dev/loop0
(002289) [03:24:11] (native) % losetup -d /dev/loop0
(002289) [03:24:11] % sudo rm /home/build/.local/var/pmbootstrap/chroot_native/in-pmbootstrap
(002289) [03:24:11]
(002289) [03:24:11] *** FLASHING INFORMATION ***
(002289) [03:24:11] Refer to the installation instructions of your device, or the generic install instructions in the wiki.
(002289) [03:24:11] https://wiki.postmarketos.org/wiki/Installation_guide#pmbootstrap_flash
(002289) [03:24:11]
(002289) [03:24:11] *** SSH DAEMON INFORMATION ***
(002289) [03:24:11] SSH daemon is disabled (--no-sshd).
(002289) [03:24:11]
(002289) [03:24:11] *** FIREWALL INFORMATION ***
(002289) [03:24:11] Firewall is enabled, but may not work (couldn't determine if kernel supports nftables).
(002289) [03:24:11] For more information: https://postmarketos.org/firewall
(002289) [03:24:11]
(002289) [03:24:11] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(002289) [03:24:11] DONE!
++ pmbootstrap config work
+ '[' -e /home/build/.local/var/pmbootstrap/chroot_native/home/pmos/rootfs/pine64-pinephone.img ']'
++ pmbootstrap config work
+ sudo mv /home/build/.local/var/pmbootstrap/chroot_native/home/pmos/rootfs/pine64-pinephone.img out/20240122-0322-postmarketOS-v23.06-sxmo-de-sway-1.14.0-pine64-pinephone.img
+ ls -lh out
total 1.6G
-rw-r--r-- 1 root 12345 2.1G Jan 22 03:24 20240122-0322-postmarketOS-v23.06-sxmo-de-sway-1.14.0-pine64-pinephone.img
|