-
Notifications
You must be signed in to change notification settings - Fork 5
/
pi-touch-system_info-20210505-115857
18223 lines (17052 loc) · 874 KB
/
pi-touch-system_info-20210505-115857
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
_ VERSION 3.1.6 _ __
___ _ _ ___| |_ ___ _ __ ___ (_)_ __ / _| ___
/ __| | | / __| __/ _ \ '_ \` _ \ | | '_ \| |_ / _ \
\__ \ |_| \__ \ || __/ | | | | | | | | | | _| (_) |
|___/\__, |___/\__\___|_| |_| |_| |_|_| |_|_| \___/
|___/
RASPBERRY PI SYSTEM INFORMATION REPORT
===============================================================================
THE FOLLOWING INSTALLED PACKAGES ALLOW ADDITIONAL SUPPLEMENTAL INSPECTIONS
===============================================================================
agnostics m4 samba
apparmor nfs-kernel-server screen
at pciutils smartmontools
auditd perl-base sysbench
cups-client pigpiod sysstat
curl pulseaudio tripwire
dc python3-gpiozero unhide
ethtool quota watchdog
hdparm rfkill wiringpi
joystick rkhunter x11-xserver-utils
lm-sensors rng-tools
lynis rpcbind
The following Menu Options were selected, to generate this report:
Option 17: Run All Sections - (This option overrides any/all other selections)
__ __ _____ __
(_ |_ / | |/ \|\ | /| Menu Option 1
__)|__\__ | |\__/| \| | PI HARDWARE
===============================================================================
SYSTEM_INFO(1): NEW STYLE SYSTEM REVISION NUMBER
===============================================================================
Revision : 2a020d3
PCB Revision : v1.3
Model Name : 3B+
Processor : BCM2837
Manufacturer : Sony UK
Memory Size : 1024 MB
Encoded Flag : revision is a bit field
Warranty Void : yes
Release Date : Q1 2018
===============================================================================
SYSTEM_INFO(1): SYSTEM IDENTIFICATION
===============================================================================
Hostname: pi-touch
Serial #: 000000005df61b34
===============================================================================
SYSTEM_INFO(1): MAC-ADDRESS(ES)
===============================================================================
B8:27:EB:A3:4E:61
B8:27:EB:F6:1B:34
===============================================================================
SYSTEM_INFO(1): MODEL AND FIRMWARE VERSION
===============================================================================
Raspberry Pi 3 Model B Plus Rev 1.3
Raspberry Pi reference 2020-12-02
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, cce27bd6f44a3b2e83855645986b3e21f771e852, stage5
Feb 25 2021 12:13:12
Copyright (c) 2012 Broadcom
version 564e5f9b852b23a330b1764bcf0b2d022a20afd0 (clean) (release) (start_x)
===============================================================================
SYSTEM_INFO(1): VIDEO CORE VERSION AND LOG STATUS
===============================================================================
Feb 25 2021 12:13:12
Copyright (c) 2011 Broadcom
version 564e5f9b852b23a330b1764bcf0b2d022a20afd0 (clean)
host buildbot
mmal - error
gencmd_file - info
wdog - warn
mmal-opaque - error
mmalsrv - error
gpus - warn
vchiq_test - info
audioserv - warn
smct - error
smservice - error
vchiq_vc - error
vchiq_sync - warn
vchiq_srvtrace - trace
vchiq_core_msg - warn
vchiq_core - warn
arm_loader - info
dispmanx - warn
hdmi - warn
pixelvalve - warn
dsi - warn
hvs - warn
scalerlib - warn
cam_alloc - warn
plat_conf - warn
confzilla_fe_fdt - warn
confzilla_be - warn
gpioman - warn
board - warn
brfs - info
vcos_cmd - info
default - error
vc_suspend - warn
clock - warn
camsubs - warn
arasan - info
===============================================================================
SYSTEM_INFO(1): VIDEO CORE OUT-OF-MEMORY EVENTS
===============================================================================
oom events: 0
lifetime oom required: 0 Mbytes
total time in oom handler: 0 ms
max time spent in oom handler: 0 ms
===============================================================================
SYSTEM_INFO(1): VIDEO CORE RELOCATABLE MEMORY STATS
===============================================================================
alloc failures: 0
compactions: 0
legacy block fails: 0
===============================================================================
SYSTEM_INFO(1): SYSTEM DIAGRAM (***)
===============================================================================
,--------------------------------.
| oooooooooooooooooooo J8 +====
| 1ooooooooooooooooooo PoE | USB
| Wi oo +====
| Fi Pi Model 3B+ V1.3 oo |
| ,----. +====
| |D| |SoC | | USB
| |S| | | +====
| |I| `----' |
| |C| +======
| |S| | Net
| pwr |HDMI| |I||A| +======
`-| |--------| |----|V|-------'
Revision : 2a020d3
SoC : BCM2837
RAM : 1024Mb
Storage : MicroSD
USB ports : 4 (excluding power)
Ethernet ports : 1
Wi-fi : True
Bluetooth : True
Camera ports (CSI) : 1
Display ports (DSI): 1
J8:
3V3 (1) (2) 5V
GPIO2 (3) (4) 5V
GPIO3 (5) (6) GND
GPIO4 (7) (8) GPIO14
GND (9) (10) GPIO15
GPIO17 (11) (12) GPIO18
GPIO27 (13) (14) GND
GPIO22 (15) (16) GPIO23
3V3 (17) (18) GPIO24
GPIO10 (19) (20) GND
GPIO9 (21) (22) GPIO25
GPIO11 (23) (24) GPIO8
GND (25) (26) GPIO7
GPIO0 (27) (28) GPIO1
GPIO5 (29) (30) GND
GPIO6 (31) (32) GPIO12
GPIO13 (33) (34) GND
GPIO19 (35) (36) GPIO16
GPIO26 (37) (38) GPIO20
GND (39) (40) GPIO21
For further information, please refer to https://pinout.xyz/
===============================================================================
SYSTEM_INFO(1): CPU INFORMATION
===============================================================================
Architecture: armv7l
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 1
Vendor ID: ARM
Model: 4
Model name: Cortex-A53
Stepping: r0p4
CPU max MHz: 1400.0000
CPU min MHz: 1400.0000
BogoMIPS: 38.40
Flags: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
===============================================================================
SYSTEM_INFO(1): LM-SENSORS (***)
===============================================================================
cpu_thermal-virtual-0
Adapter: Virtual device
temp1: +42.9 C
rpi_volt-isa-0000
Adapter: ISA adapter
in0: N/A
-------------------------------------------------------
Searching for sensors...
# sensors-detect revision $Revision$
# Kernel: 5.10.17-v7+ armv7l
# Processor: ARMv7 Processor rev 4 (v7l) (//)
Running in automatic mode, default answers to all questions
are assumed.
Some south bridges, CPUs or memory controllers contain embedded sensors.
Do you want to scan for them? This is totally safe. (YES/no):
Failed to load module cpuid.
Silicon Integrated Systems SIS5595... No
VIA VT82C686 Integrated Sensors... No
VIA VT8231 Integrated Sensors... No
AMD K8 thermal sensors... No
AMD Family 10h thermal sensors... No
AMD Family 11h thermal sensors... No
AMD Family 12h and 14h thermal sensors... No
AMD Family 15h thermal sensors... No
AMD Family 16h thermal sensors... No
AMD Family 17h thermal sensors... No
AMD Family 15h power sensors... No
AMD Family 16h power sensors... No
Intel digital thermal sensor... No
Intel AMB FB-DIMM thermal sensor... No
Intel 5500/5520/X58 thermal sensor... No
VIA C7 thermal sensor... No
VIA Nano thermal sensor... No
Lastly, we can probe the I2C/SMBus adapters for connected hardware
monitoring devices. This is the most risky part, and while it works
reasonably well on most systems, it has been reported to cause trouble
on some systems.
Do you want to probe the I2C/SMBus adapters now? (YES/no):
Sorry, no supported PCI bus adapters found.
Next adapter: bcm2835 (i2c@7e804000) (i2c-1)
Do you want to scan it? (YES/no/selectively):
Client found at address 0x51
Handled by driver `rtc_pcf8563' (already loaded), chip type `pcf8563'
(note: this is probably NOT a sensor chip!)
Sorry, no sensors were detected.
Either your system has no sensors, or they are not supported, or
they are connected to an I2C or SMBus adapter that is not
supported. If you find out what chips are on your board, check
https://hwmon.wiki.kernel.org/device_support_status for driver status.
----------------------------------------------------
* lm-sensors.service - Initialize hardware monitoring sensors
Loaded: loaded (/lib/systemd/system/lm-sensors.service; enabled; vendor preset: enabled)
Active: active (exited) since Wed 2021-05-05 11:38:46 EDT; 20min ago
Process: 482 ExecStart=/usr/bin/sensors -s (code=exited, status=0/SUCCESS)
Process: 515 ExecStart=/usr/bin/sensors (code=exited, status=0/SUCCESS)
Main PID: 515 (code=exited, status=0/SUCCESS)
May 05 11:38:45 pi-touch systemd[1]: Starting Initialize hardware monitoring sensors...
May 05 11:38:45 pi-touch sensors[515]: cpu_thermal-virtual-0
May 05 11:38:45 pi-touch sensors[515]: Adapter: Virtual device
May 05 11:38:45 pi-touch sensors[515]: temp1: +46.2?C
May 05 11:38:45 pi-touch sensors[515]: rpi_volt-isa-0000
May 05 11:38:45 pi-touch sensors[515]: Adapter: ISA adapter
May 05 11:38:45 pi-touch sensors[515]: in0: N/A
May 05 11:38:46 pi-touch systemd[1]: Started Initialize hardware monitoring sensors.
===============================================================================
SYSTEM_INFO(1): OTP BOOT-FROM-USB STATUS
===============================================================================
Boot From USB: Enabled
__ __ _____ __ __
(_ |_ / | |/ \|\ | _) Menu Option 2
__)|__\__ | |\__/| \| /__ PERFORMANCE
===============================================================================
SYSTEM_INFO(2): PROCESSOR SPEEDS
===============================================================================
CPU: 1400 MHz
CORE: 399 MHz
GPU: 300 MHz
===============================================================================
SYSTEM_INFO(2): CLOCKSPEED / OVERCLOCKING OPTIONS FOUND IN CONFIG.TXT
===============================================================================
arm_freq=2000
force_turbo=1
hdmi_enable_4kp60=1
over_voltage=5
===============================================================================
SYSTEM_INFO(2): RING OSCILLATOR STATS
===============================================================================
read_ring_osc(2)=3.698MHz (@1.3875V) (42.9'C) (108.3°F) (***)
===============================================================================
SYSTEM_INFO(2): CLOCK FREQUENCIES
===============================================================================
arm: frequency(48)=1400000000
core: frequency(1)=400000000
h264: frequency(28)=0
isp: frequency(45)=0
v3d: frequency(46)=0
uart: frequency(22)=48000000
pwm: frequency(25)=0
emmc: frequency(50)=200000000
pixel: frequency(29)=29500000
vec: frequency(10)=0
hdmi: frequency(0)=0
dpi: frequency(4)=0
===============================================================================
SYSTEM_INFO(2): VOLTAGES
===============================================================================
core: volt=1.3875V
sdram_c: volt=1.2500V
sdram_i: volt=1.2500V
sdram_p: volt=1.2250V
===============================================================================
SYSTEM_INFO(2): TEMPERATURE
===============================================================================
GPU Temp: 42.90°C (109.22°F) (***)
ARM Temp: 42.93°C (109.27°F) (***)
===============================================================================
SYSTEM_INFO(2): SCALING GOVERNOR
===============================================================================
ondemand
(...but overridden by "force_turbo=1" found in config.txt)
===============================================================================
SYSTEM_INFO(2): DECODED PROCESSOR THROTTLING STATUS
===============================================================================
Throttle Status: 0x0
Undervolted:
Currently: no
Since Boot: no
Throttled:
Currently: no
Since Boot: no
Frequency Capped:
Currently: no
Since Boot: no
Softlimit:
Currently: no
Since Boot: no
===============================================================================
SYSTEM_INFO(2): MPSTAT (***)
===============================================================================
Linux 5.10.17-v7+ (pi-touch) 05/05/21 _armv7l_ (4 CPU)
11:59:04 CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
11:59:07 all 0.95 0.00 1.63 0.00 0.00 0.00 0.00 0.00 0.00 97.42
11:59:10 all 1.28 0.00 1.45 0.00 0.00 0.00 0.00 0.00 0.00 97.26
11:59:13 all 0.94 0.00 1.45 0.09 0.00 0.00 0.00 0.00 0.00 97.52
Average: all 1.06 0.00 1.51 0.03 0.00 0.00 0.00 0.00 0.00 97.40
===============================================================================
SYSTEM_INFO(2): IOSTAT (***)
===============================================================================
Linux 5.10.17-v7+ (pi-touch) 05/05/21 _armv7l_ (4 CPU)
avg-cpu: %user %nice %system %iowait %steal %idle
3.66 0.16 2.99 0.61 0.00 92.57
Device r/s w/s rkB/s wkB/s rrqm/s wrqm/s %rrqm %wrqm r_await w_await aqu-sz rareq-sz wareq-sz svctm %util
sda 18.36 7.30 401.60 65.51 20.09 3.41 52.25 31.81 1.85 0.88 0.04 21.87 8.97 1.50 3.85
sdb 5.91 0.01 294.56 0.06 0.19 0.00 3.09 16.67 2.64 0.93 0.02 49.87 4.80 1.85 1.10
sdc 0.30 0.01 6.61 0.04 0.25 0.00 45.63 21.43 20.06 6.64 0.01 22.28 5.09 19.22 0.59
zram0 0.50 2.45 1.98 9.78 0.00 0.00 0.00 0.00 0.00 0.03 0.00 4.00 4.00 0.37 0.11
zram1 0.57 2.39 2.27 9.58 0.00 0.00 0.00 0.00 0.01 0.03 0.00 4.00 4.00 0.39 0.11
zram2 0.59 2.37 2.36 9.46 0.00 0.00 0.00 0.00 0.00 0.03 0.00 4.00 4.00 0.39 0.12
zram3 0.47 2.35 1.87 9.40 0.00 0.00 0.00 0.00 0.02 0.03 0.00 4.00 4.00 0.37 0.10
===============================================================================
SYSTEM_INFO(2): AGNOSTICS MEDIA SPEED TEST (***)
===============================================================================
Run 1
prepare-file;0;0;37925;74
seq-write;0;0;35121;68
rand-4k-write;0;0;16595;4148
rand-4k-read;12393;3098;0;0
Sequential write speed 35121 KB/sec (target 10000) - PASS
Random write speed 4148 IOPS (target 500) - PASS
Random read speed 3098 IOPS (target 1500) - PASS
===============================================================================
SYSTEM_INFO(2): SYSBENCH CPU BENCHMARK (***)
===============================================================================
sysbench 0.4.12: multi-threaded system evaluation benchmark
Running the test with following options:
Number of threads: 4
Additional request validation enabled.
Doing CPU performance benchmark
Threads started!
Done.
Maximum prime number checked in CPU test: 20000
Test execution summary:
total time: 89.1690s
total number of events: 10000
total time taken by event execution: 356.6114
per-request statistics:
min: 32.56ms
avg: 35.66ms
max: 155.64ms
approx. 95 percentile: 53.51ms
Threads fairness:
events (avg/stddev): 2500.0000/41.53
execution time (avg/stddev): 89.1529/0.01
===============================================================================
SYSTEM_INFO(2): SYSBENCH MEMORY READ/WRITE BENCHMARK (***)
===============================================================================
sysbench 0.4.12: multi-threaded system evaluation benchmark
Running the test with following options:
Number of threads: 1
Doing memory operations speed test
Memory block size: 1K
Memory transfer size: 2048M
Memory operations type: write
Memory scope type: global
Threads started!
Done.
Operations performed: 2097152 (666220.45 ops/sec)
2048.00 MB transferred (650.61 MB/sec)
Test execution summary:
total time: 3.1478s
total number of events: 2097152
total time taken by event execution: 2.4901
per-request statistics:
min: 0.00ms
avg: 0.00ms
max: 20.07ms
approx. 95 percentile: 0.00ms
Threads fairness:
events (avg/stddev): 2097152.0000/0.00
execution time (avg/stddev): 2.4901/0.00
----------------------------------------------------
sysbench 0.4.12: multi-threaded system evaluation benchmark
Running the test with following options:
Number of threads: 1
Doing memory operations speed test
Memory block size: 1K
Memory transfer size: 2048M
Memory operations type: read
Memory scope type: global
Threads started!
Done.
Operations performed: 2097152 (927628.27 ops/sec)
2048.00 MB transferred (905.89 MB/sec)
Test execution summary:
total time: 2.2608s
total number of events: 2097152
total time taken by event execution: 1.6183
per-request statistics:
min: 0.00ms
avg: 0.00ms
max: 9.01ms
approx. 95 percentile: 0.00ms
Threads fairness:
events (avg/stddev): 2097152.0000/0.00
execution time (avg/stddev): 1.6183/0.00
===============================================================================
SYSTEM_INFO(2): SYSBENCH FILEIO BENCHMARK (***)
===============================================================================
Touchfile "/home/pi/.system_info_io" not detected.
Skipping sysbench File I/O benchmark.
To have system_info run this test, create the
touchfile with the following command:
touch /home/pi/.system_info_io
To prevent system_info from running this test,
delete the touchfile with the following command:
rm /home/pi/.system_info_io
Note that enabling this test creates, writes, reads
and deletes 128 test files, 16Mb each (2GB total).
Most people will NOT want to do that much writing to
their wear-sensitive media (mainly SD cards and USB-
attached SSD drives), on a regular basis.
__ __ _____ __ __
(_ |_ / | |/ \|\ | _) Menu Option 3
__)|__\__ | |\__/| \| __) OS CONFIG
===============================================================================
SYSTEM_INFO(3): OPERATING SYSTEM
===============================================================================
OPERATING SYSTEM PROVENANCE:
This Pi was built from a "Raspberry Pi OS" SD image...
Raspberry Pi reference 2020-12-02
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, cce27bd6f44a3b2e83855645986b3e21f771e852, stage5
NOTE #1:
You can append that hash to the end of this URL, to see
the exact state of the software that made up that image.
https://github.com/RPi-Distro/pi-gen/commit/
NOTE #2:
If you ever wanted/needed to re-download the exact image
that was used to first image this Pi, you could go to the
following URL and look for the FIRST SIX characters of
the hash reported by this additional provenance info.
https://github.com/RPi-Distro/pi-gen/releases/
If you see those characters listed, you can probably find
a copy of that image at the following URL...
https://downloads.raspberrypi.org/
-------------------------------------------------------
OS-RELEASE:
Raspbian GNU/Linux 10 (buster)
Linux pi-touch 5.10.17-v7+ #1403 SMP Mon Feb 22 11:29:51 GMT 2021 armv7l GNU/Linux
LSB_RELEASE:
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 10 (buster)
Release: 10
Codename: buster
HOSTNAMECTL:
Static hostname: pi-touch
Icon name: computer
Machine ID: a5309045cbfb4ac2b365f41113c81573
Boot ID: 66bf5e6ba55a4a75a9f6188ea59cc6a5
Operating System: Raspbian GNU/Linux 10 (buster)
Kernel: Linux 5.10.17-v7+
Architecture: arm
OSTYPE.............. linux-gnueabihf
KERNEL IS........... 32-BIT
KVM SUPPORT......... disabled
DEFAULT BOOT TARGET. Graphical Interface
GUI AUTOLOGIN....... pi
TTY AUTOLOGIN....... none
BASH VERSION........ 5.0.3(1)-release
UPTIME.............. up 22 minutes
SELINUX............. not present in this kernel
APPARMOR............ enabled
AUDITD SUPPORT...... enabled
-------------------------------------------------------
Kernel Compile-Time Configuration Settings
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 5.10.17 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc-8 (Ubuntu/Linaro 8.4.0-3ubuntu1) 8.4.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=80400
CONFIG_LD_VERSION=234000000
CONFIG_CLANG_VERSION=0
CONFIG_LLD_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_TABLE_SORT=y
#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION="-v7"
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_BUILD_SALT=""
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_INIT=""
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
# CONFIG_WATCH_QUEUE is not set
CONFIG_CROSS_MEMORY_ATTACH=y
# CONFIG_USELIB is not set
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y
#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_IRQ_INJECTION=y
CONFIG_HARDIRQS_SW_RESEND=y
CONFIG_GENERIC_IRQ_CHIP=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_SIM=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_IRQ_IPI=y
CONFIG_HANDLE_DOMAIN_IRQ=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_GENERIC_IRQ_DEBUGFS=y
# end of IRQ subsystem
CONFIG_GENERIC_IRQ_MULTI_HANDLER=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_ARCH_HAS_TICK_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
# end of Timers subsystem
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
#
# CPU/Task time and stats accounting
#
CONFIG_TICK_CPU_ACCOUNTING=y
# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
# CONFIG_PSI is not set
# end of CPU/Task time and stats accounting
CONFIG_CPU_ISOLATION=y
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_SRCU=y
CONFIG_TREE_SRCU=y
CONFIG_TASKS_RCU_GENERIC=y
CONFIG_TASKS_RUDE_RCU=y
CONFIG_TASKS_TRACE_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
# end of RCU Subsystem
CONFIG_IKCONFIG=m
CONFIG_IKCONFIG_PROC=y
# CONFIG_IKHEADERS is not set
CONFIG_LOG_BUF_SHIFT=17
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
CONFIG_GENERIC_SCHED_CLOCK=y
#
# Scheduler features
#
# CONFIG_UCLAMP_TASK is not set
# end of Scheduler features
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
CONFIG_MEMCG_KMEM=y
CONFIG_BLK_CGROUP=y
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_CGROUP_PIDS=y
# CONFIG_CGROUP_RDMA is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_BPF=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_SOCK_CGROUP_DATA=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
# CONFIG_CHECKPOINT_RESTORE is not set
CONFIG_SCHED_AUTOGROUP=y
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_RD_ZSTD=y
# CONFIG_BOOT_CONFIG is not set
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_LD_ORPHAN_WARN=y
CONFIG_SYSCTL=y
CONFIG_HAVE_UID16=y
CONFIG_BPF=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_MULTIUSER=y
# CONFIG_SGETMASK_SYSCALL is not set
CONFIG_SYSFS_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_PRINTK_NMI=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_IO_URING=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_MEMBARRIER=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_BPF_SYSCALL=y
# CONFIG_BPF_PRELOAD is not set
# CONFIG_USERFAULTFD is not set
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_RSEQ=y
# CONFIG_DEBUG_RSEQ is not set
CONFIG_EMBEDDED=y
CONFIG_HAVE_PERF_EVENTS=y
CONFIG_PERF_USE_VMALLOC=y
# CONFIG_PC104 is not set
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
# end of Kernel Performance Events And Counters
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_SLUB_MEMCG_SYSFS_ON is not set
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
CONFIG_SLAB_MERGE_DEFAULT=y
# CONFIG_SLAB_FREELIST_RANDOM is not set
# CONFIG_SLAB_FREELIST_HARDENED is not set
# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
CONFIG_SLUB_CPU_PARTIAL=y
CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# end of General setup
CONFIG_ARM=y
CONFIG_ARM_HAS_SG_CHAIN=y
CONFIG_SYS_SUPPORTS_APM_EMULATION=y
CONFIG_HAVE_PROC_CPU=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ZONE_DMA=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIQ=y
CONFIG_ARM_PATCH_PHYS_VIRT=y
CONFIG_GENERIC_BUG=y
CONFIG_PGTABLE_LEVELS=2
#
# System Type
#
CONFIG_MMU=y
CONFIG_ARCH_MMAP_RND_BITS_MIN=8
CONFIG_ARCH_MMAP_RND_BITS_MAX=15
CONFIG_ARCH_MULTIPLATFORM=y
# CONFIG_ARCH_EBSA110 is not set
# CONFIG_ARCH_EP93XX is not set
# CONFIG_ARCH_FOOTBRIDGE is not set
# CONFIG_ARCH_IOP32X is not set
# CONFIG_ARCH_IXP4XX is not set
# CONFIG_ARCH_DOVE is not set
# CONFIG_ARCH_PXA is not set
# CONFIG_ARCH_RPC is not set
# CONFIG_ARCH_SA1100 is not set
# CONFIG_ARCH_S3C24XX is not set
# CONFIG_ARCH_OMAP1 is not set
#
# Multiple platform selection
#
#
# CPU Core family selection
#
# CONFIG_ARCH_MULTI_V6 is not set
CONFIG_ARCH_MULTI_V7=y
CONFIG_ARCH_MULTI_V6_V7=y
# end of Multiple platform selection
# CONFIG_ARCH_VIRT is not set
# CONFIG_ARCH_ACTIONS is not set
# CONFIG_ARCH_ALPINE is not set
# CONFIG_ARCH_ARTPEC is not set
# CONFIG_ARCH_ASPEED is not set
# CONFIG_ARCH_AT91 is not set
CONFIG_ARCH_BCM=y
#
# IPROC architected SoCs
#
# CONFIG_ARCH_BCM_CYGNUS is not set
# CONFIG_ARCH_BCM_HR2 is not set
# CONFIG_ARCH_BCM_NSP is not set
# CONFIG_ARCH_BCM_5301X is not set
#
# KONA architected SoCs
#
# CONFIG_ARCH_BCM_281XX is not set
# CONFIG_ARCH_BCM_21664 is not set
# CONFIG_ARCH_BCM_23550 is not set
#
# Other Architectures
#
CONFIG_ARCH_BCM2835=y
# CONFIG_ARCH_BCM_53573 is not set
# CONFIG_ARCH_BCM_63XX is not set
# CONFIG_ARCH_BRCMSTB is not set
# CONFIG_ARCH_BERLIN is not set
# CONFIG_ARCH_DIGICOLOR is not set
# CONFIG_ARCH_EXYNOS is not set
# CONFIG_ARCH_HIGHBANK is not set
# CONFIG_ARCH_HISI is not set
# CONFIG_ARCH_MXC is not set
# CONFIG_ARCH_KEYSTONE is not set
# CONFIG_ARCH_MEDIATEK is not set
# CONFIG_ARCH_MESON is not set
# CONFIG_ARCH_MILBEAUT is not set
# CONFIG_ARCH_MMP is not set
# CONFIG_ARCH_MSTARV7 is not set
# CONFIG_ARCH_MVEBU is not set
# CONFIG_ARCH_NPCM is not set
#
# TI OMAP/AM/DM/DRA Family
#
# CONFIG_ARCH_OMAP3 is not set
# CONFIG_ARCH_OMAP4 is not set
# CONFIG_SOC_OMAP5 is not set
# CONFIG_SOC_AM33XX is not set
# CONFIG_SOC_AM43XX is not set
# CONFIG_SOC_DRA7XX is not set
# end of TI OMAP/AM/DM/DRA Family
# CONFIG_ARCH_SIRF is not set
# CONFIG_ARCH_QCOM is not set
# CONFIG_ARCH_RDA is not set
# CONFIG_ARCH_REALTEK is not set
# CONFIG_ARCH_REALVIEW is not set
# CONFIG_ARCH_ROCKCHIP is not set
# CONFIG_ARCH_S5PV210 is not set
# CONFIG_ARCH_RENESAS is not set
# CONFIG_ARCH_SOCFPGA is not set
# CONFIG_PLAT_SPEAR is not set
# CONFIG_ARCH_STI is not set
# CONFIG_ARCH_STM32 is not set
# CONFIG_ARCH_SUNXI is not set
# CONFIG_ARCH_TANGO is not set
# CONFIG_ARCH_TEGRA is not set
# CONFIG_ARCH_UNIPHIER is not set
# CONFIG_ARCH_U8500 is not set
# CONFIG_ARCH_VEXPRESS is not set
# CONFIG_ARCH_WM8850 is not set
# CONFIG_ARCH_ZX is not set
# CONFIG_ARCH_ZYNQ is not set
#
# Processor Type