-
Notifications
You must be signed in to change notification settings - Fork 2
/
devices.yml
1494 lines (1434 loc) · 43.7 KB
/
devices.yml
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
# REF: https://gitlab.com/kalilinux/nethunter/build-scripts/kali-nethunter-devices/-/blob/master/devices.cfg
# - vendor:
# - board: "device-name"
# name: "human readable string of board/device"
# cpu: "cpu model/chipset"
# cpu-cores: "1/2/3/4..."
# gpu: "gpu name"
# ram: "DDR2/LPDDR3..."
# ram-size: ["512", "1024", "..."]
# ethernet: "0/1/2/3/4..." (0 means hardware isn't supported)
# ethernet-speed: "0/10/100/1000" (Just leave the fastest option)
# wifi: "0/2.4GHz/5GHz"
# bluetooth: "true/false"
# usb2: "0/1/2/3/4..." (0 means hardware isn't supported)
# usb3: "0/1/2/3/4..." (0 means hardware isn't supported)
# storage: ["sdcard", "emmc", "..."]
# notes: "anything to mention about the board/device"
# images:
# - image: "suffix for uncompressed filename: <slug>-<architecture>.img. prefix is `kali-linux-<version>-`"
# name: "human readable string of image for download page/documentation"
# architecture: "armel/armhf/arm64"
# preferred-image: "true/false - if multiple images, which is preferred"
# support: "kali/community/eol"
# slug: "what the documentation slug URL is on kali-docs" https://www.kali.org/docs/arm/<slug>/
# build-script: "build-script filename.sh" https://gitlab.com/kalilinux/build-scripts/kali-arm/<build-script>
# kernel: "custom/kali/vendor"
# kernel-version: "output of $(uname -r)"
# image-notes: "anything to mention about the image"
---
devices:
- raspberrypi:
- board: "raspberry-pi-2"
name: "Raspberry Pi 2 (1.1)"
cpu: "Broadcom BCM2836/BCM2837"
cpu-cores: "4"
gpu: "Broadcom VideoCore IV"
ram: "LPDDR2"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "100"
# wifi: "0"
bluetooth: "false"
usb2: "4"
usb3: "0"
storage: ["sdcard", "usb"]
notes: ""
images:
- image: "raspberry-pi-armhf.img"
name: "Raspberry Pi 2, 3, 4 and 400 (32-bit)"
architecture: "armhf"
preferred-image: "true"
support: "kali"
slug: "raspberry-pi-2"
build-script: "raspberry-pi.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- image: "raspberry-pi-arm64.img"
name: "Raspberry Pi 2 (v1.2), 3, 4 and 400 (64-bit)"
architecture: "arm64"
preferred-image: "false"
support: "kali"
slug: "raspberry-pi-2"
build-script: "raspberry-pi-64-bit.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- board: "rasbperry-pi-3"
name: "Raspberry Pi 3"
cpu: "Broadcom BCM2837"
cpu-cores: "4"
gpu: "Broadcom VideoCore IV"
ram: "LPDDR2"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "100"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "4"
usb3: "0"
storage: ["sdcard", "usb"]
notes: ""
images:
- image: "raspberry-pi-armhf.img"
name: "Raspberry Pi 2, 3, 4 and 400 (32-bit)"
architecture: "armhf"
preferred-image: "true"
support: "kali"
slug: "raspberry-pi-3"
build-script: "raspberry-pi.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- image: "raspberry-pi-arm64.img"
name: "Raspberry Pi 2 (v1.2), 3, 4 and 400 (64-bit)"
architecture: "arm64"
preferred-image: "false"
support: "kali"
slug: "raspberry-pi-3"
build-script: "raspberry-pi-64-bit.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- board: "raspberry-pi-4"
name: "Raspberry Pi 4"
cpu: "Broadcom BCM2711"
cpu-cores: "4"
gpu: "Broadcom VideoCore VI"
ram: "LPDDR4"
ram-size: ["1024", "2048", "4096", "8096"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "2"
storage: ["sdcard", "usb"]
notes: "<b>Our preferred high-end (8GB) & low-end (2GB) ARM Single Board Computer (SBC)</b>.
WiFi: Broadcom BCM4345/6."
images:
- image: "raspberry-pi-armhf.img"
name: "Raspberry Pi 2, 3, 4 and 400 (32-bit)"
architecture: "armhf"
preferred-image: "true"
support: "kali"
slug: "raspberry-pi-4"
build-script: "raspberry-pi.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- image: "raspberry-pi-arm64.img"
name: "Raspberry Pi 2 (v1.2), 3, 4 and 400 (64-bit)"
architecture: "arm64"
preferred-image: "false"
support: "kali"
slug: "raspberry-pi-400"
build-script: "raspberry-pi-64-bit.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- board: "raspberry-pi-400"
name: "Raspberry Pi 400"
cpu: "Broadcom BCM2711"
cpu-cores: "4"
gpu: "VideoCore VI"
ram: "LPDDR4"
ram-size: ["4096"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "1"
usb3: "2"
storage: ["sdcard", "usb"]
notes: "No nexmon support for the Raspberry Pi 400"
images:
- image: "raspberry-pi-armhf.img"
name: "Raspberry Pi 2, 3, 4 and 400 (32-bit)"
architecture: "armhf"
preferred-image: "true"
support: "kali"
slug: "raspberry-pi-400"
build-script: "raspberry-pi.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- image: "raspberry-pi-arm64.img"
name: "Raspberry Pi 2 (v1.2), 3, 4 and 400 (64-bit)"
architecture: "arm64"
preferred-image: "false"
support: "kali"
slug: "raspberry-pi-400"
build-script: "raspberry-pi-64-bit.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- board: "raspberry-pi1"
name: "Raspberry Pi 1 (Original)"
cpu: "Broadcom BCM2835"
cpu-cores: "1"
gpu: "Broadcom VideoCore IV"
ram: "DDR2"
ram-size: ["256", "512"]
ethernet: "0"
ethernet-speed: "100"
# wifi: "0"
bluetooth: "false"
usb2: "0"
usb3: "4"
storage: ["sdcard"]
notes: ""
images:
- image: "raspberry-pi1-armel.img"
name: "Raspberry Pi 1 (Original)"
architecture: "armel"
preferred-image: "false"
support: "kali"
slug: "raspberry-pi"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- board: "raspberry-pi-zero-2-w"
name: "Raspberry Pi Zero 2 W"
cpu: "Broadcom BCM2710"
cpu-cores: "4"
gpu: "Broadcom VideoCore IV"
ram: "LPDDR2"
ram-size: ["512"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "1"
usb3: "0"
storage: ["sdcard", "usb"]
notes: ""
images:
- image: "raspberry-pi-zero-2-w-armhf.img"
name: "Raspberry Pi Zero 2 W"
architecture: "armhf"
preferred-image: "true"
support: "kali"
slug: "raspberry-pi-zero-2-w"
build-script: "raspberry-pi-zero-2-w.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- image: "raspberry-pi-zero-2-w-pitail-armhf.img"
name: "Raspberry Pi Zero 2 W (PiTail)"
architecture: "armhf"
preferred-image: "false"
support: "kali"
slug: "raspberry-pi-zero-2-w-pi-tail"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- board: "raspberry-pi-zero-w"
name: "Raspberry Pi Zero W"
cpu: "Broadcom BCM2835"
cpu-cores: "1"
gpu: "Broadcom VideoCore IV"
ram: "DDR2"
ram-size: ["512"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "0"
usb3: "1"
storage: ["sdcard"]
notes: "Our preferred low-range ARM tiny-form"
images:
- image: "raspberry-pi-zero-w-armel.img"
name: "Raspberry Pi Zero W"
architecture: "armel"
preferred-image: "true"
support: "kali"
slug: "raspberry-pi-zero-w"
build-script: "raspberry-pi-zero-w.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- image: "raspberry-pi-zero-w-pitail-armel.img"
name: "Raspberry Pi Zero W (PiTail)"
architecture: "armel"
preferred-image: "false"
support: "kali"
slug: "raspberry-pi-zero-w-pi-tail"
build-script: "raspberry-pi-zero-w-pitail.sh"
kernel: "custom"
kernel-version: "5.10.103"
image-notes: ""
- image: "raspberry-pi-zero-w-p4wnp1-aloa-armel.img"
name: "Raspberry Pi Zero W (P4wnP1 A.L.O.A)"
architecture: "armel"
preferred-image: "false"
support: "community"
slug: "raspberry-pi-zer-w-p4wnp1-aloa"
build-script: "raspberry-pi-zero-w-p4wnp1-aloa.sh"
kernel: "custom"
kernel-version: "4.14.80"
image-notes: ""
- pine64:
- board: "pinebook"
name: "Pinebook"
cpu: "Allwinner A64"
cpu-cores: "4"
gpu: "Mali 400-MP2"
ram: "LPDDR3"
ram-size: ["2048"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "emmc"]
notes: "Suspend does not work, upstream kernel issue.
Wi-Fi Realtek 8723CS."
images:
- image: "pinebook-arm64.img"
name: "Pinebook"
architecture: "arm64"
preferred-image: "false"
support: "kali"
slug: "pinebook"
build-script: "pinebook.sh"
kernel: "kali"
kernel-version: "5.18.0-kali1-arm64"
image-notes: ""
- board: "pinebook-pro"
name: "Pinebook Pro"
cpu: "Rockchip RK3399"
cpu-cores: "6"
gpu: "Mali T860-MP4"
ram: "LPDDR4"
ram-size: ["4096"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "1"
usb3: "2"
storage: ["sdcard", "emmc", "nvme"]
notes: "<b>Our preferred ARM laptop</b>.
NVME support should work but is untested.
WiFi: AMPAK AP6256."
images:
- image: "pinebook-pro-arm64.img"
name: "Pinebook Pro"
architecture: "arm64"
preferred-image: "false"
support: "kali"
slug: "pinebook-pro"
build-script: "pinebook-pro.sh"
kernel: "kali"
kernel-version: "5.18.0-kali1-arm64"
image-notes: ""
- banana:
- board: "banana-pi"
name: "Banana Pi"
cpu: "Allwinner A20"
cpu-cores: "2"
gpu: "Mali 400MP2"
ram: "DDR3"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "1000"
# wifi: "0"
bluetooth: "false"
usb2: "2"
usb3: "0"
storage: ["sdcard", "sata"]
notes: "rootfs can be on sata, but needs to boot from sdcard"
images:
- image: "banana-pi-armhf.img"
name: "Banana Pi"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "banana-pi"
build-script: "banana-pi.sh"
kernel: "kali"
kernel-version: "5.18.0-kali1-arm64"
image-notes: ""
- board: "banana-pro"
name: "Banana Pro"
cpu: "Allwinner A20"
cpu-cores: "2"
gpu: "Mali 400MP2"
ram: "DDR3"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "sata"]
notes: "rootfs can be on sata, but needs to boot from sdcard"
images:
- image: "banana-pro-armhf.img"
name: "Banana Pro"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "banana-pro"
build-script: "banana-pro.sh"
kernel: "kali"
kernel-version: "5.18.0-kali1-arm64"
image-notes: ""
- beagle:
- board: "beaglebone-black"
name: "BeagleBone Black"
cpu: "Texas Instruments Sitara AM335x"
cpu-cores: "1"
gpu: "SGX530"
ram: "DDR3"
ram-size: ["512"]
ethernet: "1"
ethernet-speed: "100"
# wifi: "0"
bluetooth: "false"
usb2: "1"
usb3: "0"
storage: ["sdcard", "emmc"]
notes: "eMMC is only 4GB in size"
images:
- image: "beaglebone-black-armhf.img"
name: "Beaglebone Black"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "beaglebone-black"
build-script: "beaglebone-black.sh"
kernel: "custom"
kernel-version: "4.14.108"
image-notes: ""
- chromebook:
- board: "chromebook-exynos-peach-pi"
name: "Chromebook Exynos (Samsung Chromebook 2 peach_pi)"
cpu: "Exynos 5800"
cpu-cores: "8"
gpu: "Mali T628 MP6"
ram: "DDR3"
ram-size: ["4096"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "1"
usb3: "1"
storage: ["sdcard", "usb", "emmc"]
notes: "Kali only supports booting from sdcard or usb"
images:
- image: "chromebook-exynos-armhf.img"
name: "Samsung Chromebook 2 13\""
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "chromebook-exynos"
build-script: "chromebook-exynos.sh"
kernel: "custom"
kernel-version: "3.8"
image-notes: "Kali only supports booting from sdcard or usb"
- board: "chromebook-exynos-peach-pit"
name: "Chromebook Exynos (Samsung Chromebook 2 peach_pit)"
cpu: "Exynos 5420"
cpu-cores: "8"
gpu: "Mali T628 MP6"
ram: "DDR3"
ram-size: ["4096"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "1"
usb3: "1"
storage: ["sdcard", "usb", "emmc"]
notes: "Kali only supports booting from sdcard or usb"
images:
- image: "chromebook-exynos-armhf.img"
name: "Samsung Chromebook 2 11\""
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "chromebook-exynos"
build-script: "chromebook-exynos.sh"
kernel: "vendor"
kernel-version: "3.8"
image-notes: ""
- board: "chromebook-exynos-snow"
name: "Chromebook Exynos (Samsung Chromebook daisy_snow)"
cpu: "Exynos 5250"
cpu-cores: "2"
gpu: "Mali T604"
ram: "DDR3"
ram-size: ["2048"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "usb", "emmc"]
notes: "Kali only supports booting from sdcard or usb"
images:
- image: "chromebook-exynos-armhf.img"
name: "Samsung Chromebook"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "chromebook-exynos"
build-script: "chromebook-exynos.sh"
kernel: "vendor"
kernel-version: "3.8"
image-notes: ""
- board: "chromebook-exynos-spring"
name: "Chromebook Exynos (HP daisy_spring)"
cpu: "Exynos 5250"
cpu-cores: "2"
gpu: "Mali T604"
ram: "DDR3"
ram-size: ["2048"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "usb", "emmc"]
notes: "Kali only supports booting from sdcard or usb"
images:
- image: "chromebook-exynos-armhf.img"
name: "HP Chromebook 11 G1"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "chromebook-exynos"
build-script: "chromebook-exynos.sh"
kernel: "vendor"
kernel-version: "3.8"
image-notes: ""
- board: "chromebook-nyan-big"
name: "Chromebook Nyan (Acer Tegra)"
cpu: "NVIDIA Tegra Logan K1"
cpu-cores: "4"
gpu: "gpu name"
ram: "DDR3"
ram-size: ["2048"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "0"
usb3: "2"
storage: ["sdcard", "usb", "emmc"]
notes: "Kali only supports booting from sdcard or usb"
images:
- image: "chromebook-nyan-armhf.img"
name: "Acer Chromebook 13 (CB5-311)"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "chromebook-nyan"
build-script: "chromebook-nyan.sh"
kernel: "vendor"
kernel-version: "3.10"
image-notes: ""
- board: "chromebook-veyron-minnie"
name: "Chromebook Veyron (ASUS Flip)"
cpu: "Rockchip RK3288"
cpu-cores: "4"
gpu: "Mali T764"
ram: "LPDDR3"
ram-size: ["2048", "4096"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "emmc", "usb"]
notes: "Kali only supports booting from sdcard or usb.
eMMC is 16GB"
images:
- image: "chromebook-veyron-armhf.img"
name: "ASUS Chromebook Flip C100PA"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "chromebook-veyron"
build-script: "chromebook-veyron.sh"
kernel: "custom"
kernel-version: "4.19"
image-notes: ""
- compulab:
- board: "trimslice"
name: "Trimslice"
cpu: "NVIDIA Tegra 2"
cpu-cores: "2"
gpu: "GeForce"
ram: "DDR2"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "100"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "4"
usb3: "0"
storage: ["sdcard"]
notes: "Not all models have wireless or bluetooth.
DVI-D port only handles resolutions up to 1680x1050"
images:
- image: "trimslice-armhf.img"
name: "CompuLab Trimslice"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "trimslice"
build-script: "trimslice.sh"
kernel: "kali"
kernel-version: "5.18.0-kali1-arm64"
image-notes: ""
- board: "utilite-pro"
name: "Utilite Pro"
cpu: "NXP i.MX6"
cpu-cores: "4"
gpu: "Vivante GC2000"
ram: "DDR3"
ram-size: ["2048"]
ethernet: "2"
ethernet-speed: "1000"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "4"
usb3: "0"
storage: ["sdcard", "SATA SSD"]
notes: ""
images:
- image: "utilite-pro-armhf.img"
name: "CompuLab Utilite Pro"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "utilite-pro"
build-script: "utilite-pro.sh"
kernel: "vendor"
kernel-version: "3.10"
image-notes: ""
- cubie:
- board: "cubieboard2"
name: "CubieBoard2"
cpu: "Allwinner A20"
cpu-cores: "2"
gpu: "Mali 400-MP2"
ram: "DDR3"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "100"
# wifi: "0"
bluetooth: "false"
usb2: "3"
usb3: "0"
storage: ["sdcard", "NAND flash", "sata"]
notes: "NAND flash is 4GB.
One USB port is OTG"
images:
- image: "cubieboard2-armhf.img"
name: "Cubieboard2"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "cubieboard2"
build-script: "cubieboard2.sh"
kernel: "custom"
kernel-version: "3.4"
image-notes: ""
- board: "cubietruck"
name: "CubieTruck (CubieBoard3)"
cpu: "Allwinner A20"
cpu-cores: "2"
gpu: "Mali 400-MP2"
ram: "DDR3"
ram-size: ["2048"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "3"
usb3: "0"
storage: ["sdcard", "NAND flash", "sata"]
notes: "NAND flash is 8GB"
images:
- image: "cubietruck-armhf.img"
name: "Cubietruck"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "cubietruck"
build-script: "cubietruck.sh"
kernel: "custom"
kernel-version: "3.4"
image-notes: ""
- cubox:
- board: "cubox"
name: "CuBox"
cpu: "Marvell Armada 510"
cpu-cores: "2"
gpu: "Vivante GC600"
# ram: "DDR2/DDR3..."
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "1000"
# wifi: "0"
bluetooth: "false"
usb2: "2"
usb3: "0"
storage: ["sdcard", "eSATA"]
notes: "eSATA can not be used for rootfs"
images:
- image: "cubox-armhf.img"
name: "SolidRun CuBox"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "cubox"
build-script: "cubox.sh"
kernel: "custom"
kernel-version: "3.6.9"
image-notes: ""
- board: "cubox-i4pro"
name: "Cubox-i4Pro"
cpu: "NXP i.MX6"
cpu-cores: "4"
gpu: "Vivante GC2000"
ram: "DDR3"
ram-size: ["2048"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "emmc"]
notes: "One USB port is OTG.
eMMC is 8GB"
images:
- image: "cubox-i4pro-armhf.img"
name: "SolidRun CuBox i4Pro"
architecture: "armhf"
preferred-image: "false"
support: "community"
slug: "cubox-i4pro"
build-script: "cubox-i4pro.sh"
kernel: "kali"
kernel-version: "5.18.0-kali1-arm64"
image-notes: ""
- gateworks:
- board: "gateworks-newport"
name: "Gateworks Newport"
cpu: "Cavium OcteonTX"
cpu-cores: "2"
# gpu: "gpu name"
ram: "DDR4"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "1000"
# wifi: "0"
bluetooth: "false"
usb2: "0"
usb3: "1"
storage: ["sdcard", "emmc"]
notes: "eMMC is 8GB.
Two Half card Mini PCIe sockets, one provides USB 2.0 support.
U-blox ZOE-MQ8 GNSS GPS receiver"
images:
- image: "gateworks-newport-arm64.img"
name: "Gateworks Newport"
architecture: "arm64"
preferred-image: "false"
support: "kali"
slug: "gateworks-newport"
build-script: "gateworks-newport.sh"
kernel: "vendor"
kernel-version: "5.4.45"
image-notes: ""
- board: "gateworks-ventana"
name: "Gateworks Ventana"
cpu: "NXP i.MX6"
cpu-cores: "4"
gpu: "Vivante GC2000"
ram: "DDR3"
ram-size: ["512", "1024", "2048", "4096"]
ethernet: "1"
ethernet-speed: "1000"
# wifi: "0"
bluetooth: "false"
usb2: "2"
usb3: "0"
storage: ["sdcard", "mSATA"]
notes: "Different models have different storage, memory, and networking options"
images:
- image: "gateworks-ventana-armhf.img"
name: "Gateworks Ventana"
architecture: "armhf"
preferred-image: "false"
support: "kali"
slug: "gateworks-ventana"
build-script: "gateworks-ventana.sh"
kernel: "vendor"
kernel-version: "4.20.7"
image-notes: ""
- gemini:
- board: "gemini-pro"
name: "Gemini PDA"
cpu: "MediaTek Deca Core Helio X25/X27"
cpu-cores: "10"
gpu: "Mali T880 MP4"
ram: "LPDDR3"
ram-size: ["4096"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "emmc"]
notes: "This one is special and isn't built from the build-scripts repo.
It's not just a single image, it's a zip file with a bunch of things in it"
- genesi:
- board: "efika-mx-smarttop"
name: "EFIKA MX Smarttop"
cpu: "Freescale i.MX515"
cpu-cores: "1"
gpu: "Adreno 530"
ram: "DDR2"
ram-size: ["512"]
ethernet: "1"
ethernet-speed: "100"
wifi: "2.4GHz"
bluetooth: "false"
usb2: "2"
usb3: "0"
storage: ["sdcard", "pata ssd"]
notes: ""
images:
- image: "efikamx-armhf.img"
name: "Genesi EfikaMX Smarttop"
architecture: "armhf"
preferred-image: "false"
support: "eol"
slug: "efikamx"
build-script: "efikamx.sh"
kernel: "vendor"
kernel-version: "2.6.31"
image-notes: ""
- board: "efika-mx-smartbook"
name: "EFIKA MX Smartbook"
cpu: "Freescale i.MX515"
cpu-cores: "1"
gpu: "Adreno 530"
ram: "DDR2"
ram-size: ["512"]
ethernet: "0"
ethernet-speed: "0"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "pata ssd"]
notes: ""
images:
- image: "efikamx-armhf.img"
name: "Genesi EfikaMX Smartbook"
architecture: "armhf"
preferred-image: "false"
support: "eol"
slug: "efikamx"
build-script: "efikamx.sh"
kernel: "vendor"
kernel-version: "2.6.31"
image-notes: ""
- friendlyelec:
- board: "nanopc-t3"
name: "NanoPC-T3"
cpu: "Samsung S5P6818"
cpu-cores: "8"
gpu: "SGX540"
ram: "DDR3"
ram-size: ["1024", "2048"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "4"
usb3: "0"
storage: ["sdcard", "emmc"]
notes: "eMMC is 8GB.
2 USB ports via pin headers"
images:
- image: "nanopc-t-arm64.img"
name: "NanoPC T3"
architecture: "arm64"
preferred-image: "false"
support: "community"
slug: "nanopc-t"
build-script: "nanopc-t.sh"
kernel: "vendor"
kernel-version: "4.4"
image-notes: ""
- board: "nanopc-t3+"
name: "NanoPC T3+"
cpu: "Samsung S5P6818"
cpu-cores: "8"
gpu: "SGX540"
ram: "DDR3"
ram-size: ["2048"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "4"
usb3: "0"
storage: ["sdcard", "emmc"]
notes: "eMMC is 16GB.
1 USB port via pin headers"
images:
- image: "nanopc-t-arm64.img"
name: "NanoPC T3+"
architecture: "arm64"
preferred-image: "false"
support: "community"
slug: "nanopc-t"
build-script: "nanopc-t.sh"
kernel: "vendor"
kernel-version: "4.4"
image-notes: ""
- board: "nanopc-t4"
name: "NanoPC T4"
cpu: "Rockchip RK3399"
cpu-cores: "6"
gpu: "Mali T864"
ram: "LPDDR3"
ram-size: ["4096"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz/5GHz"
bluetooth: "true"
usb2: "2"
usb3: "1"
storage: ["sdcard", "emmc"]
notes: "One m.2 M-key slot, only compatible with M.2 2280 moules"
images:
- image: "nanopc-t-arm64.img"
name: "NanoPC T4"
architecture: "arm64"
preferred-image: "false"
support: "community"
slug: "nanopc-t"
build-script: "nanopc-t.sh"
kernel: "vendor"
kernel-version: "4.4"
image-notes: ""
- board: "nanopi-neo-plus2"
name: "NanoPi NEO Plus2"
cpu: "Allwinner H5"
cpu-cores: "4"
gpu: "Mali 450 MP4"
ram: "DDR3"
ram-size: ["1024"]
ethernet: "1"
ethernet-speed: "1000"
wifi: "2.4GHz"
bluetooth: "true"
usb2: "2"
usb3: "0"
storage: ["sdcard", "emmc"]