-
Notifications
You must be signed in to change notification settings - Fork 1
/
rootfs_config
3896 lines (3391 loc) · 75.9 KB
/
rootfs_config
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
#
# Automatically generated file; DO NOT EDIT.
# Configuration
#
CONFIG_system-zynq=y
CONFIG_iperf3=y
CONFIG_python3-protobuf=y
#
# Filesystem Packages
#
#
# admin
#
#
# sudo
#
#CONFIG_sudo=y
# CONFIG_sudo-dbg is not set
# CONFIG_sudo-dev is not set
#
# base
#
#
# base-files
#
# CONFIG_base-files is not set
# CONFIG_base-files-dbg is not set
# CONFIG_base-files-dev is not set
#
# base-passwd
#
# CONFIG_base-passwd is not set
# CONFIG_base-passwd-dev is not set
# CONFIG_base-passwd-dbg is not set
# CONFIG_base-passwd-update is not set
#
# bc
#
# CONFIG_bc is not set
# CONFIG_bc-dev is not set
# CONFIG_bc-dbg is not set
#
# busybox
#
# CONFIG_busybox is not set
# CONFIG_busybox-udhcpd is not set
# CONFIG_busybox-httpd is not set
# CONFIG_busybox-dbg is not set
# CONFIG_busybox-inetd is not set
# CONFIG_busybox-dev is not set
# CONFIG_busybox-hwclock is not set
# CONFIG_busybox-udhcpc is not set
# CONFIG_busybox-syslog is not set
#
# cpio
#
# CONFIG_cpio is not set
# CONFIG_cpio-dbg is not set
# CONFIG_cpio-dev is not set
# CONFIG_cpio-rmt is not set
#
# dbus
#
# CONFIG_dbus is not set
# CONFIG_dbus-lib is not set
# CONFIG_dbus-dev is not set
# CONFIG_dbus-dbg is not set
#
# dbus-glib
#
# CONFIG_dbus-glib is not set
# CONFIG_dbus-glib-bash-completion is not set
# CONFIG_dbus-glib-tests is not set
# CONFIG_dbus-glib-dbg is not set
# CONFIG_dbus-glib-dev is not set
#
# dbus-wait
#
# CONFIG_dbus-wait is not set
# CONFIG_dbus-wait-dbg is not set
# CONFIG_dbus-wait-dev is not set
#
# diffutils
#
# CONFIG_diffutils is not set
# CONFIG_diffutils-dbg is not set
# CONFIG_diffutils-dev is not set
#
# dnf
#
# CONFIG_dnf is not set
#
# e2fsprogs
#
# CONFIG_e2fsprogs is not set
# CONFIG_e2fsprogs-resize2fs is not set
# CONFIG_e2fsprogs-badblocks is not set
# CONFIG_e2fsprogs-e2fsck is not set
# CONFIG_libss is not set
# CONFIG_libcomerr is not set
# CONFIG_libext2fs is not set
# CONFIG_e2fsprogs-dev is not set
# CONFIG_e2fsprogs-tune2fs is not set
# CONFIG_libe2p is not set
CONFIG_e2fsprogs-mke2fs=y
# CONFIG_e2fsprogs-dbg is not set
#
# ed
#
# CONFIG_ed is not set
# CONFIG_ed-dev is not set
# CONFIG_ed-dbg is not set
#
# elfutils
#
# CONFIG_elfutils is not set
# CONFIG_libdw is not set
# CONFIG_elfutils-dev is not set
# CONFIG_elfutils-binutils is not set
# CONFIG_libelf is not set
# CONFIG_libasm is not set
# CONFIG_elfutils-dbg is not set
#
# formfactor
#
# CONFIG_formfactor is not set
# CONFIG_formfactor-dbg is not set
# CONFIG_formfactor-dev is not set
#
# fpga-manager-script
#
CONFIG_fpga-manager-script=y
#
# haveged
#
CONFIG_haveged=y
#
# i2c-tools
#
# CONFIG_i2c-tools is not set
# CONFIG_i2c-tools-dev is not set
# CONFIG_i2c-tools-dbg is not set
# CONFIG_i2c-tools-misc is not set
#
# init-ifupdown
#
# CONFIG_init-ifupdown is not set
# CONFIG_init-ifupdown-dev is not set
# CONFIG_init-ifupdown-dbg is not set
#
# initscripts
#
# CONFIG_initscripts is not set
# CONFIG_initscripts-dev is not set
# CONFIG_initscripts-dbg is not set
# CONFIG_initscripts-functions is not set
#
# iproute2
#
# CONFIG_iproute2 is not set
# CONFIG_iproute2-tc is not set
# CONFIG_iproute2-nstat is not set
# CONFIG_iproute2-dev is not set
# CONFIG_iproute2-lnstat is not set
# CONFIG_iproute2-rtacct is not set
# CONFIG_iproute2-ss is not set
# CONFIG_iproute2-ifstat is not set
# CONFIG_iproute2-genl is not set
# CONFIG_iproute2-bash-completion is not set
# CONFIG_iproute2-dbg is not set
#
# kmod
#
# CONFIG_kmod is not set
# CONFIG_kmod-dbg is not set
# CONFIG_libkmod is not set
# CONFIG_kmod-dev is not set
# CONFIG_kmod-bash-completion is not set
#
# linuxptp
#
# CONFIG_linuxptp is not set
# CONFIG_linuxptp-dev is not set
# CONFIG_linuxptp-dbg is not set
#
# modutils-initscripts
#
# CONFIG_modutils-initscripts is not set
# CONFIG_modutils-initscripts-dev is not set
# CONFIG_modutils-initscripts-dbg is not set
#
# mtd-utils
#
CONFIG_mtd-utils=y
# CONFIG_mtd-utils-ubifs is not set
# CONFIG_mtd-utils-dev is not set
# CONFIG_mtd-utils-jffs2 is not set
# CONFIG_mtd-utils-dbg is not set
# CONFIG_mtd-utils-misc is not set
#
# netbase
#
# CONFIG_netbase is not set
# CONFIG_netbase-dbg is not set
# CONFIG_netbase-dev is not set
#
# opkg
#
# CONFIG_opkg is not set
# CONFIG_opkg-dev is not set
# CONFIG_libopkg is not set
# CONFIG_opkg-dbg is not set
#
# opkg-utils
#
# CONFIG_opkg-utils is not set
# CONFIG_update-alternatives-opkg is not set
# CONFIG_opkg-utils-dbg is not set
#
# procps
#
# CONFIG_procps is not set
# CONFIG_procps-dbg is not set
# CONFIG_procps-dev is not set
#
# pseudo
#
# CONFIG_pseudo is not set
# CONFIG_pseudo-dbg is not set
# CONFIG_pseudo-dev is not set
#
# psplash
#
# CONFIG_psplash is not set
# CONFIG_psplash-dbg is not set
# CONFIG_psplash-default is not set
# CONFIG_psplash-dev is not set
#
# quota
#
# CONFIG_quota is not set
# CONFIG_quota-dev is not set
# CONFIG_quota-dbg is not set
#
# shared-mime-info
#
# CONFIG_shared-mime-info is not set
# CONFIG_shared-mime-info-dev is not set
# CONFIG_shared-mime-info-dbg is not set
# CONFIG_shared-mime-info-data is not set
#
# shell
#
#
# bash
#
# CONFIG_bash is not set
# CONFIG_bash-dev is not set
# CONFIG_bash-dbg is not set
#
# sysvinit
#
# CONFIG_sysvinit is not set
# CONFIG_sysvinit-pidof is not set
# CONFIG_sysvinit-dbg is not set
# CONFIG_sysvinit-dev is not set
# CONFIG_sysvinit-sulogin is not set
#
# tar
#
# CONFIG_tar is not set
# CONFIG_tar-dev is not set
# CONFIG_tar-rmt is not set
# CONFIG_tar-dbg is not set
#
# tzdata
#
# CONFIG_tzdata is not set
# CONFIG_tzdata-asia is not set
# CONFIG_tzdata-arctic is not set
# CONFIG_tzdata-posix is not set
# CONFIG_tzdata-africa is not set
# CONFIG_tzdata-europe is not set
# CONFIG_tzdata-americas is not set
# CONFIG_tzdata-antarctica is not set
# CONFIG_tzdata-atlantic is not set
# CONFIG_tzdata-misc is not set
# CONFIG_tzdata-right is not set
# CONFIG_tzdata-pacific is not set
# CONFIG_tzdata-australia is not set
#
# update-rc.d
#
# CONFIG_update-rc.d is not set
# CONFIG_update-rc.d-dev is not set
# CONFIG_update-rc.d-dbg is not set
#
# usbutils
#
# CONFIG_usbutils is not set
# CONFIG_usbutils-dbg is not set
# CONFIG_usbutils-dev is not set
#
# util-linux
#
# CONFIG_util-linux is not set
# CONFIG_util-linux-dev is not set
# CONFIG_util-linux-fsck.cramfs is not set
# CONFIG_util-linux-swaponoff is not set
# CONFIG_util-linux-sfdisk is not set
# CONFIG_util-linux-uuidd is not set
# CONFIG_util-linux-getopt is not set
# CONFIG_util-linux-findfs is not set
# CONFIG_util-linux-mountpoint is not set
# CONFIG_util-linux-hwclock is not set
# CONFIG_util-linux-mcookie is not set
# CONFIG_util-linux-dbg is not set
# CONFIG_util-linux-mkfs.cramfs is not set
# CONFIG_util-linux-blkid is not set
# CONFIG_util-linux-sulogin is not set
# CONFIG_util-linux-losetup is not set
# CONFIG_util-linux-fstrim is not set
# CONFIG_util-linux-cfdisk is not set
# CONFIG_util-linux-agetty is not set
# CONFIG_util-linux-bash-completion is not set
# CONFIG_util-linux-lscpu is not set
# CONFIG_util-linux-prlimit is not set
# CONFIG_util-linux-umount is not set
# CONFIG_util-linux-partx is not set
# CONFIG_util-linux-mkfs is not set
# CONFIG_util-linux-readprofile is not set
# CONFIG_util-linux-uuidgen is not set
# CONFIG_util-linux-mount is not set
# CONFIG_util-linux-fdisk is not set
# CONFIG_util-linux-fsck is not set
#
# utils
#
#
# shadow
#
# CONFIG_shadow is not set
# CONFIG_shadow-base is not set
# CONFIG_shadow-dev is not set
# CONFIG_shadow-dbg is not set
#
# xz
#
# CONFIG_xz is not set
# CONFIG_xz-dev is not set
# CONFIG_xz-dbg is not set
# CONFIG_liblzma is not set
#
# baseutils
#
#
# shadow-securetty
#
# CONFIG_shadow-securetty is not set
# CONFIG_shadow-securetty-dev is not set
# CONFIG_shadow-securetty-dbg is not set
#
# benchmark
#
#
# tests
#
#
# dhrystone
#
# CONFIG_dhrystone is not set
# CONFIG_dhrystone-dev is not set
# CONFIG_dhrystone-dbg is not set
#
# linpack
#
# CONFIG_linpack is not set
# CONFIG_linpack-dbg is not set
# CONFIG_linpack-dev is not set
#
# whetstone
#
# CONFIG_whetstone is not set
# CONFIG_whetstone-dev is not set
# CONFIG_whetstone-dbg is not set
#
# bootgen
#
# CONFIG_bootgen is not set
# CONFIG_bootgen-dev is not set
# CONFIG_bootgen-dbg is not set
#
# console
#
#
# network
#
#
# canutils
#
# CONFIG_canutils is not set
# CONFIG_canutils-dbg is not set
# CONFIG_canutils-dev is not set
#
# can-utils
#
CONFIG_can-utils=y
# CONFIG_can-utils-dbg is not set
# CONFIG_can-utils-dev is not set
#
# curl
#
# CONFIG_curl is not set
# CONFIG_curl-dev is not set
# CONFIG_libcurl is not set
# CONFIG_curl-dbg is not set
#
# dropbear
#
# CONFIG_dropbear is not set
# CONFIG_dropbear-dev is not set
# CONFIG_dropbear-dbg is not set
#
# ethtool
#
# CONFIG_ethtool is not set
# CONFIG_ethtool-dbg is not set
# CONFIG_ethtool-dev is not set
#
# lrzsz
#
# CONFIG_lrzsz is not set
# CONFIG_lrzsz-dbg is not set
# CONFIG_lrzsz-dev is not set
#
# mailx
#
# CONFIG_mailx is not set
# CONFIG_mailx-dbg is not set
# CONFIG_mailx-dev is not set
#
# minicom
#
# CONFIG_minicom is not set
# CONFIG_minicom-dbg is not set
# CONFIG_minicom-dev is not set
#
# nfs-utils
#
CONFIG_nfs-utils=y
# CONFIG_nfs-utils-dev is not set
# CONFIG_nfs-utils-client is not set
# CONFIG_nfs-utils-stats is not set
# CONFIG_nfs-utils-dbg is not set
#
# openssh
#
# CONFIG_openssh is not set
# CONFIG_openssh-misc is not set
# CONFIG_openssh-dbg is not set
# CONFIG_openssh-sshd is not set
# CONFIG_openssh-keygen is not set
# CONFIG_openssh-ssh is not set
# CONFIG_openssh-dev is not set
# CONFIG_openssh-sftp is not set
# CONFIG_openssh-sftp-server is not set
# CONFIG_openssh-scp is not set
#
# ppp
#
# CONFIG_ppp is not set
# CONFIG_ppp-minconn is not set
# CONFIG_ppp-l2tp is not set
# CONFIG_ppp-dev is not set
# CONFIG_ppp-password is not set
# CONFIG_ppp-radius is not set
# CONFIG_ppp-tools is not set
# CONFIG_ppp-dbg is not set
# CONFIG_ppp-oe is not set
# CONFIG_ppp-oa is not set
# CONFIG_ppp-winbind is not set
#
# rpcbind
#
# CONFIG_rpcbind is not set
# CONFIG_rpcbind-dbg is not set
# CONFIG_rpcbind-dev is not set
#
# rsync
#
# CONFIG_rsync is not set
# CONFIG_rsync-dev is not set
# CONFIG_rsync-dbg is not set
#
# socat
#
# CONFIG_socat is not set
# CONFIG_socat-dbg is not set
# CONFIG_socat-dev is not set
#
# subversion
#
# CONFIG_subversion is not set
# CONFIG_subversion-dev is not set
# CONFIG_subversion-dbg is not set
#
# tcp-wrappers
#
# CONFIG_tcp-wrappers is not set
# CONFIG_tcp-wrappers-dbg is not set
# CONFIG_libwrap-dev is not set
# CONFIG_libwrap is not set
#
# wget
#
# CONFIG_wget is not set
# CONFIG_wget-dev is not set
# CONFIG_wget-dbg is not set
#
# tools
#
#
# parted
#
# CONFIG_parted is not set
# CONFIG_parted-dbg is not set
# CONFIG_parted-dev is not set
#
# utils
#
#
# alsa-utils
#
# CONFIG_alsa-utils is not set
# CONFIG_alsa-utils-aconnect is not set
# CONFIG_alsa-utils-alsaloop is not set
# CONFIG_alsa-utils-aseqdump is not set
# CONFIG_alsa-utils-aplay is not set
# CONFIG_alsa-utils-iecset is not set
# CONFIG_alsa-utils-alsaucm is not set
# CONFIG_alsa-utils-dev is not set
# CONFIG_alsa-utils-alsamixer is not set
# CONFIG_alsa-utils-amixer is not set
# CONFIG_alsa-utils-speakertest is not set
# CONFIG_alsa-utils-alsactl is not set
# CONFIG_alsa-utils-dbg is not set
# CONFIG_alsa-utils-midi is not set
# CONFIG_alsa-utils-aseqnet is not set
# CONFIG_alsa-utils-alsatplg is not set
#
# bash-completion
#
# CONFIG_bash-completion is not set
# CONFIG_bash-completion-dev is not set
# CONFIG_bash-completion-extra is not set
# CONFIG_bash-completion-dbg is not set
#
# bzip2
#
# CONFIG_bzip2 is not set
# CONFIG_libbz2 is not set
# CONFIG_bzip2-dbg is not set
# CONFIG_bzip2-dev is not set
#
# file
#
# CONFIG_file is not set
# CONFIG_file-dbg is not set
# CONFIG_file-dev is not set
#
# findutils
#
# CONFIG_findutils is not set
# CONFIG_findutils-dbg is not set
# CONFIG_findutils-dev is not set
#
# gawk
#
# CONFIG_gawk is not set
# CONFIG_gawk-dbg is not set
# CONFIG_gawk-dev is not set
#
# git
#
# CONFIG_git is not set
# CONFIG_git-bash-completion is not set
# CONFIG_gitweb is not set
# CONFIG_git-perltools is not set
# CONFIG_git-dev is not set
# CONFIG_git-dbg is not set
#
# grep
#
# CONFIG_grep is not set
# CONFIG_grep-dbg is not set
# CONFIG_grep-dev is not set
#
# groff
#
# CONFIG_groff is not set
# CONFIG_groff-dev is not set
# CONFIG_groff-dbg is not set
#
# gzip
#
# CONFIG_gzip is not set
# CONFIG_gzip-dbg is not set
# CONFIG_gzip-dev is not set
#
# hdparm
#
# CONFIG_hdparm is not set
# CONFIG_wiper is not set
# CONFIG_hdparm-dbg is not set
# CONFIG_hdparm-dev is not set
#
# less
#
# CONFIG_less is not set
# CONFIG_less-dev is not set
# CONFIG_less-dbg is not set
#
# ltp
#
# CONFIG_ltp is not set
# CONFIG_ltp-dev is not set
# CONFIG_ltp-dbg is not set
#
# man
#
# CONFIG_man is not set
#
# man-pages
#
# CONFIG_man-pages is not set
# CONFIG_man-pages-dbg is not set
# CONFIG_man-pages-dev is not set
#
# mc
#
# CONFIG_mc is not set
# CONFIG_mc-dev is not set
# CONFIG_mc-helpers-perl is not set
# CONFIG_mc-helpers is not set
# CONFIG_mc-fish is not set
# CONFIG_mc-dbg is not set
#
# pciutils
#
CONFIG_pciutils=y
# CONFIG_pciutils-ids is not set
# CONFIG_pciutils-dev is not set
# CONFIG_libpci is not set
# CONFIG_pciutils-dbg is not set
#
# pkgconfig
#
# CONFIG_pkgconfig is not set
# CONFIG_pkgconfig-dbg is not set
# CONFIG_pkgconfig-dev is not set
#
# screen
#
# CONFIG_screen is not set
# CONFIG_screen-dbg is not set
# CONFIG_screen-dev is not set
#
# sed
#
# CONFIG_sed is not set
# CONFIG_sed-dbg is not set
# CONFIG_sed-dev is not set
#
# setserial
#
# CONFIG_setserial is not set
# CONFIG_setserial-dev is not set
# CONFIG_setserial-dbg is not set
#
# smartmontools
#
# CONFIG_smartmontools is not set
# CONFIG_smartmontools-dbg is not set
# CONFIG_smartmontools-dev is not set
#
# strace
#
# CONFIG_strace is not set
# CONFIG_strace-dev is not set
# CONFIG_strace-dbg is not set
#
# sysstat
#
# CONFIG_sysstat is not set
# CONFIG_sysstat-dev is not set
# CONFIG_sysstat-dbg is not set
#
# texinfo
#
# CONFIG_texinfo is not set
# CONFIG_texinfo-dev is not set
# CONFIG_info is not set
# CONFIG_texinfo-dbg is not set
#
# unzip
#
# CONFIG_unzip is not set
# CONFIG_unzip-dbg is not set
# CONFIG_unzip-dev is not set
#
# vim
#
# CONFIG_vim is not set
# CONFIG_vim-syntax is not set
# CONFIG_vim-dev is not set
# CONFIG_vim-help is not set
# CONFIG_vim-common is not set
# CONFIG_vim-vimrc is not set
# CONFIG_vim-tutor is not set
# CONFIG_vim-tools is not set
# CONFIG_vim-dbg is not set
#
# zip
#
# CONFIG_zip is not set
# CONFIG_zip-dev is not set
# CONFIG_zip-dbg is not set
#
# devel
#
#
# autoconf
#
# CONFIG_autoconf is not set
# CONFIG_autoconf-dev is not set
# CONFIG_autoconf-dbg is not set
#
# automake
#
# CONFIG_automake is not set
# CONFIG_automake-dev is not set
# CONFIG_automake-dbg is not set
#
# binutils
#
# CONFIG_binutils is not set
# CONFIG_binutils-dev is not set
# CONFIG_binutils-dbg is not set
#
# bison
#
# CONFIG_bison is not set
# CONFIG_bison-dbg is not set
# CONFIG_bison-dev is not set
#
# ccache
#
# CONFIG_ccache is not set
# CONFIG_ccache-dbg is not set
# CONFIG_ccache-dev is not set
#
# diffstat
#
# CONFIG_diffstat is not set
# CONFIG_diffstat-dbg is not set
# CONFIG_diffstat-dev is not set
#
# distcc
#
# CONFIG_distcc is not set
# CONFIG_distcc-dbg is not set
# CONFIG_distcc-dev is not set
#
# expect
#
# CONFIG_expect is not set
# CONFIG_expect-dbg is not set
# CONFIG_expect-dev is not set
#
# flex
#
# CONFIG_flex is not set
# CONFIG_flex-dev is not set
# CONFIG_flex-dbg is not set
#
# gmp
#
# CONFIG_gmp is not set
# CONFIG_gmp-dbg is not set
# CONFIG_gmp-dev is not set
# CONFIG_libgmpxx is not set
#
# gnu-config
#
# CONFIG_gnu-config is not set
#
# intltool
#
# CONFIG_intltool is not set
# CONFIG_intltool-dev is not set
# CONFIG_intltool-dbg is not set
#
# libarchive
#
# CONFIG_libarchive is not set
# CONFIG_libarchive-dev is not set
# CONFIG_bsdcpio is not set
# CONFIG_bsdtar is not set
# CONFIG_libarchive-dbg is not set
#
# libcheck
#
# CONFIG_libcheck is not set
# CONFIG_libcheck-dev is not set
# CONFIG_libcheck-dbg is not set
#
# libpcre
#
# CONFIG_libpcre is not set
# CONFIG_libpcre-dev is not set
# CONFIG_libpcreposix is not set
# CONFIG_libpcre-dbg is not set
# CONFIG_libpcrecpp is not set
# CONFIG_pcretest is not set
# CONFIG_pcregrep is not set
#
# lsof
#
# CONFIG_lsof is not set
# CONFIG_lsof-dev is not set
# CONFIG_lsof-dbg is not set
#
# make
#
# CONFIG_make is not set
# CONFIG_make-dbg is not set
# CONFIG_make-dev is not set
#
# mpfr
#
# CONFIG_mpfr is not set
# CONFIG_mpfr-dev is not set
# CONFIG_mpfr-dbg is not set
#
# perl
#
# CONFIG_perl is not set
# CONFIG_perl-module-unicore is not set
# CONFIG_perl-dev is not set
# CONFIG_perl-misc is not set
# CONFIG_perl-dbg is not set
# CONFIG_perl-module-cpan is not set
# CONFIG_perl-modules is not set
# CONFIG_perl-pod is not set
#
# python3-nose
#
# CONFIG_python3-nose is not set
# CONFIG_python3-nose-dbg is not set
# CONFIG_python3-nose-dev is not set
#
# python3-numpy
#
# CONFIG_python3-numpy is not set
CONFIG_python3-numpy-dev=y
# CONFIG_python3-numpy-dbg is not set
#
# python3-scons
#
# CONFIG_python3-scons is not set
# CONFIG_python3-scons-dev is not set
# CONFIG_python3-scons-dbg is not set