-
Notifications
You must be signed in to change notification settings - Fork 4
/
targets.yaml
1281 lines (1281 loc) · 35 KB
/
targets.yaml
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
targets:
- name: arm_generic
larch: arm
full_tgt: dtbs Image modules LOADADDR=0x40008000
warnings: "-W1"
- name: multi_v7_defconfig
larch: arm
flavour: defconfig
defconfig: multi_v7_defconfig
full_tgt: dtbs uImage zImage modules LOADADDR=0x40008000
warnings: "W=1 C=1"
tags: { defconfig }
configs:
- name: "CONFIG_PCIE_XILINX=y"
- name: "CONFIG_XILINX_ZYNQMP_DMA=y"
- name: "CONFIG_IMX_DMA=y"
disable: True
- name: ixp4xx_defconfig
larch: arm
subarch: ixp4xx
flavour: defconfig
defconfig: ixp4xx_defconfig
full_tgt: dtbs zImage modules
warnings: "W=1"
tags: { defconfig }
- name: prodgemini_defconfig
larch: arm
subarch: gemini
flavour: prod
defconfig: prodgemini_defconfig
full_tgt: dtbs zImage modules
warnings: "W=1"
- name: mygemini_defconfig
larch: arm
subarch: gemini
flavour: myconfig
defconfig: mygemini_defconfig
full_tgt: dtbs zImage modules
warnings: "W=1"
- name: gemini_defconfig
larch: arm
subarch: gemini
flavour: defconfig
defconfig: gemini_defconfig
full_tgt: dtbs zImage modules
warnings: "W=1"
tags: { defconfig }
configs:
- name: CONFIG_CMDLINE="console=ttyS0,19200n8 ip=dhcp initrdmem=0x800000,10M"
- name: CONFIG_CMDLINE_FORCE=y
- name: CONFIG_IP_PNP=y
- name: CONFIG_IP_PNP_DHCP=y
- name: CONFIG_INITRAMFS_SOURCE="rootfs.cpio.lzma"
disable: True
- name: CONFIG_PCI
disable: True
- name: CONFIG_NET_DSA
disable: True
- name: CONFIG_NET_SWITCHDEV=y
disable: True
- name: CONFIG_RD_LZO
disable: True
- name: CONFIG_RD_LZ4
disable: True
- name: CONFIG_RD_BZIP2
disable: True
- name: CONFIG_RD_ZSTD
disable: True
- name: CONFIG_RD_ZSTD
disable: True
- name: CONFIG_RD_XZ
disable: True
- name: CONFIG_XZ_DEC
disable: True
- name: CONFIG_DECOMPRESS_ZSTD
disable: True
- name: CONFIG_ZSTD_DECOMPRESS
disable: True
- name: CONFIG_INPUT_KEYBOARD
disable: True
- name: CONFIG_SERIO
disable: True
- name: CONFIG_USB_BELKIN
disable: True
- name: CONFIG_NET_ZAURUS
disable: True
- name: CONFIG_PACKET=y
- name: CONFIG_PACKET_DIAG=y
- name: CONFIG_ICPLUS_PHY=y
- name: CONFIG_MAGIC_SYSRQ=y
- name: CONFIG_DEBUG_KERNEL=y
- name: CONFIG_CRYPTO_MANAGER_EXTRA_TESTS=y
- name: CONFIG_CRYPTO_SEQIV=y
- name: CONFIG_CRYPTO_CHAINIV=y
- name: CONFIG_CRYPTO_USER=y
- name: CONFIG_CRYPTO_STATS=y
- name: CONFIG_EXT4_FS=y
- name: CONFIG_HIGHMEM
disable: True
- name: CONFIG_VLAN_8021Q
disable: True
- name: realview_defconfig
larch: arm
subarch: realview
flavour: defconfig
defconfig: realview_defconfig
full_tgt: dtbs uImage zImage modules LOADADDR=0x40008000
warnings: "-W1"
tags: { defconfig }
- name: tegra_defconfig
larch: arm
subarch: tegra
flavour: defconfig
defconfig: tegra_defconfig
full_tgt: dtbs zImage modules
warnings: "-W1"
- name: arm64_generic
larch: arm64
full_tgt: dtbs Image modules
warnings: "-W1"
- name: amlogic_generic
larch: arm64
subarch: amlogic
full_tgt: dtbs Image modules
warnings: "-W1"
- name: rpi3_bcm2837_generic
larch: arm64
full_tgt: dtbs Image modules
warnings: "-W1"
- name: bcm2711_defconfig
larch: arm64
subarch: bcm2711
flavour: defconfig
defconfig: bcm2711_defconfig
full_tgt: dtbs Image modules
warnings: "-W1"
- name: alpha_clipper
larch: alpha
subarch: clipper
full_tgt: boot vmlinux modules
warnings: "-W1"
- name: bamboo_defconfig
larch: powerpc
subarch: 44x
flavour: bamboo_defconfig
defconfig: 44x/bamboo_defconfig
full_tgt: vmlinux modules dtbs
warnings: "-W1"
- name: canyonlands_defconfig
larch: powerpc
subarch: 44x
flavour: canyonlands_defconfig
defconfig: 44x/canyonlands_defconfig
full_tgt: vmlinux modules dtbs zImage
warnings: "-W1"
- name: 44x_generic
larch: powerpc
subarch: 44x
flavour: default
full_tgt: vmlinux modules dtbs zImage
warnings: "-W1"
- name: alpha_defconfig
larch: alpha
subarch: default
flavour: defconfig
defconfig: defconfig
full_tgt: boot vmlinux modules
warnings: "-W1"
- name: arm64_defconfig
larch: arm64
subarch: default
flavour: defconfig
defconfig: defconfig
full_tgt: dtbs Image modules LOADADDR=0x40008000
warnings: "W=1"
- name: sunxi64_defconfig
larch: arm64
subarch: sunxi
flavour: defconfig
defconfig: sunxi64_defconfig
full_tgt: dtbs Image modules
warnings: "W=1"
- name: exynos_defconfig
larch: arm
full_tgt: dtbs zImage modules
subarch: exynos
flavour: defconfig
defconfig: exynos_defconfig
warnings: "-W1"
configs:
- name: "CONFIG_MMC_SDHCI_PLTFM=y"
- name: "CONFIG_ARM_EXYNOS_CPUIDLE"
disable: True
- name: "CONFIG_CPU_IDLE"
disable: True
- name: "CONFIG_CRYPTO_DEV_S5P"
disable: True
- name: hsdk_defconfig
larch: arc
full_tgt: dtbs uImage modules
subarch: hsdk
flavour: defconfig
defconfig: hsdk_defconfig
warnings: "-W1"
- name: imx_generic
larch: arm
subarch: imx
flavour: default
full_tgt: dtbs zImage modules LOADADDR=0x40008000
warnings: "-W1"
- name: imx_defconfig
larch: arm
subarch: imx
flavour: defconfig
defconfig: imx_v6_v7_defconfig
full_tgt: dtbs zImage modules LOADADDR=0x40008000
warnings: "-W1"
- name: malta_kvm_defconfig
larch: mips
subarch: default
flavour: defconfig
defconfig: malta_kvm_defconfig
full_tgt: vmlinux modules
warnings: "-W0"
- name: malta64_defconfig
larch: mips
subarch: mips64
flavour: malta
defconfig: malta_kvm_guest_defconfig
full_tgt: vmlinux modules
warnings: "-W1"
bits: 64
configs:
- name: "CONFIG_64BIT=y"
- name: indigo2
larch: mips
subarch: ip28
full_tgt: vmlinux modules
warnings: "-W1"
- name: omap1_defconfig
larch: arm
subarch: omap1
flavour: defconfig
defconfig: omap1_defconfig
full_tgt: vmlinux zImage dtbs modules
warnings: "-W1"
configs:
- name: "CONFIG_CPU_DCACHE_WRITETHROUGH"
disable: True
- name: "CONFIG_FB"
disable: True
- name: omap2plus_defconfig
larch: arm
subarch: omap2
flavour: defconfig
full_tgt: vmlinux modules zImage dtbs
warnings: "-W1"
defconfig: omap2plus_defconfig
configs:
- name: "CONFIG_OMAP_WATCHDOG=y"
- name: "CONFIG_SND"
disable: true
- name: "CONFIG_DRM"
disable: true
- name: m68k_defconfig
larch: m68k
subarch: default
flavour: defconfig
defconfig: mac_defconfig
full_tgt: vmlinux modules
warnings: "-W1"
- name: malta_defconfig
larch: mips
subarch: mips32
flavour: defconfig
defconfig: malta_kvm_guest_defconfig
full_tgt: vmlinux vmlinuz modules
warnings: "-W1"
- name: mips_generic
larch: mips
subarch: mips32
flavour: default
full_tgt: vmlinux modules
warnings: "-W1"
- name: mips_jazz_defconfig
larch: mips
subarch: mips64
flavour: defconfig
defconfig: jazz_defconfig
full_tgt: vmlinux modules
warnings: "-W1"
bits: 64
- name: mips_malta
larch: mips
subarch: mips32
flavour: malta
full_tgt: vmlinux modules
warnings: "-W1"
- name: mips64_generic
larch: mips
subarch: mips64
flavour: default
full_tgt: vmlinux modules
bits: 64
- name: mips64_malta
larch: mips
subarch: mips64
flavour: malta
full_tgt: vmlinux modules
warnings: "-W1"
bits: 64
- name: mpc85xx_defconfig
larch: powerpc
subarch: 85xx
flavour: defconfig
defconfig: mpc85xx_defconfig
full_tgt: vmlinux modules uImage dtbs
warnings: "-W1"
configs:
- name: "CONFIG_SERIAL_OF_PLATFORM=y"
- name: "CONFIG_SERIAL_FSL_LPUART=y"
- name: "CONFIG_PCI_HOST_GENERIC=y"
- name: "CONFIG_C293_PCIE=y"
- name: "CONFIG_PCI_MSI=y"
- name: "CONFIG_SERIAL_8250_MANY_PORTS=y"
- name: "CONFIG_SERIAL_8250_NR_UARTS=6"
- name: "CONFIG_SERIAL_8250_DETECT_IRQ=y"
- name: "CONFIG_SERIAL_8250_RSA=y"
- name: "CONFIG_FSL_ULI1575=y"
- name: "CONFIG_MPC8540_ADS=y"
- name: "CONFIG_MPC85xx_DS=y"
- name: "CONFIG_PHYS_64BIT=y"
- name: "CONFIG_E1000=y"
- name: parisc_defconfig
larch: parisc
flavour: defconfig
full_tgt: vmlinux modules
warnings: "-W1"
defconfig: generic-32bit_defconfig
- name: pmac_generic
larch: powerpc
subarch: pmac
flavour: default
full_tgt: vmlinux modules dtbs
warnings: "-W1"
- name: pmac32_defconfig
larch: powerpc
subarch: pmac
flavour: defconfig
defconfig: pmac32_defconfig
full_tgt: vmlinux modules
warnings: "-W1"
configs:
- name: "CONFIG_SERIAL_PMACZILOG=y"
- name: "CONFIG_SERIAL_PMACZILOG_CONSOLE=y"
- name: ppc64_pseries
larch: powerpc
subarch: pseries
full_tgt: vmlinux modules
bits: 64
- name: powerpc_generic
larch: powerpc
subarch: ppc32
flavour: default
full_tgt: vmlinux modules dtbs
- name: pseries_defconfig
larch: powerpc
subarch: pseries
flavour: defconfig
defconfig: pseries_defconfig
full_tgt: vmlinux modules
warnings: "-W1"
bits: 64
- name: s390_defconfig
larch: s390
subarch: default
flavour: defconfig
full_tgt: bzImage modules
defconfig: defconfig
- name: sh_defconfig
larch: sh
subarch: default
flavour: defconfig
full_tgt: vmlinux modules zImage
defconfig: rts7751r2dplus_defconfig
configs:
- name: "CONFIG_SERIAL_SH_SCI_EARLYCON=y"
- name: CONFIG_CMDLINE_OVERWRITE
disable: true
- name: sparc_generic
larch: sparc
full_tgt: vmlinux modules zImage
- name: sparc64_generic
larch: sparc
subarch: sparc64
full_tgt: vmlinux modules
bits: 64
- name: sparc_defconfig
larch: sparc
subarch: sparc32
flavour: defconfig
full_tgt: vmlinux modules zImage
defconfig: sparc32_defconfig
- name: sparc64_defconfig
larch: sparc
subarch: sparc64
flavour: defconfig
full_tgt: vmlinux modules tftpboot.img
defconfig: sparc64_defconfig
bits: 64
configs:
- name: "CONFIG_PCNET32=y"
- name: sunxi_defconfig
larch: arm
subarch: sunxi
flavour: defconfig
defconfig: sunxi_defconfig
full_tgt: dtbs uImage zImage modules LOADADDR=0x40008000
warnings: "W=1"
configs:
- name: "CONFIG_SUN4I_GPADC=y"
- name: "CONFIG_GENERIC_ADC_THERMAL=y"
- name: "CONFIG_SENSORS_IIO_HWMON=y"
- name: versatile_defconfig
larch: arm
subarch: versatile
flavour: defconfig
defconfig: versatile_defconfig
full_tgt: dtbs zImage modules
warnings: "-W1"
configs:
- name: "CONFIG_PCI=y"
- name: "CONFIG_PCI_VERSATILE=y"
- name: "CONFIG_SCSI=y"
- name: "CONFIG_SCSI_SYM53C8XX_2=y"
- name: virtex5_defconfig
larch: powerpc
subarch: 44x
flavour: virtex5_defconfig
defconfig: 44x/virtex5_defconfig
full_tgt: vmlinux modules dtbs zImage
warnings: "-W1"
- name: x86_64_generic
larch: x86_64
full_tgt: bzImage modules
warnings: "-W1"
- name: x86_64_defconfig
larch: x86_64
flavour: defconfig
defconfig: x86_64_defconfig
full_tgt: bzImage modules
warnings: "W=1"
- name: laptop
larch: x86_64
flavour: defconfig
defconfig: x86_64_defconfig
full_tgt: bzImage modules
warnings: "W=1"
configs:
- name: "CONFIG_ATL1C=y"
- name: "CONFIG_ATH9K=y"
- name: zoran
larch: x86_64
flavour: zoran
full_tgt: bzImage modules
warnings: "W=1 C=1"
- name: x86_defconfig
larch: x86
flavour: defconfig
defconfig: i386_defconfig
full_tgt: bzImage modules
warnings: "-W1"
- name: x86_generic
larch: x86
full_tgt: bzImage modules
warnings: "-W1"
- name: generic_kc705_defconfig
larch: xtensa
subarch: kc705
flavour: defconfig
full_tgt: uImage modules dtbs
warnings: "-W1"
defconfig: generic_kc705_defconfig
configs:
- name: "CONFIG_XTENSA_VARIANT_DC232B=y"
- name: smp_lx200_defconfig
larch: xtensa
full_tgt: uImage modules dtbs
warnings: "-W1"
defconfig: smp_lx200_defconfig
configs:
- name: "CONFIG_XTENSA_VARIANT_MMU"
disable: True
- name: "CONFIG_XTENSA_VARIANT_CUSTOM_NAME"
disable: True
- name: "CONFIG_XTENSA_VARIANT_CUSTOM"
disable: True
- name: "CONFIG_XTENSA_VARIANT_DC232B=y"
- name: 10m50_defconfig
larch: nios2
flavour: defconfig
full_tgt: vmlinux modules dtbs 10m50_devboard.dtb
warnings: "-W1"
defconfig: 10m50_defconfig
configs:
- name: "CONFIG_NIOS2_PASS_CMDLINE=y"
- name: "CONFIG_NIOS2_DTB_SOURCE_BOOL=y"
- name: 'CONFIG_NIOS2_DTB_SOURCE="10m50_devboard.dts"'
- name: "CONSOLE_SERIAL_ALTERA_JTAGUART_CONSOLE=y"
- name: "CONFIG_SERIAL_ALTERA_JTAGUART_CONSOLE_BYPASS"
disable: True
- name: microblaze_mmu_defconfig
larch: microblaze
subarch: mmu
flavour: defconfig
full_tgt: vmlinux modules linux.bin
warnings: "-W1"
defconfig: mmu_defconfig
configs:
- name: 'CONFIG_XILINX_MICROBLAZE0_FAMILY="spartan3adsp"'
- name: 'CONFIG_CPU_BIG_ENDIAN=y'
- name: or1ksim_defconfig
larch: openrisc
subarch: default
flavour: defconfig
full_tgt: vmlinux modules
warnings: "-W1"
defconfig: or1ksim_defconfig
configs:
- name: 'CONFIG_RD_GZIP=y'
# - name: 'CONFIG_INITRAMFS_SOURCE="/home/compile/bbci/rootfs.cpio"'
- name: vexpress_defconfig
larch: arm
subarch: vexpress
flavour: defconfig
full_tgt: vmlinux modules dtbs
warnings: "-W1"
defconfig: vexpress_defconfig
- name: arm_randconfig
larch: arm
subarch: default
flavour: randconfig
full_tgt: vmlinux modules
warnings: "-W1"
randconfig: True
- name: x86_64_randconfig
larch: x86_64
subarch: default
flavour: randconfig
full_tgt: bzImage modules
warnings: "-W1"
randconfig: True
configoverlays:
- name: crypto
list:
- config: CONFIG_CRYPTO_USER_API_HASH=m
- config: CONFIG_CRYPTO_USER_API_SKCIPHER=m
- config: CONFIG_CRYPTO_USER_API_RNG=m
- config: CONFIG_CRYPTO_TEST=m
- config: CONFIG_CRYPTO_XTS=m
- config: CONFIG_MD=y
- config: CONFIG_BLK_DEV_DM=y
- config: CONFIG_DM_CRYPT=y
- config: CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
disable: True
- config: CONFIG_CRYPTO_MANAGER_EXTRA_TESTS=y
- name: noarmcrypto
list:
- config: CONFIG_ARM64_CRYPTO
disable: True
- config: CONFIG_CRYPTO_AES_ARM64
disable: True
- name: debug
list:
- config: CONFIG_DEBUG_KERNEL=y
- config: CONFIG_DEBUG_INFO=y
- config: CONFIG_DEBUG_INFO_DWARF4=y
- config: CONFIG_DEBUG_SG=y
- config: CONFIG_DEBUG_MUTEXES=y
- config: CONFIG_DEBUG_SPINLOCK=y
- config: CONFIG_DEBUG_ATOMIC_SLEEP=y
- config: CONFIG_DMA_API_DEBUG=y
- config: CONFIG_PROVE_LOCKING=y
- name: checks
list:
- config: CONFIG_UBSAN=y
- config: CONFIG_KASAN=y
- name: lavatest
list:
- config: CONFIG_SCSI=y
- config: CONFIG_BLK_DEV_SD=y
- config: CONFIG_VIRTIO_PCI=y
- config: CONFIG_VIRTIO_MMIO=y
- config: CONFIG_SCSI_VIRTIO=y
- config: CONFIG_VIRTIO_NET=y
- config: CONFIG_ATA=y
- config: CONFIG_PATA_CMD64X=y
- config: CONFIG_USB_NET_AX8817X=y
- config: CONFIG_USB_NET_AX88179_178A=y
- config: CONFIG_CRYPTO_XTS=y
- config: CONFIG_DM_CRYPT=y
- config: CONFIG_USB_STORAGE=y
- config: CONFIG_USB_UAS=m
- config: CONFIG_SCSI_DH=y
- config: CONFIG_CHR_DEV_SG=y
- name: ipsec
list:
- config: CONFIG_INET_AH=y
- config: CONFIG_INET_ESP=y
- config: CONFIG_INET_IPCOMP=y
- config: CONFIG_NETLINK_DIAG=y
- config: CONFIG_XFRM_USER=y
- config: CONFIG_XFRM_USER_COMPAT=y
- config: CONFIG_XFRM_INTERFACE=y
- config: CONFIG_XFRM_STATISTICS=y
- config: CONFIG_NETFILTER=y
- config: CONFIG_NETFILTER_XTABLES=y
- config: CONFIG_NETFILTER_XT_MATCH_POLICY=y
- name: noipsec
list:
- config: CONFIG_NET_KEY
disable: True
- config: CONFIG_INET_AH
disable: True
- config: CONFIG_INET_ESP
disable: True
- config: CONFIG_INET_IPCOMP
disable: True
- config: CONFIG_XFRM_USER
disable: True
- name: nosound
list:
- config: CONFIG_SOUND
disable: True
- name: nohid
list:
- config: CONFIG_HID_GENERIC
disable: True
- config: CONFIG_HID_A4TECH
disable: True
- config: CONFIG_HID_APPLE
disable: True
- config: CONFIG_HID_BELKIN
disable: True
- config: CONFIG_HID_CHERRY
disable: True
- config: CONFIG_HID_CHICONY
disable: True
- config: CONFIG_HID_CYPRESS
disable: True
- config: CONFIG_HID_EZKEY
disable: True
- config: CONFIG_HID_ITE
disable: True
- config: CONFIG_HID_KENSINGTON
disable: True
- config: CONFIG_HID_LOGITECH
disable: True
- config: CONFIG_HID_REDRAGON
disable: True
- config: CONFIG_HID_MICROSOFT
disable: True
- config: CONFIG_HID_MONTEREY
disable: True
- config: CONFIG_USB_HID
disable: True
- config: CONFIG_HID
disable: True
- name: nofb
list:
- config: CONFIG_FB
disable: True
- name: nodrm
list:
- config: CONFIG_DRM
disable: True
- name: novideo
list:
- config: CONFIG_VIDEO_DEV
disable: True
- name: nomedia
list:
- config: CONFIG_STAGING_MEDIA
disable: True
- config: CONFIG_MEDIA_SUPPORT
disable: True
- config: CONFIG_RC_MAP
disable: True
- name: noipv6
list:
- config: CONFIG_NF_LOG_IPV6
disable: True
- config: CONFIG_NF_NAT_IPV6
disable: True
- config: CONFIG_IPV6
disable: True
- name: nfsd
list:
- config: CONFIG_NFSD
- name: nbd
list:
- config: CONFIG_BLK_DEV_NBD=y
- name: iscsi
list:
- config: CONFIG_SCSI_ISCSI_ATTRS=y
- config: CONFIG_SCSI_LOWLEVEL=y
- config: CONFIG_ISCSI_TCP=y
- name: iscsit
list:
- config: CONFIG_TARGET_CORE=m
- config: CONFIG_TCM_FILEIO=m
- config: CONFIG_ISCSI_TARGET=m
- name: lavalab
list:
- config: CONFIG_USB_SERIAL=y
- config: CONFIG_USB_SERIAL_FTDI_SIO=y
- config: CONFIG_NFSD
- config: CONFIG_NFSD_V3
- config: CONFIG_NFSD_V4
- config: CONFIG_USB_SERIAL_PL2303=y
- config: CONFIG_USB_SERIAL_CH341=y
- config: CONFIG_USB_SERIAL_CP210X=y
- name: usbdmux
list:
- config: CONFIG_MMC_VUB300=y
- config: CONFIG_CHR_DEV_SG=y
- name: docker
list:
- config: CONFIG_OVERLAY_FS=y
- config: CONFIG_MEMCG=y
- config: CONFIG_MEMCG_SWAP=y
- config: CONFIG_CGROUP_DEVICE=y
- config: CONFIG_CPUSETS=y
- config: CONFIG_BLK_CGROUP=y
- config: CONFIG_CGROUP_PIDS=y
- config: CONFIG_NAMESPACES=y
- config: CONFIG_USER_NS=y
- config: CONFIG_BRIDGE=y
- config: CONFIG_NETFILTER=y
- config: CONFIG_NETFILTER_XTABLES=y
- config: CONFIG_IP_NF_IPTABLES=y
- config: CONFIG_IP_NF_FILTER=y
- config: CONFIG_NF_TABLES=y
- config: CONFIG_NF_TABLES_IPV4=y
- config: CONFIG_NF_CONNTRACK=y
- config: CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=y
- config: CONFIG_NETLINK_DIAG=y
- config: CONFIG_IP_NF_NAT=y
- config: CONFIG_IP_NF_TARGET_MASQUERADE=y
- config: CONFIG_NF_NAT=y
- config: CONFIG_NFT_NAT=y
- config: CONFIG_NFT_CT=y
- config: CONFIG_NFT_MASQ=y
- config: CONFIG_BRIDGE_NETFILTER=y
- config: CONFIG_NETFILTER_NETLINK_ACCT=y
- config: CONFIG_NF_TABLES_BRIDGE=y
- config: CONFIG_NFT_LOG=y
- config: CONFIG_NFT_LIMIT=y
- config: CONFIG_NETFILTER_XT_MATCH_STATE=y
- config: CONFIG_NETFILTER_XT_MATCH_OWNER=y
- config: CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
- config: CONFIG_VETH=y
- config: CONFIG_POSIX_MQUEUE=y
- name: virtio
list:
- config: CONFIG_FB_VIRTUAL=y
- config: CONFIG_VIRT_DRIVERS=y
- config: CONFIG_DRM_VIRTIO_GPU=y
- config: CONFIG_DRM_QXL=y
- config: CONFIG_VIRTIO_PCI=y
- config: CONFIG_VIRTIO_NET=y
- config: CONFIG_HW_RANDOM_VIRTIO=y
- config: CONFIG_VIRTIO_BLK=y
- name: novirtio
list:
- config: CONFIG_VIRTIO_MENU
disable: True
- name: cutdown
list:
- config: CONFIG_NET_VENDOR_MELLANOX
disable: True
- config: CONFIG_NET_VENDOR_QUALCOMM
disable: True
- config: CONFIG_NET_VENDOR_MARVELL
disable: True
- config: CONFIG_NET_VENDOR_ATHEROS
disable: True
- config: CONFIG_WLAN_VENDOR_ATH
disable: True
- config: CONFIG_WLAN_VENDOR_MARVELL
disable: True
- config: CONFIG_WLAN_VENDOR_TI
disable: True
- config: CONFIG_WLAN_VENDOR_BROADCOM
disable: True
- config: CONFIG_BT
disable: True
- config: CONFIG_BTRFS_FS
disable: True
- config: CONFIG_SPI
disable: True
- config: CONFIG_ARCH_ACTIONS
disable: True
- config: CONFIG_ARCH_HISI
disable: True
- config: CONFIG_ARCH_BERLIN
disable: True
- config: CONFIG_ARCH_BCM4908
disable: True
- config: CONFIG_ARCH_ALPINE
disable: True
- config: CONFIG_ARCH_MEDIATEK
disable: True
- config: CONFIG_ARCH_QCOM
disable: True
- config: CONFIG_ARCH_LG1K
disable: True
- config: CONFIG_ARCH_K3
disable: True
- config: CONFIG_ARCH_LAYERSCAPE
disable: True
- config: CONFIG_ARCH_S32
disable: True
- config: CONFIG_ARCH_SEATTLE
disable: True
- config: CONFIG_ARCH_STRATIX10
disable: True
- config: CONFIG_ARCH_UNIPHIER
disable: True
- config: CONFIG_ARCH_SYNQUACER
disable: True
- config: CONFIG_ARCH_BRCMSTB
disable: True
- config: CONFIG_ARCH_BCM_IPROC
disable: True
- config: CONFIG_ARCH_AGILEX
disable: True
- config: CONFIG_SLIMBUS
disable: True
- config: CONFIG_ARCH_MXC
disable: True
- config: CONFIG_ARCH_MVEBU
disable: True
- config: CONFIG_ARCH_SPRD
disable: True
- config: CONFIG_ARCH_THUNDER
disable: True
- config: CONFIG_ARCH_THUNDER2
disable: True
- config: CONFIG_ARCH_VISCONTI
disable: True
- config: CONFIG_ARCH_XGENE
disable: True
- config: CONFIG_ARCH_ZX
disable: True
- config: CONFIG_TEGRA_HOST1X
disable: True
- config: CONFIG_IPMI_SI
disable: True
- config: CONFIG_VIRTIO
disable: True
- config: CONFIG_XEN
disable: True
- name: osunxi
list:
- config: CONFIG_ARCH_TEGRA
disable: True
- config: CONFIG_ARCH_RENESAS
disable: True
- config: CONFIG_ARCH_EXYNOS
disable: True
- config: CONFIG_MFD_ROHM_BD718XX
disable: True
- name: nowireless
list:
- config: CONFIG_WLAN_VENDOR_ATH
disable: True
- config: CONFIG_WLAN_VENDOR_MARVELL
disable: True
- config: CONFIG_WLAN_VENDOR_TI
disable: True
- config: CONFIG_WLAN_VENDOR_BROADCOM
disable: True
- config: CONFIG_WLAN_VENDOR_REALTEK
disable: True
- config: CONFIG_WLAN_VENDOR_RALINK
disable: True
- config: CONFIG_WLAN
disable: True
- config: CONFIG_WIRELESS
disable: True
- config: CONFIG_BT
disable: True
- config: CONFIG_SPI
disable: True
- config: CONFIG_CAN
disable: True
- config: CONFIG_CFG80211
disable: True
- config: CONFIG_MAC80211
disable: True
- config: CONFIG_NFC
disable: True
- name: nousb
comment: disable power management
list:
- config: CONFIG_USB
disable: True
- config: CONFIG_USB_COMMON
disable: True
- config: CONFIG_USB_PHY
disable: True
- name: nonet
comment: disable power management
list:
- config: CONFIG_NETDEVICES
disable: True
- name: nopm
comment: disable power management
list:
- config: CONFIG_SUSPEND
disable: True
- config: CONFIG_BLK_PM
disable: True
- config: CONFIG_CPU_PM
disable: True
- config: CONFIG_PM_OPP
disable: True
- config: CONFIG_PM_CLK
disable: True
- config: CONFIG_PM_SLEEP_SMP
disable: True
- config: CONFIG_PM_SLEEP
disable: True
- config: CONFIG_PM
disable: True
- name: nonf
comment: disable netfiler
list:
- config: CONFIG_NETFILTER
disable: True
- name: nommc
comment: disable all MMC
list:
- config: CONFIG_MMC
disable: True
- name: kdebug
list:
- config: CONFIG_KALLSYMS_ALL=y
- config: CONFIG_DEBUG_FS=y
- config: CONFIG_DEBUG_KERNEL=y
- config: CONFIG_DEBUG_SPINLOCK=y
- config: CONFIG_DEBUG_LL=y
- config: CONFIG_EARLY_PRINTK=y
- config: CONFIG_DEBUG_UNCOMPRESS=y
- config: CONFIG_DEBUG_INFO=y
- config: CONFIG_DEBUG_UART_8250_WORD=y
- name: nokdebug
list:
- config: CONFIG_DEBUG_KERNEL=y
disable: True
- config: CONFIG_DEBUG_INFO
disable: True
- config: CONFIG_FTRACE
disable: True
- config: CONFIG_TRACING
disable: True
- config: CONFIG_OPROFILE
disable: True
- config: CONFIG_KPROBES
disable: True
- name: kexec
list:
- config: "CONFIG_SUSPEND=y"
- config: "CONFIG_KEXEC=y"
- config: "CONFIG_PROC_KCORE=y"
- name: emce
list:
- config: "CONFIG_CRYPTO_DEV_SUN50I_EMCE=y"
- name: noefi
list:
- config: CONFIG_EFI
disable: True
- name: tegrausb
list:
- config: CONFIG_EXTRA_FIRMWARE="nvidia/tegra124/xusb.bin"
- name: arm-xilinx
list:
- config: "CONFIG_PCIE_XILINX=y"
- config: "CONFIG_XILINX_ZYNQMP_DMA=y"
- name: media
list:
- config: CONFIG_MEDIA_SUPPORT=y
- config: CONFIG_MEDIA_TEST_SUPPORT=y
- config: CONFIG_V4L_TEST_DRIVERS=y
- name: nouveau
list:
- config: CONFIG_DRM_NOUVEAU=y
- config: CONFIG_FB=y
- name: usbaudio