-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbsp-registry.yml
More file actions
1295 lines (1142 loc) · 42.4 KB
/
Copy pathbsp-registry.yml
File metadata and controls
1295 lines (1142 loc) · 42.4 KB
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
specification:
version: "2.0"
deploy:
provider: azure # "azure" (default) or "aws"
account_url: $ENV{AZURE_STORAGE_ACCOUNT_URL} # Azure only; supports $ENV{} expansion
container: bsp-registry-artifacts # Azure container name
prefix: "{vendor}/{device}/{release}/{date}" # remote path prefix template
patterns: # glob patterns for files to upload
- "**/*.wic.gz"
- "**/*.wic.bz2"
- "**/*.tar.bz2"
- "**/*.ext4"
- "**/*.sdimg"
- "**/*.img"
- "**/*.bin"
- "**/*.zip"
- "**/bzImage"
- "**/uImage"
artifact_dirs: # subdirs under build_path to search
- build/tmp/deploy/images
- build/tmp/deploy/sdk
include_manifest: true # upload a JSON manifest of all artifacts
# Registry-level LAVA connection settings
lava:
server: "$ENV{LAVA_SERVER}" # e.g. https://lava.example.com
token: "$ENV{LAVA_TOKEN}" # LAVA API authentication token
username: "$ENV{LAVA_USER}" # LAVA username (optional)
artifact_server_url: "$ENV{LAVA_ARTIFACT_SERVER_URL}" # Base URL where LAVA serves build artifacts (optional)
wait_timeout: 3600 # max seconds to wait for a job (default: 1 h)
poll_interval: 30 # polling interval in seconds
# Global environment variables for all builds (base layer – applied to every build)
# Use $ENV{VAR_NAME} syntax to reference system environment variables
environment:
variables:
- name: "GITCONFIG_FILE"
value: "$ENV{HOME}/.gitconfig"
- name: "DL_DIR"
value: "$ENV{HOME}/data/cache/downloads"
- name: "SSTATE_DIR"
value: "$ENV{HOME}/data/cache/sstate"
containers:
- ubuntu-20.04:
file: Dockerfile.ubuntu
image: "advantech/bsp-registry/ubuntu-20.04/kas:4.7"
args:
- name: "DISTRO"
value: "ubuntu:20.04"
- name: "KAS_VERSION"
value: "4.7"
- ubuntu-24.04:
file: Dockerfile.ubuntu
image: "advantech/bsp-registry/ubuntu-24.04/kas:5.2"
args:
- name: "DISTRO"
value: "ubuntu:24.04"
- name: "KAS_VERSION"
value: "5.2"
- ubuntu-22.04:
file: Dockerfile.ubuntu
image: "advantech/bsp-registry/ubuntu-22.04/kas:5.2"
args:
- name: "DISTRO"
value: "ubuntu:22.04"
- name: "KAS_VERSION"
value: "5.2"
- ubuntu-22.04-csb:
file: Dockerfile.ubuntu
image: "advantech/bsp-registry/ubuntu-22.04/kas:5.2"
args:
- name: "DISTRO"
value: "ubuntu:22.04"
- name: "KAS_VERSION"
value: "5.2"
volumes:
- host: $ENV{CST_TOOL_PATH}
container: "/opt/cst/"
- debian-12:
file: Dockerfile.debian
image: "advantech/bsp-registry/debian-12/kas:5.2"
args:
- name: "KAS_VERSION"
value: "5.2"
- name: "DISTRO"
value: "debian-bookworm"
- debian-13:
file: Dockerfile.debian
image: "advantech/bsp-registry/debian-13/kas:5.2"
args:
- name: "KAS_VERSION"
value: "5.2"
- name: "DISTRO"
value: "debian-trixie"
- isar-debian-13:
file: Dockerfile.isar.debian
image: "advantech/bsp-registry/isar/debian-13/kas:5.2"
runtime_args: "-p 2222:2222 --device=/dev/net/tun --cap-add=NET_ADMIN"
privileged: true
args:
- name: "KAS_VERSION"
value: "5.2"
- name: "DISTRO"
value: "debian-trixie"
# Named environments: each entry bundles a container reference + variables.
# The special name "default" is used for any release that does not specify an environment.
# A release can override by setting its "environment:" field to a different name.
environments:
default:
container: ubuntu-22.04
ubuntu-24.04:
container: ubuntu-24.04
ubuntu-22.04:
container: ubuntu-22.04
ubuntu-22.04-csb:
container: ubuntu-22.04-csb
variables:
- name: "SIG_TOOL_PATH"
value: "/opt/cst" # Path inside the container where the signing tool is mounted
ubuntu-20.04:
container: ubuntu-20.04
debian-13:
container: debian-13
isar-build-environment:
container: isar-debian-13
# Copy the QEMU run script into every Isar build directory
copy:
- isar/scripts/isar-runqemu.sh: build/
variables:
- name: "DL_DIR"
value: "$ENV{HOME}/data/cache/isar/downloads"
- name: "SSTATE_DIR"
value: "$ENV{HOME}/data/cache/isar/sstate"
registry:
# =====================================
# Build System Frameworks
# (e.g. Yocto, Isar)
# =====================================
frameworks:
- slug: yocto
description: |
Yocto Project build system
vendor: "Yocto Project"
includes:
- common.yml
- diskmon.yml
- yocto/yocto.yaml
- slug: isar
description: |
Set of scripts for building software packages and repeatable
generation of Debian-based root filesystems with customizations
vendor: "Ilbers GmbH"
includes:
- isar/isar.yaml
- isar/common.yaml
# =====================================
# Distributions
# =====================================
distro:
- slug: poky
description: "Poky (Yocto Project reference distro)"
framework: yocto
includes:
- common.yml
- yocto/distro/poky.yaml
- slug: ros2
description: "ROS 2 (Robot Operating System 2)"
framework: yocto
includes:
- common.yml
- yocto/distro/poky.yaml
- features/ros2/ros2.yml
- slug: poky-harden
description: "Hardened Poky (Yocto Project reference distro)"
framework: yocto
includes:
- common.yml
- yocto/distro/harden.yaml
- slug: fsl-imx-xwayland
description: "Freescale i.MX X Wayland (Yocto Project reference distro)"
framework: yocto
includes:
- vendors/nxp/distro/fsl-imx-xwayland.yaml
- slug: isar-v0.11
description: "Isar v0.11 (Siemens build system)"
framework: isar
includes:
- isar/isar-v0.11.yaml
- slug: isar-v1.0
description: "Isar v1.0 (Siemens build system)"
framework: isar
includes:
- isar/isar-v1.0.yaml
vendors:
- slug: qemu
name: "QEMU"
description: "QEMU, a generic and open source machine emulator and virtualizer."
website: "https://www.qemu.org/"
frameworks_overrides:
yocto:
includes:
- vendors/qemu/common.yaml
- slug: advantech
name: "Advantech"
description: "Advantech Corporation, a global leader in industrial computing and IoT solutions."
website: "https://www.advantech.com/"
includes:
- vendors/advantech/advantech.yml
- slug: advantech-europe
name: "Advantech Europe"
description: "Advantech Europe, a regional branch of Advantech Corporation."
website: "https://www.advantech.com/"
includes:
- vendors/advantech-europe/modular-bsp.yml
- slug: nxp
name: "NXP"
description: "NXP Semiconductors, industrial & IoT solutions."
website: "https://www.nxp.com/"
includes:
- vendors/nxp/nxp.yml
- slug: mediatek
name: "Mediatek"
description: "Mediatek, a global fabless semiconductor company providing chips for various applications."
website: "https://www.mediatek.com/"
includes:
- vendors/mediatek/mediatek-common.yml
- slug: qualcomm
name: "Qualcomm"
description: "Qualcomm, wireless technology and semiconductor solutions."
website: "https://www.qualcomm.com/"
includes:
- vendors/qualcomm/qualcomm-common.yml
# =====================================
# Devices
# =====================================
devices:
- slug: qemuarm64
description: "QEMU ARM64 (emulated)"
vendor: qemu
soc_vendor: arm
architecture: aarch64
includes:
- vendors/qemu/machine/qemuarm64.yaml
- slug: qemuarm
description: "QEMU ARM (32-bit, emulated)"
vendor: qemu
soc_vendor: arm
architecture: arm
includes:
- vendors/qemu/machine/qemuarm.yaml
- slug: qemux86
description: "QEMU x86 (emulated)"
vendor: qemu
soc_vendor: intel
architecture: x86
includes:
- vendors/qemu/machine/qemux86.yaml
- slug: qemux86-64
description: "QEMU x86-64 (emulated)"
vendor: qemu
soc_vendor: intel
architecture: amd64
includes:
- vendors/qemu/machine/qemux86-64.yaml
- slug: qemuamd64
description: "QEMU x86-64 (emulated)"
vendor: qemu
soc_vendor: intel
architecture: amd64
includes:
- vendors/qemu/machine/qemuamd64.yaml
# --- Advantech Europe i.MX-based devices ---
- slug: rom2620-ed91
description: "Advantech ROM-2620 (i.MX8)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rom2620-ed91.yml
- slug: rom2820-ed93
description: "Advantech ROM-2820 (i.MX9)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx9/rom2820-ed93.yml
- slug: aom5521-db2510
description: "Advantech AOM-5521 (i.MX95)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx9/aom5521-db2510.yml
- slug: rom5720-db5901
description: "Advantech ROM-5720 (i.MX8, 1GB)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rom5720-db5901.yml
- slug: rom5722-db2510
description: "Advantech ROM-5722 (i.MX8)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rom5722-db2510.yml
- slug: rom5721-db5901
description: "Advantech ROM-5721 (i.MX8)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rom5721-db5901.yml
- slug: rom5721-1g-db5901
description: "Advantech ROM-5721 (i.MX8, 1GB)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rom5721-1g-db5901.yml
- slug: rom5721-2g-db5901
description: "Advantech ROM-5721 (i.MX8, 2GB)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rom5721-2g-db5901.yml
- slug: rom5722-db2510
description: "Advantech ROM-5722 (i.MX8)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rom5722-db2510.yml
- slug: rsb3720
description: "Advantech RSB-3720 (i.MX8, 6GB)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rsb3720.yml
- slug: rsb3720-4g
description: "Advantech RSB-3720 (i.MX8, 4GB)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rsb3720-4g.yml
- slug: rsb3720-6g
description: "Advantech RSB-3720 (i.MX8, 6GB)"
vendor: advantech-europe
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech-europe/nxp/machine/imx8/rsb3720-6g.yml
# --- Advantech i.MX-based devices ---
# --- Advantech ROM5721 ---
- slug: imx8mmrom5721a1-1g
description: "Advantech ROM5721 (i.MX8)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx8/imx8mmrom5721a1-1g.yml
- slug: imx8mmrom5721a1-2g
description: "Advantech ROM5721 (i.MX8)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx8/imx8mmrom5721a1-2g.yml
# --- Advantech RSB3720 ---
- slug: imx8mprsb3720a1
description: "Advantech RSB-3720 A1 (i.MX8)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx8/imx8mprsb3720a1.yml
- slug: imx8mprsb3720a2
description: "Advantech RSB-3720 A2 (i.MX8)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx8/imx8mprsb3720a2.yml
# --- Advantech RSB3730 ---
- slug: imx8mprsb3730a2
description: "Advantech RSB-3730 (i.MX8)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx8/imx8mprsb3730a2.yml
- slug: imx8mprsb3730a2-2g
description: "Advantech RSB-3730 2GB (i.MX8)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx8/imx8mprsb3730a2-2g.yml
- slug: imx8mprsb3730a2-4g
description: "Advantech RSB-3730 4GB (i.MX8)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx8/imx8mprsb3730a2-4g.yml
# --- Advantech ROM2820 A1 ---
- slug: imx93rom2820a1
description: "i.MX93 ROM-2820 A1 (i.MX9)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx9/imx93rom2820a1.yml
# --- Advantech AOM5521 ---
- slug: imx95aom5521a1
description: "Advantech AOM-5521 A1 (i.MX95)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx9/imx95aom5521a1.yml
- slug: imx95aom5521a2
description: "Advantech AOM-5521 A2 (i.MX95)"
vendor: advantech
soc_vendor: nxp
architecture: arm64
includes:
- vendors/advantech/nxp/machine/imx9/imx95aom5521a2.yml
# --- Advantech Mediatek Devices ---
# --- Advantech RSB3810 ---
- slug: rsb3810
description: "Advantech RSB-3810 (Mediatek)"
vendor: advantech-europe
soc_vendor: mediatek
architecture: arm64
includes:
- vendors/advantech-europe/mediatek/machine/rsb3810.yaml
# --- Mediatek Devices ---
- slug: genio-1200-evk
description: "Mediatek genio-1200-evk"
vendor: mediatek
soc_vendor: mediatek
architecture: arm64
includes:
- vendors/mediatek/machine/genio-1200-evk.yml
# --- Advantech Qualcomm Devices ---
# --- Advantech AOM2721 ---
- slug: aom2721
description: "Advantech AOM-2721 (Qualcomm)"
vendor: advantech-europe
soc_vendor: qualcomm
architecture: arm64
includes:
- vendors/advantech-europe/qualcomm/machine/aom2721.yaml
# --- Qualcomm Devices ---
- slug: qcs6490-rb3gen2-vision-kit
description: "Qualcomm QCS6490 RB3 Gen2 Vision Kit"
vendor: qualcomm
soc_vendor: qualcomm
architecture: arm64
includes:
- vendors/qualcomm/machine/qcs6490-rb3gen2-vision-kit.yml
# =====================================
# Releases
# =====================================
releases:
- slug: ros2-humble-scarthgap
distro: ros2
description: "ROS 2 Humble Hawksbill"
yocto_version: "5.0"
includes:
- features/ros2/humble.yml
- yocto/releases/scarthgap.yml
- compilers/clang/clang.yml
vendor_overrides:
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
includes:
- vendors/advantech-europe/nxp/modular-bsp-nxp.yml
releases:
- slug: imx-6.6.52-2.2.2
description: "i.MX8 Release 2.2.2 Yocto 5.0 LTS Kernel 6.6.52"
includes:
- vendors/advantech-europe/nxp/imx-6.6.52-2.2.2-scarthgap.yml
- slug: ubuntu-noble
description: "Isar Ubuntu Noble"
distro: isar-v1.0
environment: isar-build-environment
includes:
- isar/distro/ubuntu-noble.yaml
- slug: ubuntu-jammy
description: "Isar Ubuntu Jammy"
distro: isar-v1.0
environment: isar-build-environment
includes:
- isar/distro/ubuntu-jammy.yaml
- slug: debian-trixie
description: "Isar Debian Trixie "
distro: isar-v1.0
environment: isar-build-environment
includes:
- isar/distro/debian-trixie.yaml
- slug: kirkstone
distro: poky
description: "Yocto 4.0 LTS (Kirkstone)"
yocto_version: "4.0"
includes:
- yocto/releases/kirkstone.yml
vendor_overrides:
- vendor: advantech
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech/nxp/advantech2-nxp.yaml
releases:
- slug: imx-5.15.52-2.1.0
description: "i.MX8 Release 2.1.0 Yocto 4.0 LTS Kernel 5.15.52"
includes:
- vendors/advantech/nxp/imx-5.15.52-2.1.0-kirkstone.yml
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
releases:
- slug: imx-5.15.71-2.2.2
description: "i.MX8 Release 2.2.2 Yocto 4.0 LTS Kernel 5.15.71"
includes:
- vendors/advantech-europe/nxp/imx-5.15.71-2.2.2-kirkstone.yml
- slug: mickledore
distro: poky
description: "Yocto 4.2 (Mickledore)"
yocto_version: "4.2"
includes:
- yocto/releases/mickledore.yml
vendor_overrides:
- vendor: advantech
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech/nxp/advantech2-nxp.yaml
releases:
- slug: imx-6.1.22-2.0.0
description: "i.MX8 Release 2.0.0 Yocto 4.2 Kernel 6.1.22"
includes:
- vendors/advantech/nxp/imx-6.1.22-2.0.0-mickledore.yml
- slug: nanbield
distro: poky
description: "Yocto 4.3 (Nanbield)"
yocto_version: "4.3"
includes:
- yocto/releases/nanbield.yml
- slug: scarthgap
distro: poky
description: "Yocto 5.0 LTS (Scarthgap)"
yocto_version: "5.0"
includes:
- compilers/clang/clang.yml
- yocto/releases/scarthgap.yml
vendor_overrides:
- vendor: mediatek
distro:
releases:
- slug: mtk-rity-v25.0
description: "Mediatek RITY v25.0 Scarthgap (Yocto 5.0 LTS Kernel 6.6.23)"
includes:
- vendors/mediatek/mtk-rity-v25.0-scarthgap.yml
- vendor: qualcomm
distro:
releases:
- slug: qcs6490-rb3gen2-vision-kit
description: "Qualcomm QCS6490 RB3 Gen2 Vision Kit (Yocto 5.0 LTS Kernel 6.6.97)"
includes:
- vendors/qualcomm/qcom-6.6.97-qli.1.6-ver.1.2-scarthgap.yml
- vendor: advantech
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech/nxp/advantech2-nxp.yaml
releases:
- slug: imx-6.6.36-2.1.0
description: "i.MX8 Release 2.1.0 Yocto 5.0 LTS Kernel 6.6.36"
includes:
- vendors/advantech/nxp/imx-6.6.36-2.1.0-scarthgap.yml
- slug: imx-6.6.23-2.0.0
description: "i.MX8 Release 2.0.0 Yocto 5.0 LTS Kernel 6.6.23"
includes:
- vendors/advantech/nxp/imx-6.6.23-2.0.0-scarthgap.yml
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech-europe/nxp/modular-bsp-nxp.yml
releases:
- slug: imx-6.6.52-2.2.2
description: "i.MX8 Release 2.2.2 Yocto 5.0 LTS Kernel 6.6.52"
includes:
- vendors/advantech-europe/nxp/imx-6.6.52-2.2.2-scarthgap.yml
- slug: imx-6.6.52-2.2.0
description: "i.MX8 Release 2.2.0 Yocto 5.0 LTS Kernel 6.6.52"
includes:
- vendors/advantech-europe/nxp/imx-6.6.52-2.2.0-scarthgap.yml
- vendor: mediatek
includes:
- vendors/advantech-europe/mediatek/modular-bsp-mediatek.yml
releases:
- slug: mtk-rity-v25.0
description: "Mediatek RITY v25.0 Scarthgap (Yocto 5.0 LTS Kernel 6.6.23)"
includes:
- vendors/advantech-europe/mediatek/mtk-rity-v25.0-scarthgap.yml
- slug: styhead
distro: poky
description: "Yocto 5.1 (Styhead)"
yocto_version: "5.1"
includes:
- compilers/clang/clang.yml
- yocto/releases/styhead.yml
vendor_overrides:
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech-europe/nxp/modular-bsp-nxp.yml
releases:
- slug: imx-6.12.3-1.0.0
description: "i.MX8 Release 1.0.0 Yocto 5.1 Kernel 6.12.3"
includes:
- vendors/advantech-europe/nxp/imx-6.12.3-1.0.0-styhead.yml
- slug: walnascar
distro: poky
description: "Yocto 5.2 (Walnascar)"
yocto_version: "5.2"
includes:
- compilers/clang/clang.yml
- yocto/releases/walnascar.yml
vendor_overrides:
- vendor: advantech
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech/nxp/advantech2-nxp.yaml
releases:
- slug: imx-6.12.20-2.0.0
description: "i.MX8/9 Release 2.0.0 Yocto 5.2 Kernel 6.12.20"
includes:
- vendors/advantech/nxp/imx-6.12.20-2.0.0-walnascar.yml
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech-europe/nxp/modular-bsp-nxp.yml
releases:
- slug: imx-6.12.49-2.2.0
description: "i.MX8 Release 2.2.0 Yocto 5.2 Kernel 6.12.49"
includes:
- vendors/advantech-europe/nxp/imx-6.12.49-2.2.0-walnascar.yml
- slug: imx-6.12.34-2.1.0
description: "i.MX8 Release 2.1.0 Yocto 5.2 Kernel 6.12.34"
includes:
- vendors/advantech-europe/nxp/imx-6.12.34-2.1.0-walnascar.yml
- slug: imx-6.12.20-2.0.0
description: "i.MX8 Release 2.0.0 Yocto 5.2 Kernel 6.12.20"
includes:
- vendors/advantech-europe/nxp/imx-6.12.20-2.0.0-walnascar.yml
- slug: whinlatter
distro: poky
description: "Yocto 5.3 (Whinlatter)"
yocto_version: "5.3"
includes:
- yocto/releases/whinlatter.yml
vendor_overrides:
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
distro: fsl-imx-xwayland
includes:
- vendors/advantech-europe/nxp/modular-bsp-nxp.yml
releases:
- slug: imx-6.18.2-1.0.0
description: "i.MX8 Release 1.0.0 Yocto 5.3 Kernel 6.18.2"
includes:
- vendors/advantech-europe/nxp/imx-6.18.2-1.0.0-whinlatter.yml
- slug: wrynose
distro: poky
description: "Yocto 6.0 (Wrynose)"
yocto_version: "6.0"
includes:
- yocto/releases/wrynose.yml
- slug: master
distro: poky
description: "Yocto (Master)"
includes:
- yocto/releases/master.yml
# =====================================
# Features (optional add-ons)
# =====================================
features:
- slug: systemd
description: "Enable systemd as the init system"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/systemd.yaml
- slug: yocto-ssh
description: "Enable SSH server in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/ssh.yaml
- slug: debug-tweaks
description: "Enable debug features in the image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/debug-tweaks.yaml
- slug: root-login
description: "Enable root login in the image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/root-login.yaml
- slug: security
description: "Enable security features in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/security.yaml
- slug: secure-boot
description: "Enable NXP HAB/AHAB secure boot image signing support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- features/secure-boot/secure-boot.yml
vendor_overrides:
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
includes:
- vendors/nxp/features/secure-boot/imx-secure-boot.yml
- slug: virtualization
description: "Enable virtualization features in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/virtualization.yaml
- slug: wayland
description: "Enable Wayland support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/wayland.yaml
- slug: ipv6
description: "Enable IPv6 support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/ipv6.yaml
- slug: x11
description: "Enable X11 support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/x11.yaml
- slug: udev
description: "Enable udev support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/udev.yaml
- slug: usrmerge
description: "Enable usrmerge support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/usrmerge.yaml
- slug: rauc
description: "Enable RAUC support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- features/ota/rauc/rauc.yml
vendor_overrides:
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
includes:
- features/ota/rauc/modular-bsp-ota-nxp.yml
- slug: swupdate
description: "Enable SWUpdate support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- features/ota/swupdate/swupdate.yml
vendor_overrides:
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
includes:
- features/ota/swupdate/modular-bsp-ota-nxp.yml
- slug: ostree
description: "Enable OSTree support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- features/ota/ostree/ostree.yml
release_overrides:
- release: scarthgap
includes:
- features/ota/ostree/ostree-scarthgap.yml
- release: styhead
includes:
- features/ota/ostree/ostree-styhead.yml
- release: walnascar
includes:
- features/ota/ostree/ostree-walnascar.yml
vendor_overrides:
- vendor: advantech-europe
soc_vendors:
- vendor: nxp
includes:
- features/ota/ostree/modular-bsp-ota-nxp.yml
- slug: hailo
description: "Enable Hailo-8 support in the Yocto image"
compatible_with: [yocto] # This feature is only compatible with the Yocto framework
includes:
- yocto/features/deep-learning/hailo.yaml
# =====================================
# BSP Presets (named shortcuts)
# =====================================
bsp:
# --- QEMU ARM64 ---
- name: poky-qemuarm64
description: "Poky QEMU ARM64 Scarthgap (Yocto 5.0 LTS)"
device: qemuarm64
releases: [kirkstone, nanbield, mickledore, scarthgap,styhead, walnascar, whinlatter]
features: [systemd, usrmerge, yocto-ssh]
includes:
- vendors/qemu/common.yaml
build:
path: build/poky-qemuarm64
# --- QEMU x86-64 ---
- name: poky-harden-qemux86-64-scarthgap
description: "Poky Hardened QEMU x86-64 Scarthgap (Yocto 5.0 LTS)"
device: qemux86-64
release: scarthgap
features: [systemd, yocto-ssh, security, usrmerge]
includes:
- vendors/qemu/common.yaml
build:
container: "debian-12"
path: build/poky-harden-qemux86-64-scarthgap
- name: poky-qemux86-64
description: "Poky QEMU x86-64"
device: qemux86-64
releases: [kirkstone, nanbield, mickledore, scarthgap, styhead, walnascar, whinlatter]
features: [systemd, usrmerge, yocto-ssh]
includes:
- vendors/qemu/common.yaml
testing:
lava:
device_type: "qemu" # LAVA device type label
artifact_name: "core-image-minimal-qemux86-64.rootfs.wic" # where the image is served
tags: ["hil", "qemu"] # optional LAVA scheduler tags
job_template: "vendors/qemu/lava/qemu.yaml.j2" # optional; builtin used if omitted
- name: poky-qemux86-64-ros2
description: "Poky QEMU x86-64"
device: qemux86-64
releases: [ros2-humble-scarthgap]
features: [systemd, usrmerge, yocto-ssh]
# --- QEMU ARM (32-bit) ---
- name: poky-qemuarm-scarthgap
description: "Poky QEMU ARM (32-bit) Scarthgap (Yocto 5.0 LTS)"
device: qemuarm
release: scarthgap
features: [systemd, usrmerge, yocto-ssh]
includes:
- vendors/qemu/common.yaml
build:
container: "debian-12"
path: build/poky-qemuarm-scarthgap
# --- QEMU Debian / Ubuntu
- name: isar-qemuamd64
description: "Poky QEMU AMD64 (64-bit)"
device: qemuamd64
releases: [ubuntu-noble, ubuntu-jammy, debian-trixie]
features: []
build:
path: build/isar-qemuamd64
# testing:
# lava:
# device_type: "qemu" # LAVA device type label
# artifact_name: "qemuamd64.wic" # where the image is served
# tags: ["hil", "qemu"] # optional LAVA scheduler tags
# job_template: "vendors/qemu/lava/qemu.yaml.j2" # optional; builtin used if omitted
- name: isar-qemuarm64
description: "Poky QEMU ARM64 (64-bit)"