forked from LiBwrt/openwrt-6.x
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmake.log
5293 lines (5170 loc) · 631 KB
/
make.log
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
make[2]: Entering directory '/home/albresky/repos/openwrt-6.x/scripts/config'
make[2]: 'conf' is up to date.
make[2]: Leaving directory '/home/albresky/repos/openwrt-6.x/scripts/config'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.json'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.json'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.json'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.json'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.json'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.json'
time: target/linux/prereq#0.09#0.22#0.30
WARNING: your configuration is out of sync. Please run make menuconfig, oldconfig or defconfig!
make[1]: Entering directory '/home/albresky/repos/openwrt-6.x'
make[2]: Entering directory '/home/albresky/repos/openwrt-6.x'
+ mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl
+ cd /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl
+ mkdir -p bin lib stamp usr/include usr/lib
mkdir -p /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/stamp
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/.prepared
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/target/linux'
make[4]: Entering directory '/home/albresky/repos/openwrt-6.x/target/linux/qualcommax'
rm -f /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/localversion
/home/albresky/repos/openwrt-6.x/scripts/kconfig.pl + + /home/albresky/repos/openwrt-6.x/target/linux/generic/config-6.6 /home/albresky/repos/openwrt-6.x/target/linux/qualcommax/config-6.6 /home/albresky/repos/openwrt-6.x/target/linux/qualcommax/ipq60xx/config-default > /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.target
awk '/^(#[[:space:]]+)?CONFIG_KERNEL/{sub("CONFIG_KERNEL_","CONFIG_");print}' /home/albresky/repos/openwrt-6.x/.config >> /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.target
echo "# CONFIG_KALLSYMS_EXTRA_PASS is not set" >> /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.target
echo "# CONFIG_KALLSYMS_ALL is not set" >> /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.target
echo "CONFIG_KALLSYMS_UNCOMPRESSED=y" >> /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.target
/home/albresky/repos/openwrt-6.x/scripts/package-metadata.pl kconfig /home/albresky/repos/openwrt-6.x/tmp/.packageinfo /home/albresky/repos/openwrt-6.x/.config 6.6 > /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.override
/home/albresky/repos/openwrt-6.x/scripts/kconfig.pl 'm+' '+' /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.target /dev/null /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.override > /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set
mv /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.old
grep -v INITRAMFS /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.old > /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set
echo 'CONFIG_INITRAMFS_SOURCE=""' >> /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set
echo '# CONFIG_INITRAMFS_FORCE is not set' >> /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set
echo "# CONFIG_INITRAMFS_PRESERVE_MTIME is not set" >> /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set
rm -rf /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/modules
cmp -s /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.prev || { cp /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config; cp /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.prev; }
export MAKEFLAGS= ; [ -d /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/user_headers ] || make -C /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42 KCFLAGS="-fmacro-prefix-map=/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl=target-aarch64_cortex-a53_musl -fno-caller-saves " HOSTCFLAGS="-O2 -I/home/albresky/repos/openwrt-6.x/staging_dir/host/include -Wall -Wmissing-prototypes -Wstrict-prototypes" CROSS_COMPILE="aarch64-openwrt-linux-musl-" ARCH="arm64" KBUILD_HAVE_NLS=no KBUILD_BUILD_USER="Albresky" KBUILD_BUILD_HOST="" KBUILD_BUILD_TIMESTAMP="Sun Jul 28 15:04:06 2024" KBUILD_BUILD_VERSION="0" KBUILD_HOSTLDFLAGS="-L/home/albresky/repos/openwrt-6.x/staging_dir/host/lib" CONFIG_SHELL="bash" V='' cmd_syscalls= CC="aarch64-openwrt-linux-musl-gcc" KERNELRELEASE=6.6.42 INSTALL_HDR_PATH=/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/user_headers headers_install
grep '=[ym]' /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.set | LC_ALL=C sort | /home/albresky/repos/openwrt-6.x/staging_dir/host/bin/mkhash md5 > /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.vermagic
touch /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.configured
rm -f /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/vmlinux /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/System.map
make -C /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42 KCFLAGS="-fmacro-prefix-map=/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl=target-aarch64_cortex-a53_musl -fno-caller-saves " HOSTCFLAGS="-O2 -I/home/albresky/repos/openwrt-6.x/staging_dir/host/include -Wall -Wmissing-prototypes -Wstrict-prototypes" CROSS_COMPILE="aarch64-openwrt-linux-musl-" ARCH="arm64" KBUILD_HAVE_NLS=no KBUILD_BUILD_USER="Albresky" KBUILD_BUILD_HOST="" KBUILD_BUILD_TIMESTAMP="Sun Jul 28 15:04:06 2024" KBUILD_BUILD_VERSION="0" KBUILD_HOSTLDFLAGS="-L/home/albresky/repos/openwrt-6.x/staging_dir/host/lib" CONFIG_SHELL="bash" V='' cmd_syscalls= CC="aarch64-openwrt-linux-musl-gcc" KERNELRELEASE=6.6.42 Image modules
make[5]: Entering directory '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42'
UPD init/utsversion-tmp.h
CC init/version.o
AR init/built-in.a
GEN usr/initramfs_data.cpio
COPY usr/initramfs_inc_data
AS usr/initramfs_data.o
AR usr/built-in.a
AR built-in.a
AR vmlinux.a
LD vmlinux.o
OBJCOPY modules.builtin.modinfo
GEN modules.builtin
MODPOST Module.symvers
UPD include/generated/utsversion.h
CC init/version-timestamp.o
LD .tmp_vmlinux.kallsyms1
NM .tmp_vmlinux.kallsyms1.syms
KSYMS .tmp_vmlinux.kallsyms1.S
AS .tmp_vmlinux.kallsyms1.o
LD .tmp_vmlinux.kallsyms2
NM .tmp_vmlinux.kallsyms2.syms
KSYMS .tmp_vmlinux.kallsyms2.S
AS .tmp_vmlinux.kallsyms2.o
LD vmlinux
NM System.map
SORTTAB vmlinux
OBJCOPY arch/arm64/boot/Image
make[5]: Leaving directory '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42'
# If .config did not change, use the previous timestamp to avoid package rebuilds
cmp -s /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.modules.save && mv /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.modules.save /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config; cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.config.modules.save
touch /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/linux-6.6.42/.modules
make -C image compile TARGET_BUILD=
make[5]: Entering directory '/home/albresky/repos/openwrt-6.x/target/linux/qualcommax/image'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.json'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax1800-pro-squashfs-sysupgrade.bin.json'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.json'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-jdcloud_ax6600-squashfs-sysupgrade.bin.json'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/tmp/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.gz'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/bin/targets/qualcommax/ipq60xx/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin'
Makefile:41: warning: overriding recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.json'
Makefile:41: warning: ignoring old recipe for target '/home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json_info_files/libwrt-qualcommax-ipq60xx-redmi_ax5-jdcloud-squashfs-sysupgrade.bin.json'
make[5]: Nothing to be done for 'compile'.
make[5]: Leaving directory '/home/albresky/repos/openwrt-6.x/target/linux/qualcommax/image'
make[4]: Leaving directory '/home/albresky/repos/openwrt-6.x/target/linux/qualcommax'
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/target/linux'
time: target/linux/compile#6.30#9.31#15.51
make[2]: Leaving directory '/home/albresky/repos/openwrt-6.x'
export MAKEFLAGS= ;make -w -r buildinfo
make[2]: Entering directory '/home/albresky/repos/openwrt-6.x'
make[3] diffconfig buildversion feedsversion
make[4] scripts/config/conf
make[2]: Leaving directory '/home/albresky/repos/openwrt-6.x'
make[2]: Entering directory '/home/albresky/repos/openwrt-6.x'
rm -rf /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax
make[2]: Leaving directory '/home/albresky/repos/openwrt-6.x'
make[2]: Entering directory '/home/albresky/repos/openwrt-6.x'
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/libjson-c'
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/libjson-c'
time: package/libs/libjson-c/host-compile#0.17#0.14#0.27
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/libubox'
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/libubox'
time: package/libs/libubox/host-compile#0.15#0.17#0.28
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/system/opkg'
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/system/opkg'
time: package/system/opkg/host-compile#0.15#0.19#0.30
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/toolchain'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/toolchain/.pkgdir/libc/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libc_installed
echo "libc" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/toolchain.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libgcc.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libgcc.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/toolchain/.pkgdir/libgcc/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libgcc_installed
echo "libgcc" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/toolchain.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libatomic.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libatomic.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/toolchain/.pkgdir/libatomic/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libatomic_installed
echo "libatomic" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/toolchain.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '6' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libstdcpp.version || { echo '6' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libstdcpp.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/toolchain/.pkgdir/libstdcpp/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libstdcpp_installed
echo "libstdcpp" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/toolchain.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/toolchain/.pkgdir/libpthread/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libpthread_installed
echo "libpthread" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/toolchain.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/toolchain/.pkgdir/librt/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.librt_installed
echo "librt" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/toolchain.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/toolchain'
time: package/libs/toolchain/compile#0.15#0.29#0.42
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/libnl-tiny'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libnl-tiny.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libnl-tiny.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/libnl-tiny-2023.12.05~965c4bf4/.pkgdir/libnl-tiny/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libnl-tiny_installed
echo "libnl-tiny" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libnl-tiny.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/libnl-tiny'
time: package/libs/libnl-tiny/compile#0.13#0.13#0.23
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/libjson-c'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '5' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libjson-c.version || { echo '5' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libjson-c.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/json-c-0.17/.pkgdir/libjson-c/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libjson-c_installed
echo "libjson-c" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libjson-c.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/libjson-c'
time: package/libs/libjson-c/compile#0.17#0.20#0.33
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/utils/lua'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '5.1.5' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/liblua.version || { echo '5.1.5' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/liblua.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/lua-5.1.5/.pkgdir/liblua/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.liblua_installed
echo "liblua" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/lua.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/lua-5.1.5/.pkgdir/lua/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.lua_installed
echo "lua" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/lua.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/utils/lua'
time: package/utils/lua/compile#0.18#0.21#0.36
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/libubox'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '20240329' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubox.version || { echo '20240329' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubox.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/libubox-2024.03.29~eb9bcb64/.pkgdir/libubox/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libubox_installed
echo "libubox" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubox.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '20240329' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libblobmsg-json.version || { echo '20240329' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libblobmsg-json.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/libubox-2024.03.29~eb9bcb64/.pkgdir/libblobmsg-json/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libblobmsg-json_installed
echo "libblobmsg-json" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubox.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/libubox-2024.03.29~eb9bcb64/.pkgdir/jshn/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.jshn_installed
echo "jshn" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubox.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '20240329' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libjson-script.version || { echo '20240329' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libjson-script.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/libubox-2024.03.29~eb9bcb64/.pkgdir/libjson-script/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libjson-script_installed
echo "libjson-script" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubox.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/libubox'
time: package/libs/libubox/compile#0.17#0.27#0.41
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/system/ubus'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '20231128' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubus.version || { echo '20231128' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libubus.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ubus-2023.11.28~f84eb599/.pkgdir/libubus/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libubus_installed
echo "libubus" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ubus.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ubus-2023.11.28~f84eb599/.pkgdir/libubus-lua/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libubus-lua_installed
echo "libubus-lua" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ubus.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ubus-2023.11.28~f84eb599/.pkgdir/ubus/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ubus_installed
echo "ubus" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ubus.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ubus-2023.11.28~f84eb599/.pkgdir/ubusd/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ubusd_installed
echo "ubusd" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ubus.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/system/ubus'
time: package/system/ubus/compile#0.15#0.17#0.30
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/system/uci'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '20130104' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libuci.version || { echo '20130104' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libuci.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/uci-2023.08.10~5781664d/.pkgdir/libuci/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libuci_installed
echo "libuci" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/uci.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/uci-2023.08.10~5781664d/.pkgdir/uci/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.uci_installed
echo "uci" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/uci.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/system/uci'
time: package/system/uci/compile#0.14#0.17#0.31
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/utils/ucode'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '20230711' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libucode.version || { echo '20230711' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libucode.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/libucode/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libucode_installed
echo "libucode" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode_installed
echo "ucode" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode-mod-fs/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode-mod-fs_installed
echo "ucode-mod-fs" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode-mod-math/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode-mod-math_installed
echo "ucode-mod-math" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode-mod-nl80211/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode-mod-nl80211_installed
echo "ucode-mod-nl80211" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode-mod-rtnl/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode-mod-rtnl_installed
echo "ucode-mod-rtnl" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode-mod-ubus/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode-mod-ubus_installed
echo "ucode-mod-ubus" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode-mod-uci/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode-mod-uci_installed
echo "ucode-mod-uci" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ucode-2024.07.11~1a8a0bcf/.pkgdir/ucode-mod-uloop/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ucode-mod-uloop_installed
echo "ucode-mod-uloop" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ucode.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/utils/ucode'
time: package/utils/ucode/compile#0.19#0.34#0.49
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/udebug'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/udebug-2023.12.06~6d3f51f9/.pkgdir/libudebug/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libudebug_installed
echo "libudebug" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/udebug.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/udebug'
time: package/libs/udebug/compile#0.14#0.17#0.30
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/network/config/netifd'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/netifd-2024.01.04~f01345ec/.pkgdir/netifd/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.netifd_installed
echo "netifd" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/netifd.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/network/config/netifd'
time: package/network/config/netifd/compile#0.12#0.15#0.24
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/firmware/linux-firmware'
make[3]: Nothing to be done for 'compile'.
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/firmware/linux-firmware'
time: package/firmware/linux-firmware/compile#0.13#0.10#0.22
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/kernel/gpio-button-hotplug'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/gpio-button-hotplug/.pkgdir/kmod-gpio-button-hotplug/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-gpio-button-hotplug_installed
echo "kmod-gpio-button-hotplug" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/gpio-button-hotplug.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/kernel/gpio-button-hotplug'
time: package/kernel/gpio-button-hotplug/compile#0.14#0.12#0.24
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/kernel/linux'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kernel/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kernel_installed
echo "kernel" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-dax/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-dax_installed
echo "kmod-dax" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-dm/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-dm_installed
echo "kmod-dm" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-md-mod/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-md-mod_installed
echo "kmod-md-mod" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-md-raid0/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-md-raid0_installed
echo "kmod-md-raid0" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-md-raid1/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-md-raid1_installed
echo "kmod-md-raid1" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-md-raid10/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-md-raid10_installed
echo "kmod-md-raid10" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-md-raid456/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-md-raid456_installed
echo "kmod-md-raid456" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-acompress/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-acompress_installed
echo "kmod-crypto-acompress" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-aead/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-aead_installed
echo "kmod-crypto-aead" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-arc4/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-arc4_installed
echo "kmod-crypto-arc4" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-authenc/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-authenc_installed
echo "kmod-crypto-authenc" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-blake2b/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-blake2b_installed
echo "kmod-crypto-blake2b" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-cbc/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-cbc_installed
echo "kmod-crypto-cbc" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-ccm/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-ccm_installed
echo "kmod-crypto-ccm" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-cmac/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-cmac_installed
echo "kmod-crypto-cmac" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-crc32/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-crc32_installed
echo "kmod-crypto-crc32" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-crc32c/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-crc32c_installed
echo "kmod-crypto-crc32c" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-ctr/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-ctr_installed
echo "kmod-crypto-ctr" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-ecb/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-ecb_installed
echo "kmod-crypto-ecb" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-gcm/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-gcm_installed
echo "kmod-crypto-gcm" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-gf128/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-gf128_installed
echo "kmod-crypto-gf128" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-ghash/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-ghash_installed
echo "kmod-crypto-ghash" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-hash/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-hash_installed
echo "kmod-crypto-hash" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-hmac/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-hmac_installed
echo "kmod-crypto-hmac" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-manager/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-manager_installed
echo "kmod-crypto-manager" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-michael-mic/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-michael-mic_installed
echo "kmod-crypto-michael-mic" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-null/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-null_installed
echo "kmod-crypto-null" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-rng/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-rng_installed
echo "kmod-crypto-rng" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-geniv/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-geniv_installed
echo "kmod-crypto-geniv" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-seqiv/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-seqiv_installed
echo "kmod-crypto-seqiv" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-sha1/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-sha1_installed
echo "kmod-crypto-sha1" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-sha3/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-sha3_installed
echo "kmod-crypto-sha3" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-sha256/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-sha256_installed
echo "kmod-crypto-sha256" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-sha512/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-sha512_installed
echo "kmod-crypto-sha512" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-user/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-user_installed
echo "kmod-crypto-user" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-crypto-xxhash/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-crypto-xxhash_installed
echo "kmod-crypto-xxhash" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-fs-btrfs/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-fs-btrfs_installed
echo "kmod-fs-btrfs" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-fs-ext4/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-fs-ext4_installed
echo "kmod-fs-ext4" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-fs-f2fs/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-fs-f2fs_installed
echo "kmod-fs-f2fs" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-fuse/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-fuse_installed
echo "kmod-fuse" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-hwmon-core/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-hwmon-core_installed
echo "kmod-hwmon-core" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-leds-gpio/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-leds-gpio_installed
echo "kmod-leds-gpio" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-crc-ccitt/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-crc-ccitt_installed
echo "kmod-lib-crc-ccitt" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-crc16/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-crc16_installed
echo "kmod-lib-crc16" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-crc32c/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-crc32c_installed
echo "kmod-lib-crc32c" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-lzo/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-lzo_installed
echo "kmod-lib-lzo" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-xxhash/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-xxhash_installed
echo "kmod-lib-xxhash" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-zstd/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-zstd_installed
echo "kmod-lib-zstd" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-raid6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-raid6_installed
echo "kmod-lib-raid6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-xor/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-xor_installed
echo "kmod-lib-xor" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-zlib-inflate/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-zlib-inflate_installed
echo "kmod-lib-zlib-inflate" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-lib-zlib-deflate/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-lib-zlib-deflate_installed
echo "kmod-lib-zlib-deflate" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-asn1-decoder/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-asn1-decoder_installed
echo "kmod-asn1-decoder" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
WARNING: kmod-asn1-encoder is not available in the kernel config - generating empty package
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-asn1-encoder/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-asn1-encoder_installed
echo "kmod-asn1-encoder" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-oid-registry/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-oid-registry_installed
echo "kmod-oid-registry" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-macvlan/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-macvlan_installed
echo "kmod-macvlan" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ifb/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ifb_installed
echo "kmod-ifb" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-reject/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-reject_installed
echo "kmod-nf-reject" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-reject6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-reject6_installed
echo "kmod-nf-reject6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-ipt/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-ipt_installed
echo "kmod-nf-ipt" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-ipt6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-ipt6_installed
echo "kmod-nf-ipt6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ipt-core/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ipt-core_installed
echo "kmod-ipt-core" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-conntrack/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-conntrack_installed
echo "kmod-nf-conntrack" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-conntrack6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-conntrack6_installed
echo "kmod-nf-conntrack6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-log/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-log_installed
echo "kmod-nf-log" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-log6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-log6_installed
echo "kmod-nf-log6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-nat/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-nat_installed
echo "kmod-nf-nat" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-nat6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-nat6_installed
echo "kmod-nf-nat6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-flow/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-flow_installed
echo "kmod-nf-flow" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-tproxy/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-tproxy_installed
echo "kmod-nf-tproxy" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ipt-conntrack/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ipt-conntrack_installed
echo "kmod-ipt-conntrack" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ipt-ipset/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ipt-ipset_installed
echo "kmod-ipt-ipset" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ipt-nat/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ipt-nat_installed
echo "kmod-ipt-nat" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ipt-nat6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ipt-nat6_installed
echo "kmod-ipt-nat6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ip6tables/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ip6tables_installed
echo "kmod-ip6tables" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ip6tables-extra/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ip6tables-extra_installed
echo "kmod-ip6tables-extra" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nfnetlink/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nfnetlink_installed
echo "kmod-nfnetlink" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nf-conntrack-netlink/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nf-conntrack-netlink_installed
echo "kmod-nf-conntrack-netlink" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nft-core/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nft-core_installed
echo "kmod-nft-core" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nft-nat/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nft-nat_installed
echo "kmod-nft-nat" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nft-offload/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nft-offload_installed
echo "kmod-nft-offload" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nft-fib/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nft-fib_installed
echo "kmod-nft-fib" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nft-tproxy/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nft-tproxy_installed
echo "kmod-nft-tproxy" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nft-compat/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nft-compat_installed
echo "kmod-nft-compat" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-bonding/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-bonding_installed
echo "kmod-bonding" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-udptunnel4/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-udptunnel4_installed
echo "kmod-udptunnel4" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-udptunnel6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-udptunnel6_installed
echo "kmod-udptunnel6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-vxlan/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-vxlan_installed
echo "kmod-vxlan" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-iptunnel/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-iptunnel_installed
echo "kmod-iptunnel" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-iptunnel4/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-iptunnel4_installed
echo "kmod-iptunnel4" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-iptunnel6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-iptunnel6_installed
echo "kmod-iptunnel6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-sit/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-sit_installed
echo "kmod-sit" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ip6-tunnel/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ip6-tunnel_installed
echo "kmod-ip6-tunnel" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-gre/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-gre_installed
echo "kmod-gre" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-gre6/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-gre6_installed
echo "kmod-gre6" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-tun/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-tun_installed
echo "kmod-tun" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-slhc/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-slhc_installed
echo "kmod-slhc" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-ppp/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-ppp_installed
echo "kmod-ppp" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-pppox/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-pppox_installed
echo "kmod-pppox" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-pppoe/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-pppoe_installed
echo "kmod-pppoe" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-pptp/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-pptp_installed
echo "kmod-pptp" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-pppol2tp/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-pppol2tp_installed
echo "kmod-pppol2tp" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-mppe/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-mppe_installed
echo "kmod-mppe" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-sched-core/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-sched-core_installed
echo "kmod-sched-core" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-l2tp/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-l2tp_installed
echo "kmod-l2tp" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-inet-diag/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-inet-diag_installed
echo "kmod-inet-diag" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-qrtr/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-qrtr_installed
echo "kmod-qrtr" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-qrtr-smd/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-qrtr-smd_installed
echo "kmod-qrtr-smd" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-nls-base/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-nls-base_installed
echo "kmod-nls-base" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-zram/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-zram_installed
echo "kmod-zram" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-random-core/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-random-core_installed
echo "kmod-random-core" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
WARNING: kmod-thermal is not available in the kernel config - generating empty package
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-thermal/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-thermal_installed
echo "kmod-thermal" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-keys-encrypted/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-keys-encrypted_installed
echo "kmod-keys-encrypted" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-keys-trusted/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-keys-trusted_installed
echo "kmod-keys-trusted" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-tpm/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-tpm_installed
echo "kmod-tpm" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-usb-core/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-usb-core_installed
echo "kmod-usb-core" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-usb-dwc3/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-usb-dwc3_installed
echo "kmod-usb-dwc3" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-usb-dwc3-qcom/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-usb-dwc3-qcom_installed
echo "kmod-usb-dwc3-qcom" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-usb3/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-usb3_installed
echo "kmod-usb3" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/linux-qualcommax_ipq60xx/packages/.pkgdir/kmod-usb-xhci-hcd/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.kmod-usb-xhci-hcd_installed
echo "kmod-usb-xhci-hcd" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/linux.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/kernel/linux'
time: package/kernel/linux/compile#2.91#1.64#4.66
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/system/ubox'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ubox-2024.04.26~85f10530/.pkgdir/ubox/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.ubox_installed
echo "ubox" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ubox.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ubox-2024.04.26~85f10530/.pkgdir/getrandom/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.getrandom_installed
echo "getrandom" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ubox.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ubox-2024.04.26~85f10530/.pkgdir/logd/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.logd_installed
echo "logd" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ubox.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/system/ubox'
time: package/system/ubox/compile#0.12#0.29#0.39
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/ncurses'
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/ncurses'
time: package/libs/ncurses/host-compile#0.21#0.21#0.38
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/zlib'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/zlib-1.3.1/.pkgdir/zlib/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.zlib_installed
echo "zlib" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/zlib.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/zlib'
time: package/libs/zlib/compile#0.12#0.18#0.28
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/libs/ncurses'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ncurses-6.4/.pkgdir/terminfo/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.terminfo_installed
echo "terminfo" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ncurses.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '6' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libncurses.version || { echo '6' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libncurses.version; cp /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libncurses.version /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libncursesw.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/ncurses-6.4/.pkgdir/libncurses/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libncurses_installed
echo "libncurses" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/ncurses.default.install
make[3]: Leaving directory '/home/albresky/repos/openwrt-6.x/package/libs/ncurses'
time: package/libs/ncurses/compile#0.20#0.28#0.42
make[3]: Entering directory '/home/albresky/repos/openwrt-6.x/package/utils/util-linux'
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libuuid.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libuuid.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/libuuid/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libuuid_installed
echo "libuuid" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/util-linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libblkid.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libblkid.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/libblkid/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libblkid_installed
echo "libblkid" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/util-linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libfdisk.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libfdisk.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/libfdisk/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libfdisk_installed
echo "libfdisk" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/util-linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libmount.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libmount.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/libmount/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libmount_installed
echo "libmount" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/util-linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
echo '1' | cmp -s - /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libsmartcols.version || { echo '1' > /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/libsmartcols.version; }
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/libsmartcols/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.libsmartcols_installed
echo "libsmartcols" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/util-linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/blkid/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.blkid_installed
echo "blkid" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/util-linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/fdisk/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'
touch /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp/.fdisk_installed
echo "fdisk" >> /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/pkginfo/util-linux.default.install
mkdir -p /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/stamp
SHELL= flock /home/albresky/repos/openwrt-6.x/tmp/.root-copy.flock -c 'cp -fpR /home/albresky/repos/openwrt-6.x/build_dir/target-aarch64_cortex-a53_musl/util-linux-2.40.1/.pkgdir/findfs/. /home/albresky/repos/openwrt-6.x/staging_dir/target-aarch64_cortex-a53_musl/root-qualcommax/'