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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
|
##
## file: block/Kconfig.iosched
##
CONFIG_MQ_IOSCHED_DEADLINE=m
##
## file: block/partitions/Kconfig
##
# CONFIG_PARTITION_ADVANCED is not set
##
## file: drivers/accessibility/Kconfig
##
# CONFIG_ACCESSIBILITY is not set
##
## file: drivers/acpi/Kconfig
##
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
# CONFIG_ACPI_DOCK is not set
# CONFIG_ACPI_PROCESSOR is not set
# CONFIG_ACPI_IPMI is not set
# CONFIG_ACPI_BGRT is not set
##
## file: drivers/android/Kconfig
##
# CONFIG_ANDROID_BINDER_IPC is not set
##
## file: drivers/ata/Kconfig
##
# CONFIG_ATA_ACPI is not set
# CONFIG_SATA_ZPODD is not set
# CONFIG_SATA_PMP is not set
#. Used by default as config drive on OpenStack
CONFIG_SATA_AHCI=m
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y
#. Used as config drive on Microsoft Azure
CONFIG_ATA_PIIX=m
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set
##
## file: drivers/atm/Kconfig
##
# CONFIG_ATM_DRIVERS is not set
##
## file: drivers/auxdisplay/Kconfig
##
# CONFIG_AUXDISPLAY is not set
##
## file: drivers/bcma/Kconfig
##
# CONFIG_BCMA is not set
##
## file: drivers/block/Kconfig
##
# CONFIG_BLK_DEV_FD is not set
CONFIG_XEN_BLKDEV_FRONTEND=m
##
## file: drivers/block/mtip32xx/Kconfig
##
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
##
## file: drivers/char/Kconfig
##
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
# CONFIG_DEVPORT is not set
# CONFIG_TELCLOCK is not set
##
## file: drivers/char/agp/Kconfig
##
# CONFIG_AGP is not set
##
## file: drivers/char/hw_random/Kconfig
##
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_GEODE is not set
# CONFIG_HW_RANDOM_VIA is not set
##
## file: drivers/char/ipmi/Kconfig
##
# CONFIG_IPMI_HANDLER is not set
##
## file: drivers/char/tpm/Kconfig
##
# CONFIG_HW_RANDOM_TPM is not set
CONFIG_TCG_TIS=m
# CONFIG_TCG_TIS_SPI is not set
# CONFIG_TCG_TIS_I2C_ATMEL is not set
# CONFIG_TCG_TIS_I2C_INFINEON is not set
# CONFIG_TCG_TIS_I2C_NUVOTON is not set
# CONFIG_TCG_NSC is not set
# CONFIG_TCG_ATMEL is not set
# CONFIG_TCG_INFINEON is not set
CONFIG_TCG_XEN=m
CONFIG_TCG_CRB=m
CONFIG_TCG_VTPM_PROXY=m
##
## file: drivers/char/xillybus/Kconfig
##
# CONFIG_XILLYBUS is not set
##
## file: drivers/cpufreq/Kconfig
##
# CONFIG_CPU_FREQ is not set
##
## file: drivers/cpuidle/Kconfig
##
# CONFIG_CPU_IDLE is not set
##
## file: drivers/crypto/Kconfig
##
# CONFIG_CRYPTO_HW is not set
##
## file: drivers/dax/Kconfig
##
# CONFIG_DAX is not set
##
## file: drivers/devfreq/Kconfig
##
# CONFIG_PM_DEVFREQ is not set
##
## file: drivers/dma/Kconfig
##
# CONFIG_DMADEVICES is not set
##
## file: drivers/edac/Kconfig
##
# CONFIG_EDAC is not set
##
## file: drivers/eisa/Kconfig
##
# CONFIG_EISA is not set
##
## file: drivers/extcon/Kconfig
##
# CONFIG_EXTCON is not set
##
## file: drivers/firewire/Kconfig
##
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
##
## file: drivers/fpga/Kconfig
##
# CONFIG_FPGA is not set
##
## file: drivers/fsi/Kconfig
##
# CONFIG_FSI is not set
##
## file: drivers/gnss/Kconfig
##
# CONFIG_GNSS is not set
##
## file: drivers/gpio/Kconfig
##
# CONFIG_GPIOLIB is not set
# CONFIG_GPIO_KEMPLD is not set
# CONFIG_GPIO_ML_IOH is not set
##
## file: drivers/gpu/drm/Kconfig
##
# CONFIG_DRM is not set
##
## file: drivers/gpu/vga/Kconfig
##
# CONFIG_VGA_SWITCHEROO is not set
##
## file: drivers/hid/Kconfig
##
# CONFIG_HID is not set
# CONFIG_HID_RMI is not set
##
## file: drivers/hid/intel-ish-hid/Kconfig
##
# CONFIG_INTEL_ISH_HID is not set
##
## file: drivers/hsi/Kconfig
##
# CONFIG_HSI is not set
##
## file: drivers/hv/Kconfig
##
CONFIG_HYPERV=m
##
## file: drivers/hwmon/Kconfig
##
# CONFIG_HWMON is not set
##
## file: drivers/hwtracing/intel_th/Kconfig
##
# CONFIG_INTEL_TH is not set
##
## file: drivers/i2c/Kconfig
##
# CONFIG_I2C is not set
##
## file: drivers/idle/Kconfig
##
# CONFIG_INTEL_IDLE is not set
##
## file: drivers/iio/Kconfig
##
# CONFIG_IIO is not set
##
## file: drivers/infiniband/Kconfig
##
CONFIG_INFINIBAND=m
CONFIG_INFINIBAND_USER_MAD=m
CONFIG_INFINIBAND_USER_ACCESS=m
CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
CONFIG_INFINIBAND_ADDR_TRANS=y
##
## file: drivers/infiniband/hw/cxgb4/Kconfig
##
# CONFIG_INFINIBAND_CXGB4 is not set
##
## file: drivers/infiniband/hw/hfi1/Kconfig
##
# CONFIG_INFINIBAND_HFI1 is not set
##
## file: drivers/infiniband/hw/mlx4/Kconfig
##
CONFIG_MLX4_INFINIBAND=m
##
## file: drivers/infiniband/hw/mlx5/Kconfig
##
CONFIG_MLX5_INFINIBAND=m
##
## file: drivers/infiniband/hw/mthca/Kconfig
##
# CONFIG_INFINIBAND_MTHCA is not set
# CONFIG_INFINIBAND_MTHCA_DEBUG is not set
##
## file: drivers/infiniband/hw/ocrdma/Kconfig
##
# CONFIG_INFINIBAND_OCRDMA is not set
##
## file: drivers/infiniband/hw/qedr/Kconfig
##
# CONFIG_INFINIBAND_QEDR is not set
##
## file: drivers/infiniband/sw/rdmavt/Kconfig
##
# CONFIG_INFINIBAND_RDMAVT is not set
##
## file: drivers/infiniband/sw/rxe/Kconfig
##
# CONFIG_RDMA_RXE is not set
##
## file: drivers/infiniband/ulp/ipoib/Kconfig
##
# CONFIG_INFINIBAND_IPOIB is not set
# CONFIG_INFINIBAND_IPOIB_CM is not set
# CONFIG_INFINIBAND_IPOIB_DEBUG is not set
# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
##
## file: drivers/infiniband/ulp/iser/Kconfig
##
# CONFIG_INFINIBAND_ISER is not set
##
## file: drivers/infiniband/ulp/isert/Kconfig
##
# CONFIG_INFINIBAND_ISERT is not set
##
## file: drivers/infiniband/ulp/srp/Kconfig
##
# CONFIG_INFINIBAND_SRP is not set
##
## file: drivers/infiniband/ulp/srpt/Kconfig
##
# CONFIG_INFINIBAND_SRPT is not set
##
## file: drivers/input/Kconfig
##
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_SPARSEKMAP is not set
CONFIG_INPUT_MOUSEDEV=m
# CONFIG_INPUT_JOYDEV is not set
##
## file: drivers/input/gameport/Kconfig
##
# CONFIG_GAMEPORT is not set
##
## file: drivers/input/joystick/Kconfig
##
# CONFIG_INPUT_JOYSTICK is not set
##
## file: drivers/input/keyboard/Kconfig
##
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
##
## file: drivers/input/misc/Kconfig
##
# CONFIG_INPUT_MISC is not set
##
## file: drivers/input/mouse/Kconfig
##
# CONFIG_INPUT_MOUSE is not set
##
## file: drivers/input/serio/Kconfig
##
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_RAW=m
# CONFIG_SERIO_ALTERA_PS2 is not set
CONFIG_HYPERV_KEYBOARD=m
##
## file: drivers/input/tablet/Kconfig
##
# CONFIG_INPUT_TABLET is not set
##
## file: drivers/input/touchscreen/Kconfig
##
# CONFIG_INPUT_TOUCHSCREEN is not set
##
## file: drivers/iommu/amd/Kconfig
##
# CONFIG_AMD_IOMMU is not set
##
## file: drivers/ipack/Kconfig
##
# CONFIG_IPACK_BUS is not set
##
## file: drivers/isdn/Kconfig
##
# CONFIG_ISDN is not set
##
## file: drivers/leds/Kconfig
##
# CONFIG_NEW_LEDS is not set
##
## file: drivers/macintosh/Kconfig
##
# CONFIG_MACINTOSH_DRIVERS is not set
##
## file: drivers/mailbox/Kconfig
##
# CONFIG_MAILBOX is not set
##
## file: drivers/mcb/Kconfig
##
# CONFIG_MCB is not set
##
## file: drivers/media/Kconfig
##
# CONFIG_MEDIA_SUPPORT is not set
##
## file: drivers/media/rc/Kconfig
##
# CONFIG_RC_CORE is not set
##
## file: drivers/memory/Kconfig
##
# CONFIG_MEMORY is not set
##
## file: drivers/memstick/Kconfig
##
# CONFIG_MEMSTICK is not set
##
## file: drivers/message/fusion/Kconfig
##
# CONFIG_FUSION is not set
##
## file: drivers/mfd/Kconfig
##
# CONFIG_LPC_ICH is not set
# CONFIG_LPC_SCH is not set
# CONFIG_MFD_INTEL_LPSS_ACPI is not set
# CONFIG_MFD_INTEL_LPSS_PCI is not set
# CONFIG_MFD_KEMPLD is not set
##
## file: drivers/misc/Kconfig
##
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_TIFM_7XX1 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
##
## file: drivers/misc/c2port/Kconfig
##
# CONFIG_C2PORT is not set
##
## file: drivers/misc/cardreader/Kconfig
##
# CONFIG_MISC_RTSX_PCI is not set
##
## file: drivers/misc/cb710/Kconfig
##
# CONFIG_CB710_CORE is not set
##
## file: drivers/misc/eeprom/Kconfig
##
# CONFIG_EEPROM_93CX6 is not set
##
## file: drivers/misc/mei/Kconfig
##
# CONFIG_INTEL_MEI is not set
# CONFIG_INTEL_MEI_ME is not set
##
## file: drivers/mmc/Kconfig
##
# CONFIG_MMC is not set
##
## file: drivers/mtd/Kconfig
##
# CONFIG_MTD is not set
##
## file: drivers/net/Kconfig
##
# CONFIG_GTP is not set
CONFIG_XEN_NETDEV_FRONTEND=m
# CONFIG_FUJITSU_ES is not set
##
## file: drivers/net/arcnet/Kconfig
##
# CONFIG_ARCNET is not set
##
## file: drivers/net/ethernet/Kconfig
##
# CONFIG_JME is not set
##
## file: drivers/net/ethernet/3com/Kconfig
##
# CONFIG_NET_VENDOR_3COM is not set
##
## file: drivers/net/ethernet/adaptec/Kconfig
##
# CONFIG_NET_VENDOR_ADAPTEC is not set
##
## file: drivers/net/ethernet/agere/Kconfig
##
# CONFIG_NET_VENDOR_AGERE is not set
##
## file: drivers/net/ethernet/alacritech/Kconfig
##
# CONFIG_NET_VENDOR_ALACRITECH is not set
##
## file: drivers/net/ethernet/alteon/Kconfig
##
# CONFIG_NET_VENDOR_ALTEON is not set
##
## file: drivers/net/ethernet/altera/Kconfig
##
# CONFIG_ALTERA_TSE is not set
##
## file: drivers/net/ethernet/amazon/Kconfig
##
CONFIG_NET_VENDOR_AMAZON=y
#. Amazon EC2 uses Elastic Network Adapter (ENA) support
CONFIG_ENA_ETHERNET=m
##
## file: drivers/net/ethernet/amd/Kconfig
##
# CONFIG_NET_VENDOR_AMD is not set
##
## file: drivers/net/ethernet/aquantia/Kconfig
##
# CONFIG_NET_VENDOR_AQUANTIA is not set
##
## file: drivers/net/ethernet/atheros/Kconfig
##
# CONFIG_NET_VENDOR_ATHEROS is not set
##
## file: drivers/net/ethernet/broadcom/Kconfig
##
# CONFIG_NET_VENDOR_BROADCOM is not set
# CONFIG_CNIC is not set
##
## file: drivers/net/ethernet/brocade/Kconfig
##
# CONFIG_NET_VENDOR_BROCADE is not set
##
## file: drivers/net/ethernet/cadence/Kconfig
##
# CONFIG_NET_VENDOR_CADENCE is not set
##
## file: drivers/net/ethernet/cavium/Kconfig
##
# CONFIG_NET_VENDOR_CAVIUM is not set
##
## file: drivers/net/ethernet/chelsio/Kconfig
##
# CONFIG_NET_VENDOR_CHELSIO is not set
##
## file: drivers/net/ethernet/cisco/Kconfig
##
# CONFIG_NET_VENDOR_CISCO is not set
##
## file: drivers/net/ethernet/dec/Kconfig
##
# CONFIG_NET_VENDOR_DEC is not set
##
## file: drivers/net/ethernet/dlink/Kconfig
##
# CONFIG_NET_VENDOR_DLINK is not set
##
## file: drivers/net/ethernet/emulex/Kconfig
##
# CONFIG_NET_VENDOR_EMULEX is not set
##
## file: drivers/net/ethernet/ezchip/Kconfig
##
# CONFIG_NET_VENDOR_EZCHIP is not set
##
## file: drivers/net/ethernet/google/Kconfig
##
CONFIG_NET_VENDOR_GOOGLE=y
#. Google Cloud specific device
CONFIG_GVE=m
##
## file: drivers/net/ethernet/huawei/Kconfig
##
# CONFIG_NET_VENDOR_HUAWEI is not set
##
## file: drivers/net/ethernet/intel/Kconfig
##
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGBE is not set
#. Amazon EC2 uses Intel Corporation 82599 Ethernet Controller Virtual Function
CONFIG_IXGBEVF=m
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
# CONFIG_ICE is not set
# CONFIG_IGC is not set
##
## file: drivers/net/ethernet/marvell/Kconfig
##
# CONFIG_NET_VENDOR_MARVELL is not set
##
## file: drivers/net/ethernet/mellanox/Kconfig
##
#. Microsoft Azure uses Mellanox Technologies MT27500/MT27520 Family [ConnectX-3/ConnectX-3 Pro Virtual Function]
CONFIG_NET_VENDOR_MELLANOX=y
##
## file: drivers/net/ethernet/micrel/Kconfig
##
# CONFIG_NET_VENDOR_MICREL is not set
##
## file: drivers/net/ethernet/microchip/Kconfig
##
# CONFIG_NET_VENDOR_MICROCHIP is not set
##
## file: drivers/net/ethernet/microsoft/Kconfig
##
CONFIG_NET_VENDOR_MICROSOFT=y
#. Microsoft Azure specific device
CONFIG_MICROSOFT_MANA=m
##
## file: drivers/net/ethernet/myricom/Kconfig
##
# CONFIG_NET_VENDOR_MYRI is not set
##
## file: drivers/net/ethernet/natsemi/Kconfig
##
# CONFIG_NET_VENDOR_NATSEMI is not set
##
## file: drivers/net/ethernet/neterion/Kconfig
##
# CONFIG_NET_VENDOR_NETERION is not set
##
## file: drivers/net/ethernet/netronome/Kconfig
##
# CONFIG_NET_VENDOR_NETRONOME is not set
##
## file: drivers/net/ethernet/nvidia/Kconfig
##
# CONFIG_NET_VENDOR_NVIDIA is not set
##
## file: drivers/net/ethernet/oki-semi/Kconfig
##
# CONFIG_NET_VENDOR_OKI is not set
##
## file: drivers/net/ethernet/packetengines/Kconfig
##
# CONFIG_NET_VENDOR_PACKET_ENGINES is not set
##
## file: drivers/net/ethernet/qlogic/Kconfig
##
# CONFIG_NET_VENDOR_QLOGIC is not set
##
## file: drivers/net/ethernet/qualcomm/Kconfig
##
# CONFIG_NET_VENDOR_QUALCOMM is not set
##
## file: drivers/net/ethernet/rdc/Kconfig
##
# CONFIG_NET_VENDOR_RDC is not set
##
## file: drivers/net/ethernet/realtek/Kconfig
##
# CONFIG_NET_VENDOR_REALTEK is not set
##
## file: drivers/net/ethernet/renesas/Kconfig
##
# CONFIG_NET_VENDOR_RENESAS is not set
##
## file: drivers/net/ethernet/rocker/Kconfig
##
# CONFIG_NET_VENDOR_ROCKER is not set
##
## file: drivers/net/ethernet/samsung/Kconfig
##
# CONFIG_NET_VENDOR_SAMSUNG is not set
##
## file: drivers/net/ethernet/seeq/Kconfig
##
# CONFIG_NET_VENDOR_SEEQ is not set
##
## file: drivers/net/ethernet/sfc/Kconfig
##
# CONFIG_NET_VENDOR_SOLARFLARE is not set
# CONFIG_SFC is not set
##
## file: drivers/net/ethernet/silan/Kconfig
##
# CONFIG_NET_VENDOR_SILAN is not set
##
## file: drivers/net/ethernet/sis/Kconfig
##
# CONFIG_NET_VENDOR_SIS is not set
##
## file: drivers/net/ethernet/smsc/Kconfig
##
# CONFIG_NET_VENDOR_SMSC is not set
##
## file: drivers/net/ethernet/stmicro/Kconfig
##
# CONFIG_NET_VENDOR_STMICRO is not set
##
## file: drivers/net/ethernet/sun/Kconfig
##
# CONFIG_NET_VENDOR_SUN is not set
##
## file: drivers/net/ethernet/synopsys/Kconfig
##
# CONFIG_NET_VENDOR_SYNOPSYS is not set
##
## file: drivers/net/ethernet/tehuti/Kconfig
##
# CONFIG_NET_VENDOR_TEHUTI is not set
##
## file: drivers/net/ethernet/ti/Kconfig
##
# CONFIG_NET_VENDOR_TI is not set
##
## file: drivers/net/ethernet/via/Kconfig
##
# CONFIG_NET_VENDOR_VIA is not set
##
## file: drivers/net/ethernet/wiznet/Kconfig
##
# CONFIG_NET_VENDOR_WIZNET is not set
##
## file: drivers/net/fddi/Kconfig
##
# CONFIG_FDDI is not set
##
## file: drivers/net/hippi/Kconfig
##
# CONFIG_HIPPI is not set
##
## file: drivers/net/hyperv/Kconfig
##
CONFIG_HYPERV_NET=m
##
## file: drivers/net/mdio/Kconfig
##
# CONFIG_MDIO_BUS is not set
##
## file: drivers/net/phy/Kconfig
##
# CONFIG_PHYLIB is not set
##
## file: drivers/net/ppp/Kconfig
##
# CONFIG_PPP is not set
##
## file: drivers/net/slip/Kconfig
##
# CONFIG_SLIP is not set
##
## file: drivers/net/wan/Kconfig
##
# CONFIG_WAN is not set
##
## file: drivers/net/wireless/Kconfig
##
# CONFIG_WLAN is not set
##
## file: drivers/ntb/Kconfig
##
# CONFIG_NTB is not set
##
## file: drivers/nvme/host/Kconfig
##
CONFIG_BLK_DEV_NVME=y
CONFIG_NVME_MULTIPATH=y
##
## file: drivers/nvmem/Kconfig
##
# CONFIG_NVMEM is not set
##
## file: drivers/of/Kconfig
##
# CONFIG_OF is not set
##
## file: drivers/parport/Kconfig
##
# CONFIG_PARPORT is not set
##
## file: drivers/pci/Kconfig
##
# CONFIG_PCI_STUB is not set
# CONFIG_PCI_PRI is not set
# CONFIG_PCI_PASID is not set
##
## file: drivers/pci/controller/Kconfig
##
# CONFIG_VMD is not set
##
## file: drivers/pci/hotplug/Kconfig
##
# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set
# CONFIG_HOTPLUG_PCI_CPCI is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set
##
## file: drivers/pcmcia/Kconfig
##
# CONFIG_PCCARD is not set
##
## file: drivers/platform/chrome/Kconfig
##
# CONFIG_CHROME_PLATFORMS is not set
##
## file: drivers/pnp/Kconfig
##
# CONFIG_PNP is not set
##
## file: drivers/power/supply/Kconfig
##
# CONFIG_BATTERY_BQ27XXX is not set
##
## file: drivers/pwm/Kconfig
##
# CONFIG_PWM is not set
##
## file: drivers/regulator/Kconfig
##
# CONFIG_REGULATOR is not set
##
## file: drivers/remoteproc/Kconfig
##
# CONFIG_REMOTEPROC is not set
##
## file: drivers/reset/Kconfig
##
# CONFIG_RESET_CONTROLLER is not set
##
## file: drivers/rtc/Kconfig
##
# CONFIG_RTC_NVMEM is not set
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABX80X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_HYM8563 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_M41T80_WDT is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8010 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV8803 is not set
# CONFIG_RTC_DRV_M41T93 is not set
# CONFIG_RTC_DRV_M41T94 is not set
# CONFIG_RTC_DRV_DS1302 is not set
# CONFIG_RTC_DRV_DS1305 is not set
# CONFIG_RTC_DRV_DS1343 is not set
# CONFIG_RTC_DRV_DS1347 is not set
# CONFIG_RTC_DRV_DS1390 is not set
# CONFIG_RTC_DRV_MAX6916 is not set
# CONFIG_RTC_DRV_R9701 is not set
# CONFIG_RTC_DRV_RX4581 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
# CONFIG_RTC_DRV_MCP795 is not set
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
# CONFIG_RTC_DRV_RX6110 is not set
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_WM831X is not set
# CONFIG_RTC_DRV_WM8350 is not set
# CONFIG_RTC_DRV_ZYNQMP is not set
# CONFIG_RTC_DRV_SNVS is not set
# CONFIG_RTC_DRV_MOXART is not set
# CONFIG_RTC_DRV_XGENE is not set
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
##
## file: drivers/scsi/Kconfig
##
CONFIG_SCSI=m
CONFIG_BLK_DEV_SD=m
CONFIG_SCSI_FC_ATTRS=m
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_MYRB is not set
# CONFIG_SCSI_MYRS is not set
CONFIG_HYPERV_STORAGE=m
# CONFIG_LIBFC is not set
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
# CONFIG_SCSI_BFA_FC is not set
##
## file: drivers/scsi/aic7xxx/Kconfig.aic79xx
##
# CONFIG_SCSI_AIC79XX is not set
##
## file: drivers/scsi/aic7xxx/Kconfig.aic7xxx
##
# CONFIG_SCSI_AIC7XXX is not set
##
## file: drivers/scsi/aic94xx/Kconfig
##
# CONFIG_SCSI_AIC94XX is not set
##
## file: drivers/scsi/be2iscsi/Kconfig
##
# CONFIG_BE2ISCSI is not set
##
## file: drivers/scsi/bnx2fc/Kconfig
##
# CONFIG_SCSI_BNX2X_FCOE is not set
##
## file: drivers/scsi/bnx2i/Kconfig
##
# CONFIG_SCSI_BNX2_ISCSI is not set
##
## file: drivers/scsi/csiostor/Kconfig
##
# CONFIG_SCSI_CHELSIO_FCOE is not set
##
## file: drivers/scsi/cxgbi/cxgb3i/Kconfig
##
# CONFIG_SCSI_CXGB3_ISCSI is not set
##
## file: drivers/scsi/cxgbi/cxgb4i/Kconfig
##
# CONFIG_SCSI_CXGB4_ISCSI is not set
##
## file: drivers/scsi/device_handler/Kconfig
##
# CONFIG_SCSI_DH is not set
##
## file: drivers/scsi/esas2r/Kconfig
##
# CONFIG_SCSI_ESAS2R is not set
##
## file: drivers/scsi/megaraid/Kconfig.megaraid
##
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_MM is not set
# CONFIG_MEGARAID_MAILBOX is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
##
## file: drivers/scsi/mpt3sas/Kconfig
##
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
##
## file: drivers/scsi/mvsas/Kconfig
##
# CONFIG_SCSI_MVSAS is not set
##
## file: drivers/scsi/qla2xxx/Kconfig
##
# CONFIG_SCSI_QLA_FC is not set
##
## file: drivers/scsi/qla4xxx/Kconfig
##
# CONFIG_SCSI_QLA_ISCSI is not set
##
## file: drivers/scsi/smartpqi/Kconfig
##
# CONFIG_SCSI_SMARTPQI is not set
##
## file: drivers/spi/Kconfig
##
# CONFIG_SPI is not set
##
## file: drivers/spmi/Kconfig
##
# CONFIG_SPMI is not set
##
## file: drivers/ssb/Kconfig
##
# CONFIG_SSB is not set
##
## file: drivers/staging/Kconfig
##
# CONFIG_STAGING is not set
##
## file: drivers/staging/vme_user/Kconfig
##
# CONFIG_VME_BUS is not set
##
## file: drivers/target/iscsi/cxgbit/Kconfig
##
# CONFIG_ISCSI_TARGET_CXGB4 is not set
##
## file: drivers/thermal/Kconfig
##
# CONFIG_THERMAL is not set
##
## file: drivers/thunderbolt/Kconfig
##
# CONFIG_USB4 is not set
##
## file: drivers/tty/Kconfig
##
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_N_HDLC is not set
# CONFIG_NOZOMI is not set
##
## file: drivers/tty/serial/Kconfig
##
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_RP2 is not set
##
## file: drivers/tty/serial/8250/Kconfig
##
# CONFIG_SERIAL_8250_FINTEK is not set
# CONFIG_SERIAL_8250_EXAR is not set
# CONFIG_SERIAL_8250_RSA is not set
# CONFIG_SERIAL_8250_MID is not set
##
## file: drivers/ufs/Kconfig
##
# CONFIG_SCSI_UFSHCD is not set
##
## file: drivers/usb/Kconfig
##
# CONFIG_USB_SUPPORT is not set
##
## file: drivers/vfio/pci/Kconfig
##
# CONFIG_VFIO_PCI_VGA is not set
##
## file: drivers/video/backlight/Kconfig
##
# CONFIG_LCD_CLASS_DEVICE is not set
# CONFIG_BACKLIGHT_CLASS_DEVICE is not set
##
## file: drivers/video/fbdev/Kconfig
##
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FB_MB862XX is not set
CONFIG_FB_HYPERV=m
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SM712 is not set
##
## file: drivers/w1/Kconfig
##
# CONFIG_W1 is not set
##
## file: drivers/watchdog/Kconfig
##
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_ITCO_VENDOR_SUPPORT is not set
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_HPWDT_NMI_DECODING is not set
# CONFIG_KEMPLD_WDT is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
##
## file: fs/adfs/Kconfig
##
# CONFIG_ADFS_FS is not set
##
## file: fs/affs/Kconfig
##
# CONFIG_AFFS_FS is not set
##
## file: fs/afs/Kconfig
##
# CONFIG_AFS_FS is not set
##
## file: fs/befs/Kconfig
##
# CONFIG_BEFS_FS is not set
##
## file: fs/bfs/Kconfig
##
# CONFIG_BFS_FS is not set
##
## file: fs/coda/Kconfig
##
# CONFIG_CODA_FS is not set
##
## file: fs/dlm/Kconfig
##
# CONFIG_DLM is not set
##
## file: fs/ecryptfs/Kconfig
##
# CONFIG_ECRYPT_FS is not set
##
## file: fs/efs/Kconfig
##
# CONFIG_EFS_FS is not set
##
## file: fs/ext4/Kconfig
##
CONFIG_EXT4_FS=y
##
## file: fs/f2fs/Kconfig
##
# CONFIG_F2FS_FS is not set
##
## file: fs/freevxfs/Kconfig
##
# CONFIG_VXFS_FS is not set
##
## file: fs/gfs2/Kconfig
##
# CONFIG_GFS2_FS is not set
##
## file: fs/hfs/Kconfig
##
# CONFIG_HFS_FS is not set
##
## file: fs/hfsplus/Kconfig
##
# CONFIG_HFSPLUS_FS is not set
##
## file: fs/hpfs/Kconfig
##
# CONFIG_HPFS_FS is not set
##
## file: fs/jfs/Kconfig
##
# CONFIG_JFS_FS is not set
##
## file: fs/minix/Kconfig
##
# CONFIG_MINIX_FS is not set
##
## file: fs/nilfs2/Kconfig
##
# CONFIG_NILFS2_FS is not set
##
## file: fs/ocfs2/Kconfig
##
# CONFIG_OCFS2_FS is not set
##
## file: fs/omfs/Kconfig
##
# CONFIG_OMFS_FS is not set
##
## file: fs/qnx4/Kconfig
##
# CONFIG_QNX4FS_FS is not set
##
## file: fs/qnx6/Kconfig
##
# CONFIG_QNX6FS_FS is not set
##
## file: fs/ufs/Kconfig
##
# CONFIG_UFS_FS is not set
##
## file: kernel/power/Kconfig
##
# CONFIG_PM is not set
# CONFIG_PM_DEBUG is not set
##
## file: lib/Kconfig.debug
##
# CONFIG_DEBUG_MEMORY_INIT is not set
# CONFIG_TEST_BPF is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_MEMTEST is not set
##
## file: mm/Kconfig
##
# CONFIG_ZSWAP is not set
##
## file: mm/Kconfig.debug
##
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_PAGE_POISONING is not set
##
## file: net/Kconfig
##
# CONFIG_WIRELESS is not set
##
## file: net/6lowpan/Kconfig
##
# CONFIG_6LOWPAN is not set
##
## file: net/9p/Kconfig
##
# CONFIG_NET_9P is not set
##
## file: net/appletalk/Kconfig
##
# CONFIG_ATALK is not set
##
## file: net/atm/Kconfig
##
# CONFIG_ATM is not set
##
## file: net/ax25/Kconfig
##
# CONFIG_HAMRADIO is not set
##
## file: net/batman-adv/Kconfig
##
# CONFIG_BATMAN_ADV is not set
##
## file: net/bluetooth/Kconfig
##
# CONFIG_BT is not set
##
## file: net/caif/Kconfig
##
# CONFIG_CAIF is not set
##
## file: net/can/Kconfig
##
# CONFIG_CAN is not set
##
## file: net/dsa/Kconfig
##
# CONFIG_NET_DSA is not set
##
## file: net/hsr/Kconfig
##
# CONFIG_HSR is not set
##
## file: net/ieee802154/Kconfig
##
# CONFIG_IEEE802154 is not set
##
## file: net/ife/Kconfig
##
# CONFIG_NET_IFE is not set
##
## file: net/lapb/Kconfig
##
# CONFIG_LAPB is not set
##
## file: net/llc/Kconfig
##
# CONFIG_LLC2 is not set
##
## file: net/mac80211/Kconfig
##
# CONFIG_MAC80211 is not set
##
## file: net/mac802154/Kconfig
##
# CONFIG_MAC802154 is not set
##
## file: net/mpls/Kconfig
##
CONFIG_NET_MPLS_GSO=m
##
## file: net/ncsi/Kconfig
##
# CONFIG_NET_NCSI is not set
##
## file: net/nfc/Kconfig
##
# CONFIG_NFC is not set
##
## file: net/phonet/Kconfig
##
# CONFIG_PHONET is not set
##
## file: net/psample/Kconfig
##
# CONFIG_PSAMPLE is not set
##
## file: net/rfkill/Kconfig
##
# CONFIG_RFKILL is not set
##
## file: net/rxrpc/Kconfig
##
# CONFIG_AF_RXRPC is not set
##
## file: net/switchdev/Kconfig
##
# CONFIG_NET_SWITCHDEV is not set
##
## file: net/wireless/Kconfig
##
# CONFIG_CFG80211 is not set
##
## file: net/x25/Kconfig
##
# CONFIG_X25 is not set
##
## file: security/Kconfig
##
CONFIG_SECURITY_INFINIBAND=y
##
## file: sound/Kconfig
##
# CONFIG_SOUND is not set
|