1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022 |
+ export BPO_JOB_ID=210512
+ BPO_JOB_ID=210512
+ ./pmbootstrap/pmbootstrap.py -mp https://build.postmarketos.org/wip/ -mp http://postmarketos1.brixit.nl/postmarketos/ --aports=/home/build/pmaports --no-ccache --timeout 900 --details-to-stdout build --no-depends --strict --arch x86_64 --force firmware-asus-me176c-acpi
(002313) [14:56:46] % cd /home/build/pmaports; git remote -v
origin https://gitlab.com/postmarketOS/pmaports.git/ (fetch)
origin https://gitlab.com/postmarketOS/pmaports.git/ (push)
(002313) [14:56:46] % cd /home/build/pmaports; git show origin/master:channels.cfg
# Reference: https://postmarketos.org/channels.cfg
[channels.cfg]
recommended=edge
[edge]
description=Rolling release channel
branch_pmaports=master
branch_aports=master
mirrordir_alpine=edge
[stable]
description=Upcoming beta release (WIP, DO NOT USE!)
branch_pmaports=v20.05
# will be branched to 3.12-stable
branch_aports=master
mirrordir_alpine=v3.12
(002313) [14:56:46] Shutdown complete
(002313) [14:56:46] Calculate work folder size
(002313) [14:56:46] % sudo du --summarize --block-size=1 /home/build/.local/var/pmbootstrap
16384 /home/build/.local/var/pmbootstrap
(002313) [14:56:46] Shutdown complete
(002313) [14:56:46] % sudo du --summarize --block-size=1 /home/build/.local/var/pmbootstrap
16384 /home/build/.local/var/pmbootstrap
(002313) [14:56:46] Cleared up ~0 MB of space
(002313) [14:56:46] APKINDEX outdated (file does not exist yet): https://build.postmarketos.org/wip/v20.05/x86_64/APKINDEX.tar.gz
(002313) [14:56:46] APKINDEX outdated (file does not exist yet): http://postmarketos1.brixit.nl/postmarketos/v20.05/x86_64/APKINDEX.tar.gz
(002313) [14:56:46] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86_64/APKINDEX.tar.gz
(002313) [14:56:46] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.12/community/x86_64/APKINDEX.tar.gz
(002313) [14:56:46] Update package index for x86_64 (4 file(s))
(002313) [14:56:46] % mkdir -p /home/build/.local/var/pmbootstrap/cache_http
(002313) [14:56:46] Download https://build.postmarketos.org/wip/v20.05/x86_64/APKINDEX.tar.gz
(002313) [14:56:47] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_apk_x86_64
(002313) [14:56:47] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_1c4b7261702d2a86a28bfb0f15180526ac6e2170568d1a8020fc452941c4a212 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.e522c4bd.tar.gz
(002313) [14:56:47] Download http://postmarketos1.brixit.nl/postmarketos/v20.05/x86_64/APKINDEX.tar.gz
(002313) [14:56:47] WARNING: file not found: http://postmarketos1.brixit.nl/postmarketos/v20.05/x86_64/APKINDEX.tar.gz
(002313) [14:56:47] Download http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86_64/APKINDEX.tar.gz
(002313) [14:56:48] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_5049137964ba236da2eddaeeb05c44ebe877be958c6a03342862887d9cd8bcf8 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.2c4ac24e.tar.gz
(002313) [14:56:48] Download http://dl-cdn.alpinelinux.org/alpine/v3.12/community/x86_64/APKINDEX.tar.gz
(002313) [14:56:49] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_87a0ac77eabf7655ce08eb9fc63a79e7c2d3187e36b720af1f93ddabb3c5b6bd /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.40a3604f.tar.gz
(002313) [14:56:51] Build is necessary for package 'firmware-asus-me176c-acpi': No binary package available
(002313) [14:56:51] NOTE: Skipped apk version check for chroot 'native', because it is not installed yet!
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev
(002313) [14:56:51] % sudo mount -t tmpfs -o size=1M,noexec,dev tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev/pts /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002313) [14:56:51] % sudo mount -t tmpfs -o nodev,nosuid,noexec tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002313) [14:56:51] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/null c 1 3
(002313) [14:56:51] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/zero c 1 5
(002313) [14:56:51] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/full c 1 7
(002313) [14:56:51] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/random c 1 8
(002313) [14:56:51] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/urandom c 1 9
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/proc
(002313) [14:56:51] % sudo mount --bind /proc /home/build/.local/var/pmbootstrap/chroot_native/proc
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_apk_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_ccache_x86_64
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-ccache
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_ccache_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-ccache
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_distfiles
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_distfiles /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-git
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_git /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-git
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_rust
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-rust
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_rust /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-rust
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_abuild
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-abuild-config
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_abuild /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-abuild-config
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_apk_keys
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_apk_keys /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/packages/stable
(002313) [14:56:51] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-packages
(002313) [14:56:51] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/stable /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap-packages
(002313) [14:56:51] Download http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/apk-tools-static-2.10.5-r0.apk
(002313) [14:56:51] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub
(002313) [14:56:51] sigkey: alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub
(002313) [14:56:51] extracted: /tmp/pmbootstrapdx21tx1dapk
(002313) [14:56:51] extracted: /tmp/pmbootstrapucodcug4sig
(002313) [14:56:51] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub
(002313) [14:56:51] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub -signature /tmp/pmbootstrapucodcug4sig /tmp/pmbootstrapdx21tx1dapk
Verified OK
(002313) [14:56:51] Verify the version reported by the apk.static binary (must match the package version 2.10.5-r0)
(002313) [14:56:51] % /tmp/pmbootstrapdx21tx1dapk --version
apk-tools 2.10.5, compiled for x86_64.
(002313) [14:56:51] (native) install alpine-base
(002313) [14:56:51] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/cache
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58e4f17d.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/wip.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/build.postmarketos.org.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58cbb476.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/
(002313) [14:56:51] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_native/etc/resolv.conf
(002313) [14:56:52] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk
(002313) [14:56:52] (native) update /etc/apk/repositories
(002313) [14:56:52] % sudo sh -c echo /mnt/pmbootstrap-packages >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002313) [14:56:52] % sudo sh -c echo https://build.postmarketos.org/wip/v20.05 >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002313) [14:56:52] % sudo sh -c echo http://postmarketos1.brixit.nl/postmarketos/v20.05 >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002313) [14:56:52] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.12/main >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002313) [14:56:52] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.12/community >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002313) [14:56:52] % sudo /home/build/.local/var/pmbootstrap/apk.static --no-progress --root /home/build/.local/var/pmbootstrap/chroot_native --cache-dir /home/build/.local/var/pmbootstrap/cache_apk_x86_64 --initdb --arch x86_64 add alpine-base
WARNING: Ignoring /mnt/pmbootstrap-packages/x86_64/APKINDEX.tar.gz: No such file or directory
fetch http://postmarketos1.brixit.nl/postmarketos/v20.05/x86_64/APKINDEX.tar.gz
ERROR: http://postmarketos1.brixit.nl/postmarketos/v20.05: No such file or directory
WARNING: Ignoring APKINDEX.c25db003.tar.gz: No such file or directory
(1/19) Installing musl (1.1.24-r6)
(2/19) Installing busybox (1.31.1-r15)
Executing busybox-1.31.1-r15.post-install
(3/19) Installing alpine-baselayout (3.2.0-r5)
Executing alpine-baselayout-3.2.0-r5.pre-install
Executing alpine-baselayout-3.2.0-r5.post-install
(4/19) Installing openrc (0.42.1-r9)
Executing openrc-0.42.1-r9.post-install
(5/19) Installing alpine-conf (3.8.3-r7)
(6/19) Installing libcrypto1.1 (1.1.1g-r0)
(7/19) Installing libssl1.1 (1.1.1g-r0)
(8/19) Installing ca-certificates-bundle (20191127-r2)
(9/19) Installing libtls-standalone (2.9.1-r1)
(10/19) Installing ssl_client (1.31.1-r15)
(11/19) Installing zlib (1.2.11-r3)
(12/19) Installing apk-tools (2.10.5-r0)
(13/19) Installing busybox-suid (1.31.1-r15)
(14/19) Installing busybox-initscripts (3.2-r2)
Executing busybox-initscripts-3.2-r2.post-install
(15/19) Installing scanelf (1.2.5-r2)
(16/19) Installing musl-utils (1.1.24-r6)
(17/19) Installing libc-utils (0.7.2-r3)
(18/19) Installing alpine-keys (2.2-r0)
(19/19) Installing alpine-base (3.12_alpha20200428-r0)
Executing busybox-1.31.1-r15.trigger
OK: 8 MiB in 19 packages
(002313) [14:56:53] (native) % adduser -D pmos -u 12345
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap-abuild-config /home/pmos/.abuild
(002313) [14:56:53] (native) % chown pmos:pmos /mnt/pmbootstrap-abuild-config
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap-ccache /home/pmos/.ccache
(002313) [14:56:53] (native) % chown pmos:pmos /mnt/pmbootstrap-ccache
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/packages
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap-packages /home/pmos/packages/pmos
(002313) [14:56:53] (native) % chown pmos:pmos /mnt/pmbootstrap-packages
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/registry
(002313) [14:56:53] (native) % mkdir -p /mnt/pmbootstrap-rust/registry/index
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap-rust/registry/index /home/pmos/.cargo/registry/index
(002313) [14:56:53] (native) % chown pmos:pmos /mnt/pmbootstrap-rust/registry/index
(002313) [14:56:53] (native) % mkdir -p /mnt/pmbootstrap-rust/registry/cache
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap-rust/registry/cache /home/pmos/.cargo/registry/cache
(002313) [14:56:53] (native) % chown pmos:pmos /mnt/pmbootstrap-rust/registry/cache
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/git
(002313) [14:56:53] (native) % mkdir -p /mnt/pmbootstrap-rust/git/db
(002313) [14:56:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap-rust/git/db /home/pmos/.cargo/git/db
(002313) [14:56:53] (native) % chown pmos:pmos /mnt/pmbootstrap-rust/git/db
(002313) [14:56:53] (native) calculate depends of abuild, build-base, ccache, git (pmbootstrap -v for details)
(002313) [14:56:53] (native) install abuild build-base ccache git
(002313) [14:56:53] (native) % apk --no-progress add -u --virtual .pmbootstrap abuild build-base ccache git fakeroot openssl attr tar pkgconf patch lzip curl binutils file gcc g++ make libc-dev fortify-headers libcurl expat pcre2 libattr libacl libgcc libstdc++ ca-certificates libmagic isl libgomp libatomic libgphobos gmp mpc1 mpfr4 musl-dev nghttp2-libs
WARNING: Ignoring /mnt/pmbootstrap-packages/x86_64/APKINDEX.tar.gz: No such file or directory
fetch http://postmarketos1.brixit.nl/postmarketos/v20.05/x86_64/APKINDEX.tar.gz
ERROR: http://postmarketos1.brixit.nl/postmarketos/v20.05: No such file or directory
WARNING: Ignoring APKINDEX.c25db003.tar.gz: No such file or directory
(1/38) Installing fakeroot (1.24-r0)
(2/38) Installing openssl (1.1.1g-r0)
(3/38) Installing libattr (2.4.48-r0)
(4/38) Installing attr (2.4.48-r0)
(5/38) Installing libacl (2.2.53-r0)
(6/38) Installing tar (1.32-r1)
(7/38) Installing pkgconf (1.6.3-r2)
(8/38) Installing patch (2.7.6-r6)
(9/38) Installing libgcc (9.3.0-r1)
(10/38) Installing libstdc++ (9.3.0-r1)
(11/38) Installing lzip (1.21-r0)
(12/38) Installing ca-certificates (20191127-r2)
(13/38) Installing nghttp2-libs (1.40.0-r0)
(14/38) Installing libcurl (7.69.1-r0)
(15/38) Installing curl (7.69.1-r0)
(16/38) Installing abuild (3.6.0_rc1-r2)
Executing abuild-3.6.0_rc1-r2.pre-install
(17/38) Installing binutils (2.34-r0)
(18/38) Installing libmagic (5.38-r0)
(19/38) Installing file (5.38-r0)
(20/38) Installing gmp (6.2.0-r0)
(21/38) Installing isl (0.18-r0)
(22/38) Installing libgomp (9.3.0-r1)
(23/38) Installing libatomic (9.3.0-r1)
(24/38) Installing libgphobos (9.3.0-r1)
(25/38) Installing mpfr4 (4.0.2-r4)
(26/38) Installing mpc1 (1.1.0-r1)
(27/38) Installing gcc (9.3.0-r1)
(28/38) Installing musl-dev (1.1.24-r6)
(29/38) Installing libc-dev (0.7.2-r3)
(30/38) Installing g++ (9.3.0-r1)
(31/38) Installing make (4.3-r0)
(32/38) Installing fortify-headers (1.1-r0)
(33/38) Installing build-base (0.5-r1)
(34/38) Installing ccache (3.7.9-r0)
(35/38) Installing expat (2.2.9-r1)
(36/38) Installing pcre2 (10.35-r0)
(37/38) Installing git (2.26.2-r0)
(38/38) Installing .pmbootstrap (20200517.145653)
Executing busybox-1.31.1-r15.trigger
Executing ca-certificates-20191127-r2.trigger
OK: 227 MiB in 57 packages
(002313) [14:57:07] (native) % apk --no-progress add abuild build-base ccache git
WARNING: Ignoring /mnt/pmbootstrap-packages/x86_64/APKINDEX.tar.gz: No such file or directory
fetch http://postmarketos1.brixit.nl/postmarketos/v20.05/x86_64/APKINDEX.tar.gz
ERROR: http://postmarketos1.brixit.nl/postmarketos/v20.05: No such file or directory
WARNING: Ignoring APKINDEX.c25db003.tar.gz: No such file or directory
OK: 227 MiB in 57 packages
(002313) [14:57:07] (native) % apk --no-progress del .pmbootstrap
WARNING: Ignoring /mnt/pmbootstrap-packages/x86_64/APKINDEX.tar.gz: No such file or directory
WARNING: Ignoring APKINDEX.c25db003.tar.gz: No such file or directory
(1/1) Purging .pmbootstrap (20200517.145653)
OK: 227 MiB in 56 packages
(002313) [14:57:08] (native) % chown root:abuild /var/cache/distfiles
(002313) [14:57:08] (native) % chmod g+w /var/cache/distfiles
(002313) [14:57:08] (native) generate abuild keys
(002313) [14:57:08] (native) % busybox su pmos -c HOME=/home/pmos abuild-keygen -n -q -a
Generating RSA private key, 2048 bit long modulus (2 primes)
.......................................+++++
.........................+++++
e is 65537 (0x010001)
writing RSA key
(002313) [14:57:08] (native) % cp /mnt/pmbootstrap-abuild-config/pmos-5ec150c4.rsa.pub /etc/apk/keys/
(002313) [14:57:08] (native) % cp /tmp/gzip_wrapper.sh /usr/local/bin/gzip
(002313) [14:57:08] (native) % chmod +x /usr/local/bin/gzip
(002313) [14:57:08] (native) % adduser pmos abuild
(002313) [14:57:08] (native) % sed -i -e s/^CLEANUP=.*/CLEANUP=''/ /etc/abuild.conf
(002313) [14:57:08] (native) % sed -i -e s/^ERROR_CLEANUP=.*/ERROR_CLEANUP=''/ /etc/abuild.conf
(002313) [14:57:08] (native) % touch /var/local/pmbootstrap_chroot_build_init_done
(002313) [14:57:08] (native) % sed -i -e s/^export JOBS=.*/export JOBS=3/ /etc/abuild.conf
(002313) [14:57:08] (native) % busybox su pmos -c HOME=/home/pmos ccache --max-size 5G
Set cache size limit to 5.0 GB
(002313) [14:57:08] (native) build x86_64/firmware-asus-me176c-acpi-0_git20190206-r2.apk
(002313) [14:57:08] % sudo cp -rL /home/build/pmaports/firmware/firmware-asus-me176c-acpi/ /home/build/.local/var/pmbootstrap/chroot_native/home/pmos/build
(002313) [14:57:08] (native) % chown -R pmos:pmos /home/pmos/build
(002313) [14:57:08] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmaports
(002313) [14:57:08] % sudo mount --bind /home/build/pmaports /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmaports
(002313) [14:57:08] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/build
(002313) [14:57:08] (native) % busybox su pmos -c HOME=/home/pmos ln -sf /mnt/pmaports/.git /home/pmos/build/.git
(002313) [14:57:08] (native) % cd /home/pmos/build; busybox su pmos -c CARCH=x86_64 SUDO_APK='abuild-apk --no-progress' CCACHE_DISABLE=1 HOME=/home/pmos abuild -D postmarketOS -r -f
]0;abuild: firmware-asus-me176c-acpi>>> firmware-asus-me176c-acpi: Building pmos/firmware-asus-me176c-acpi 0_git20190206-r2 (using abuild 3.6.0_rc1-r2) started Sun, 17 May 2020 14:57:08 +0000
>>> firmware-asus-me176c-acpi: Checking sanity of /home/pmos/build/APKBUILD...
>>> WARNING: firmware-asus-me176c-acpi: No maintainer
>>> firmware-asus-me176c-acpi: Analyzing dependencies...
>>> firmware-asus-me176c-acpi: Installing for build: build-base iasl
WARNING: Ignoring /home/pmos/packages//pmos/x86_64/APKINDEX.tar.gz: No such file or directory
WARNING: Ignoring /mnt/pmbootstrap-packages/x86_64/APKINDEX.tar.gz: No such file or directory
fetch http://postmarketos1.brixit.nl/postmarketos/v20.05/x86_64/APKINDEX.tar.gz
ERROR: http://postmarketos1.brixit.nl/postmarketos/v20.05: No such file or directory
WARNING: Ignoring APKINDEX.c25db003.tar.gz: No such file or directory
(1/2) Installing iasl (20200430-r0)
(2/2) Installing .makedepends-firmware-asus-me176c-acpi (20200517.145709)
Executing busybox-1.31.1-r15.trigger
OK: 228 MiB in 58 packages
]0;>>> firmware-asus-me176c-acpi: Cleaning up srcdir
]0;>>> firmware-asus-me176c-acpi: Cleaning up pkgdir
>>> firmware-asus-me176c-acpi: Fetching https://github.com/me176c-dev/me176c-acpi/archive/9c25272d67965b7bbc03283e333822f02a8f9a9a.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
100 164 100 164 0 0 103 0 0:00:01 0:00:01 --:--:-- 103
100 579 0 579 0 0 228 0 --:--:-- 0:00:02 --:--:-- 228
100 43423 0 43423 0 0 14714 0 --:--:-- 0:00:02 --:--:-- 100k
>>> firmware-asus-me176c-acpi: Fetching https://github.com/me176c-dev/me176c-acpi/archive/9c25272d67965b7bbc03283e333822f02a8f9a9a.tar.gz
>>> firmware-asus-me176c-acpi: Checking sha512sums...
9c25272d67965b7bbc03283e333822f02a8f9a9a.tar.gz: OK
>>> firmware-asus-me176c-acpi: Unpacking /var/cache/distfiles/9c25272d67965b7bbc03283e333822f02a8f9a9a.tar.gz...
dsdt.dsl 425: Method (ADBG, 1, Serialized)
Remark 2146 - ^ Method Argument is never used (Arg0)
dsdt.dsl 465: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.HPET._CRS)
dsdt.dsl 775: Device (PCI0)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 1031: Method (_DOD, 0, NotSerialized) // _DOD: Display Output Devices
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.PCI0.GFX0._DOD)
dsdt.dsl 1061: Name (TMP1, Package (0x02)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.GFX0._DOD)
dsdt.dsl 1081: Name (TMP2, Package (0x03)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.GFX0._DOD)
dsdt.dsl 1103: Name (TMP3, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.GFX0._DOD)
dsdt.dsl 1127: Name (TMP4, Package (0x05)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.GFX0._DOD)
dsdt.dsl 1153: Name (TMP5, Package (0x06)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.GFX0._DOD)
dsdt.dsl 2323: Sleep (ASLP)
Remark 2159 - ^ Very long Sleep, greater than 1 second
dsdt.dsl 2333: Sleep (ASLP)
Remark 2159 - ^ Very long Sleep, greater than 1 second
dsdt.dsl 2386: Sleep (ASLP)
Remark 2159 - ^ Very long Sleep, greater than 1 second
dsdt.dsl 3263: Name (BUF0, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.LPCB.IUR3._CRS)
dsdt.dsl 3274: Name (BUF1, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.LPCB.IUR3._CRS)
dsdt.dsl 3377: Name (BUF0, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.LPCB.WPCN.UAR5._CRS)
dsdt.dsl 3391: CreateByteField (BUF0, \_SB.PCI0.LPCB.WPCN.UAR5._CRS._Y04._MIN, IOL0) // _MIN: Minimum Base Address
Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 16 bits, Field: 8 bits)
dsdt.dsl 3393: CreateByteField (BUF0, \_SB.PCI0.LPCB.WPCN.UAR5._CRS._Y04._MAX, IOL1) // _MAX: Maximum Base Address
Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 16 bits, Field: 8 bits)
dsdt.dsl 3553: Name (BUF0, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.LPCB.WPCN.UAR8._CRS)
dsdt.dsl 3567: CreateByteField (BUF0, \_SB.PCI0.LPCB.WPCN.UAR8._CRS._Y06._MIN, IOL0) // _MIN: Minimum Base Address
Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 16 bits, Field: 8 bits)
dsdt.dsl 3569: CreateByteField (BUF0, \_SB.PCI0.LPCB.WPCN.UAR8._CRS._Y06._MAX, IOL1) // _MAX: Maximum Base Address
Warning 3128 - ResourceTag larger than Field ^ (Size mismatch, Tag: 16 bits, Field: 8 bits)
dsdt.dsl 3990: Device (LPEA)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 4067: Local0 = PSAT /* \_SB_.LPEA.PSAT */
Warning 3144 - ^ Method Local is set but never used (Local0)
dsdt.dsl 4073: Local0 = PSAT /* \_SB_.LPEA.PSAT */
Warning 3144 - ^ Method Local is set but never used (Local0)
dsdt.dsl 4077: Device (ADMA)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 4084: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.LPEA.ADMA._CRS)
dsdt.dsl 4086: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.LPEA.ADMA._CRS)
dsdt.dsl 4103: Device (SSP1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 4135: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.LPEA.SSP1._CRS)
dsdt.dsl 4137: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.LPEA.SSP1._CRS)
dsdt.dsl 4205: Device (SSP2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 4225: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.LPEA.SSP2._CRS)
dsdt.dsl 4227: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.LPEA.SSP2._CRS)
dsdt.dsl 4296: Device (VIBR)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 4303: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.VIBR._CRS)
dsdt.dsl 4305: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.VIBR._CRS)
dsdt.dsl 4328: Device (AMCR)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 4340: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.AMCR._CRS)
dsdt.dsl 4342: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.AMCR._CRS)
dsdt.dsl 4373: Device (HAD)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 4380: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.HAD._CRS)
dsdt.dsl 4382: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.HAD._CRS)
dsdt.dsl 4483: Method (_PS0, 0, Serialized) // _PS0: Power State 0
Warning 3115 - ^ Not all control paths return a value (\_SB.PCI0.XHC1._PS0)
dsdt.dsl 4498: OperationRegion (MCA1, SystemMemory, SRMB, 0x9000)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1._PS0)
dsdt.dsl 4499: Field (MCA1, DWordAcc, Lock, Preserve)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1._PS0)
dsdt.dsl 4698: Method (_PS3, 0, Serialized) // _PS3: Power State 3
Warning 3115 - ^ Not all control paths return a value (\_SB.PCI0.XHC1._PS3)
dsdt.dsl 4713: OperationRegion (MCA1, SystemMemory, SRMB, 0x9000)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1._PS3)
dsdt.dsl 4714: Field (MCA1, DWordAcc, Lock, Preserve)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1._PS3)
dsdt.dsl 4808: Name (UPCP, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.SSP1._UPC)
dsdt.dsl 4820: Name (PLDP, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.SSP1._PLD)
dsdt.dsl 4873: Name (UPCP, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS01._UPC)
dsdt.dsl 4885: Name (PLDP, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS01._PLD)
dsdt.dsl 4938: Name (UPCP, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS02._UPC)
dsdt.dsl 4945: Name (UPCR, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS02._UPC)
dsdt.dsl 4964: Name (PLDP, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS02._PLD)
dsdt.dsl 4973: Name (PLDR, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS02._PLD)
dsdt.dsl 5033: Name (UPCP, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS03._UPC)
dsdt.dsl 5045: Name (PLDP, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS03._PLD)
dsdt.dsl 5098: Name (UPCP, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS04._UPC)
dsdt.dsl 5110: Name (PLDP, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HS04._PLD)
dsdt.dsl 5167: Name (UPCP, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HSC1._UPC)
dsdt.dsl 5179: Name (PLDP, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HSC1._PLD)
dsdt.dsl 5252: Name (UPCP, Package (0x04)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HSC2._UPC)
dsdt.dsl 5264: Name (PLDP, Package (0x01)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.XHC1.RHUB.HSC2._PLD)
dsdt.dsl 6122: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.PCI0.SEC0._CRS)
dsdt.dsl 6124: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.SEC0._CRS)
dsdt.dsl 6146: Processor (CPU0, 0x01, 0x00000000, 0x00){}
Warning 3168 - ^ Legacy Processor() keyword detected. Use Device() keyword instead.
dsdt.dsl 6147: Processor (CPU1, 0x02, 0x00000000, 0x00){}
Warning 3168 - ^ Legacy Processor() keyword detected. Use Device() keyword instead.
dsdt.dsl 6148: Processor (CPU2, 0x03, 0x00000000, 0x00){}
Warning 3168 - ^ Legacy Processor() keyword detected. Use Device() keyword instead.
dsdt.dsl 6149: Processor (CPU3, 0x04, 0x00000000, 0x00){}
Warning 3168 - ^ Legacy Processor() keyword detected. Use Device() keyword instead.
dsdt.dsl 6404: If (CondRefOf (\_OSI, Local0))
Warning 3144 - Method Local is set but never used ^ (Local0)
dsdt.dsl 6452: Device (GPED)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 6514: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.GPED._CRS)
dsdt.dsl 6516: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPED._CRS)
dsdt.dsl 6531: Method (_AEI, 0, NotSerialized) // _AEI: ACPI Event Interrupts
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.GPED._AEI)
dsdt.dsl 6533: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPED._AEI)
dsdt.dsl 6636: Local0 = ^^PCI0.SEC0.PMEE /* \_SB_.PCI0.SEC0.PMEE */
Warning 3144 - ^ Method Local is set but never used (Local0)
dsdt.dsl 6642: Device (GPO0)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 6649: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.GPO0._CRS)
dsdt.dsl 6651: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPO0._CRS)
dsdt.dsl 6721: Device (GPO1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 6728: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.GPO1._CRS)
dsdt.dsl 6730: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPO1._CRS)
dsdt.dsl 6750: Device (GPO2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 6757: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.GPO2._CRS)
dsdt.dsl 6759: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPO2._CRS)
dsdt.dsl 6791: Method (_INI) { // _INI: Initialize
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.GPO2._INI)
dsdt.dsl 6792: OperationRegion(PAD, SystemMemory, 0xFED0E000, 0x1000)
Warning 3175 - ^ Static OperationRegion should be declared outside control method
dsdt.dsl 6792: OperationRegion(PAD, SystemMemory, 0xFED0E000, 0x1000)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPO2._INI)
dsdt.dsl 6793: Field(PAD, DWordAcc, NoLock, Preserve) {
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPO2._INI)
dsdt.dsl 6806: Method (_AEI, 0, NotSerialized) // _AEI: ACPI Event Interrupts
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.GPO2._AEI)
dsdt.dsl 6808: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPO2._AEI)
dsdt.dsl 6817: Name (FBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPO2._AEI)
dsdt.dsl 7010: Method (_L12, 0, NotSerialized) // _Lxx: Level-Triggered GPE
Warning 3115 - ^ Not all control paths return a value (\_SB.GPO2._L12)
dsdt.dsl 7013: If (CondRefOf (\_SB.I2C1.BATC, Local1))
Warning 3144 - Method Local is set but never used ^ (Local1)
dsdt.dsl 7053: If (CondRefOf (\_SB.DPTF, Local3))
Warning 3144 - Method Local is set but never used ^ (Local3)
dsdt.dsl 7955: Device (SDHA)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8052: Device (SDHB)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8156: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.SDHB.BRCM._CRS)
dsdt.dsl 8158: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SDHB.BRCM._CRS)
dsdt.dsl 8203: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.SDHB.BRC2._CRS)
dsdt.dsl 8205: Name (NAM, Buffer (0x0F)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SDHB.BRC2._CRS)
dsdt.dsl 8209: Name (SPB, Buffer (0x0C)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SDHB.BRC2._CRS)
dsdt.dsl 8214: Name (END, Buffer (0x02)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SDHB.BRC2._CRS)
dsdt.dsl 8224: Device (BRC3)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8250: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.SDHB.BRC3._CRS)
dsdt.dsl 8252: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SDHB.BRC3._CRS)
dsdt.dsl 8301: Device (SDHC)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8486: Device (PWM1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8520: Device (PWM2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8554: Device (URT1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8626: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.URT1.GPS0._CRS)
dsdt.dsl 8628: Name (UBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.GPS0._CRS)
dsdt.dsl 8666: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.URT1.BTH1._CRS)
dsdt.dsl 8668: Name (UBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.BTH1._CRS)
dsdt.dsl 8698: Name (PBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.BTH1._CRS)
dsdt.dsl 8751: Device (URT2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8826: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.URT2.BTH0._CRS)
dsdt.dsl 8828: Name (UBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT2.BTH0._CRS)
dsdt.dsl 8858: Name (PBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT2.BTH0._CRS)
dsdt.dsl 8901: Device (SPI1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 8972: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.SPI1.FPNT._CRS)
dsdt.dsl 8974: Name (UBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SPI1.FPNT._CRS)
dsdt.dsl 8996: Device (NFC2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9009: Device (I2C1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9076: Device (MNZX)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9093: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C1.MNZX._CRS)
dsdt.dsl 9095: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C1.MNZX._CRS)
dsdt.dsl 9107: Device (I2C2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9174: Device (RTEK)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9181: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C2.RTEK._CRS)
dsdt.dsl 9183: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C2.RTEK._CRS)
dsdt.dsl 9225: Device (CAPS)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9236: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C2.CAPS._CRS)
dsdt.dsl 9238: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C2.CAPS._CRS)
dsdt.dsl 9256: Device (I2C3)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9323: Device (NFCD)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9334: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C3.NFCD._CRS)
dsdt.dsl 9336: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C3.NFCD._CRS)
dsdt.dsl 9354: Device (I2C4)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9461: Device (CAM1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9502: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C4.CAM1._CRS)
dsdt.dsl 9504: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C4.CAM1._CRS)
dsdt.dsl 9638: Device (CAM3)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9681: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C4.CAM3._CRS)
dsdt.dsl 9683: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C4.CAM3._CRS)
dsdt.dsl 9817: Device (CAM2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 9858: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C4.CAM2._CRS)
dsdt.dsl 9860: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C4.CAM2._CRS)
dsdt.dsl 9992: Device (STRA)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10005: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C4.STRA._CRS)
dsdt.dsl 10007: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C4.STRA._CRS)
dsdt.dsl 10122: Device (I2C5)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10189: Device (SHUB)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10248: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.SHUB._CRS)
dsdt.dsl 10250: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.SHUB._CRS)
dsdt.dsl 10277: Device (SAR1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10288: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.SAR1._CRS)
dsdt.dsl 10290: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.SAR1._CRS)
dsdt.dsl 10303: Device (SENS)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10319: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.SENS._CRS)
dsdt.dsl 10321: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.SENS._CRS)
dsdt.dsl 10363: Package (0x00){}
Remark 2095 - ^ Effective AML package length is zero
dsdt.dsl 10371: Device (ALSD)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10382: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.ALSD._CRS)
dsdt.dsl 10384: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.ALSD._CRS)
dsdt.dsl 10401: Device (COMP)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10412: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.COMP._CRS)
dsdt.dsl 10414: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.COMP._CRS)
dsdt.dsl 10425: Device (CAPS)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10436: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.CAPS._CRS)
dsdt.dsl 10438: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.CAPS._CRS)
dsdt.dsl 10456: Device (I2C6)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10571: Device (TCS0)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10612: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C6.TCS0._CRS)
dsdt.dsl 10614: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C6.TCS0._CRS)
dsdt.dsl 10631: Name (PBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C6.TCS0._CRS)
dsdt.dsl 10648: Name (ABUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C6.TCS0._CRS)
dsdt.dsl 10741: Device (TCHX)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10751: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C6.TCHX._CRS)
dsdt.dsl 10753: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C6.TCHX._CRS)
dsdt.dsl 10829: Device (GDIX)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10841: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C6.GDIX._CRS)
dsdt.dsl 10843: Name (ABUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C6.GDIX._CRS)
dsdt.dsl 10901: Device (NVTK)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 10912: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C6.NVTK._CRS)
dsdt.dsl 10914: Name (ABUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C6.NVTK._CRS)
dsdt.dsl 10941: Device (I2C7)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 11011: Device (PMIC)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 11023: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C7.PMIC._CRS)
dsdt.dsl 11025: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C7.PMIC._CRS)
dsdt.dsl 11664: Device (COMP)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 11675: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C7.PMIC.COMP._CRS)
dsdt.dsl 11677: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C7.PMIC.COMP._CRS)
dsdt.dsl 11694: Device (IMP1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 11710: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C1.IMP1._CRS)
dsdt.dsl 11712: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C1.IMP1._CRS)
dsdt.dsl 11723: Device (IMP2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 11739: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C1.IMP2._CRS)
dsdt.dsl 11741: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C1.IMP2._CRS)
dsdt.dsl 11752: Device (IMP3)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 11768: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C1.IMP3._CRS)
dsdt.dsl 11770: Name (SBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C1.IMP3._CRS)
dsdt.dsl 11958: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.TBAD._CRS)
dsdt.dsl 11960: Name (RBUF, ResourceTemplate ()
Remark 2089 - Object is not referenced ^ (Name [RBUF] is within a method [_CRS])
dsdt.dsl 11960: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.TBAD._CRS)
dsdt.dsl 11993: Name (PBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.TBAD._CRS)
dsdt.dsl 12103: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.MBID._CRS)
dsdt.dsl 12214: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\MDM._CRS)
dsdt.dsl 12216: Name (UBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\MDM._CRS)
dsdt.dsl 12419: Device (SFSA)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 12429: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C3.SFSA._CRS)
dsdt.dsl 12431: Name (BUF0, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C3.SFSA._CRS)
dsdt.dsl 12444: Name (BUF1, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C3.SFSA._CRS)
dsdt.dsl 12757: Divide (DSCP, 0x14, Local0, Local1)
Warning 3144 - Method Local is set but never used ^ (Local0)
dsdt.dsl 12871: Divide (Local0, Arg0, Local1, Local2)
Warning 3144 - Method Local is set but never used ^ (Local1)
dsdt.dsl 12905: Divide (Local0, Local1, Local2, Local3)
Warning 3144 - Method Local is set but never used ^ (Local2)
dsdt.dsl 13087: If (CondRefOf (\_SB.I2C1.BATC, Local1))
Warning 3144 - Method Local is set but never used ^ (Local1)
dsdt.dsl 13112: Device (TP1)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 13127: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.TP1._CRS)
dsdt.dsl 13129: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.TP1._CRS)
dsdt.dsl 13173: Device (TP2)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 13188: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.TP2._CRS)
dsdt.dsl 13190: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.TP2._CRS)
dsdt.dsl 13234: Device (TP3)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 13249: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.TP3._CRS)
dsdt.dsl 13251: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.TP3._CRS)
dsdt.dsl 13295: Device (TP4)
Warning 3073 - Multiple types ^ (Device object requires either a _HID or _ADR, but not both)
dsdt.dsl 13310: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.I2C5.TP4._CRS)
dsdt.dsl 13312: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.I2C5.TP4._CRS)
dsdt.dsl 13374: Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
Remark 2120 - ^ Control Method should be made Serialized due to creation of named objects within (\_SB.URT1.UART._CRS)
dsdt.dsl 13376: Name (RBUF, ResourceTemplate ()
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.UART._CRS)
dsdt.dsl 13479: Name (BUFF, Buffer (Local0){})
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.ADBG.OUTS)
dsdt.dsl 13509: Name (DEC, Buffer (0x0B)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.ADBG.OUTD)
dsdt.dsl 13513: Name (TMP, Buffer (0x0B){})
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.ADBG.OUTD)
dsdt.dsl 13547: Name (HEX, Buffer (0x11)
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.ADBG.OUTH)
dsdt.dsl 13551: Name (TMP, Buffer (0x0A){})
Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.URT1.ADBG.OUTH)
dsdt.dsl 13732: MNIO (DerefOf (Arg0 [Local0]))
Remark 2098 - Recursive method call ^ (MNIO)
Intel ACPI Component Architecture
ASL+ Optimizing Compiler/Disassembler version 20200430
Copyright (c) 2000 - 2020 Intel Corporation
ASL Input: dsdt.dsl - 483656 bytes 5462 keywords 13761 source lines
AML Output: dsdt.aml - 54912 bytes 3645 opcodes 1817 named objects
Compilation successful. 0 Errors, 79 Warnings, 158 Remarks, 326 Optimizations
>>> firmware-asus-me176c-acpi: Entering fakeroot...
]0;abuild: firmware-asus-me176c-acpi>>> firmware-asus-me176c-acpi*: Running postcheck for firmware-asus-me176c-acpi
>>> firmware-asus-me176c-acpi*: Preparing package firmware-asus-me176c-acpi...
>>> WARNING: firmware-asus-me176c-acpi*: No arch specific binaries found so arch should probably be set to "noarch"
>>> firmware-asus-me176c-acpi*: Scanning shared objects
>>> firmware-asus-me176c-acpi*: Tracing dependencies...
>>> firmware-asus-me176c-acpi*: Package size: 64.0 KB
>>> firmware-asus-me176c-acpi*: Compressing data...
>>> firmware-asus-me176c-acpi*: Create checksum...
>>> firmware-asus-me176c-acpi*: Create firmware-asus-me176c-acpi-0_git20190206-r2.apk
]0;>>> firmware-asus-me176c-acpi: Build complete at Sun, 17 May 2020 14:57:12 +0000 elapsed time 0h 0m 4s
]0;>>> firmware-asus-me176c-acpi: Updating the pmos/x86_64 repository index...
>>> firmware-asus-me176c-acpi: Signing the index...
mv: can't preserve ownership of '/mnt/pmbootstrap-packages/x86_64/APKINDEX.tar.gz.2460': Operation not permitted
]0;(002313) [14:57:12] (native) uninstall build dependencies
(002313) [14:57:12] (native) % cd /home/pmos/build; busybox su pmos -c SUDO_APK='abuild-apk --no-progress' HOME=/home/pmos abuild undeps
]0;abuild: firmware-asus-me176c-acpiWARNING: Ignoring APKINDEX.c25db003.tar.gz: No such file or directory
(1/2) Purging .makedepends-firmware-asus-me176c-acpi (20200517.145709)
(2/2) Purging iasl (20200430-r0)
Executing busybox-1.31.1-r15.trigger
OK: 227 MiB in 56 packages
]0;(002313) [14:57:12] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(002313) [14:57:12] Done
|