desktop 164 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127
  1. #
  2. # Automatically generated file; DO NOT EDIT.
  3. # Linux/x86 5.12.0-rc7 Kernel Configuration
  4. #
  5. CONFIG_CC_VERSION_TEXT="clang version 11.1.0"
  6. CONFIG_GCC_VERSION=0
  7. CONFIG_CC_IS_CLANG=y
  8. CONFIG_CLANG_VERSION=110100
  9. CONFIG_LD_VERSION=0
  10. CONFIG_LD_IS_LLD=y
  11. CONFIG_LLD_VERSION=110100
  12. CONFIG_CC_CAN_LINK=y
  13. CONFIG_CC_CAN_LINK_STATIC=y
  14. CONFIG_CC_HAS_ASM_GOTO=y
  15. CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
  16. CONFIG_TOOLS_SUPPORT_RELR=y
  17. CONFIG_CC_HAS_ASM_INLINE=y
  18. CONFIG_IRQ_WORK=y
  19. CONFIG_BUILDTIME_TABLE_SORT=y
  20. CONFIG_THREAD_INFO_IN_TASK=y
  21. #
  22. # General setup
  23. #
  24. CONFIG_INIT_ENV_ARG_LIMIT=32
  25. # CONFIG_COMPILE_TEST is not set
  26. CONFIG_LOCALVERSION=""
  27. CONFIG_LOCALVERSION_AUTO=y
  28. CONFIG_BUILD_SALT=""
  29. CONFIG_HAVE_KERNEL_GZIP=y
  30. CONFIG_HAVE_KERNEL_BZIP2=y
  31. CONFIG_HAVE_KERNEL_LZMA=y
  32. CONFIG_HAVE_KERNEL_XZ=y
  33. CONFIG_HAVE_KERNEL_LZO=y
  34. CONFIG_HAVE_KERNEL_LZ4=y
  35. CONFIG_HAVE_KERNEL_ZSTD=y
  36. # CONFIG_KERNEL_GZIP is not set
  37. # CONFIG_KERNEL_BZIP2 is not set
  38. # CONFIG_KERNEL_LZMA is not set
  39. # CONFIG_KERNEL_XZ is not set
  40. # CONFIG_KERNEL_LZO is not set
  41. # CONFIG_KERNEL_LZ4 is not set
  42. CONFIG_KERNEL_ZSTD=y
  43. CONFIG_DEFAULT_INIT=""
  44. CONFIG_DEFAULT_HOSTNAME="archlinux"
  45. # CONFIG_SWAP is not set
  46. CONFIG_SYSVIPC=y
  47. CONFIG_SYSVIPC_SYSCTL=y
  48. CONFIG_POSIX_MQUEUE=y
  49. CONFIG_POSIX_MQUEUE_SYSCTL=y
  50. CONFIG_WATCH_QUEUE=y
  51. CONFIG_CROSS_MEMORY_ATTACH=y
  52. # CONFIG_USELIB is not set
  53. # CONFIG_AUDIT is not set
  54. CONFIG_HAVE_ARCH_AUDITSYSCALL=y
  55. #
  56. # IRQ subsystem
  57. #
  58. CONFIG_GENERIC_IRQ_PROBE=y
  59. CONFIG_GENERIC_IRQ_SHOW=y
  60. CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
  61. CONFIG_GENERIC_PENDING_IRQ=y
  62. CONFIG_GENERIC_IRQ_MIGRATION=y
  63. CONFIG_HARDIRQS_SW_RESEND=y
  64. CONFIG_IRQ_DOMAIN=y
  65. CONFIG_IRQ_DOMAIN_HIERARCHY=y
  66. CONFIG_GENERIC_MSI_IRQ=y
  67. CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
  68. CONFIG_IRQ_MSI_IOMMU=y
  69. CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
  70. CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
  71. CONFIG_IRQ_FORCED_THREADING=y
  72. CONFIG_SPARSE_IRQ=y
  73. # CONFIG_GENERIC_IRQ_DEBUGFS is not set
  74. # end of IRQ subsystem
  75. CONFIG_CLOCKSOURCE_WATCHDOG=y
  76. CONFIG_ARCH_CLOCKSOURCE_INIT=y
  77. CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
  78. CONFIG_GENERIC_TIME_VSYSCALL=y
  79. CONFIG_GENERIC_CLOCKEVENTS=y
  80. CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
  81. CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
  82. CONFIG_GENERIC_CMOS_UPDATE=y
  83. CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y
  84. CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y
  85. #
  86. # Timers subsystem
  87. #
  88. CONFIG_TICK_ONESHOT=y
  89. CONFIG_NO_HZ_COMMON=y
  90. # CONFIG_HZ_PERIODIC is not set
  91. CONFIG_NO_HZ_IDLE=y
  92. # CONFIG_NO_HZ_FULL is not set
  93. # CONFIG_NO_HZ is not set
  94. CONFIG_HIGH_RES_TIMERS=y
  95. # end of Timers subsystem
  96. # CONFIG_PREEMPT_NONE is not set
  97. # CONFIG_PREEMPT_VOLUNTARY is not set
  98. CONFIG_PREEMPT=y
  99. CONFIG_PREEMPT_COUNT=y
  100. CONFIG_PREEMPTION=y
  101. CONFIG_PREEMPT_DYNAMIC=y
  102. #
  103. # CPU/Task time and stats accounting
  104. #
  105. CONFIG_TICK_CPU_ACCOUNTING=y
  106. # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
  107. CONFIG_IRQ_TIME_ACCOUNTING=y
  108. CONFIG_HAVE_SCHED_AVG_IRQ=y
  109. # CONFIG_BSD_PROCESS_ACCT is not set
  110. CONFIG_TASKSTATS=y
  111. CONFIG_TASK_DELAY_ACCT=y
  112. # CONFIG_TASK_XACCT is not set
  113. # CONFIG_PSI is not set
  114. # end of CPU/Task time and stats accounting
  115. CONFIG_CPU_ISOLATION=y
  116. #
  117. # RCU Subsystem
  118. #
  119. CONFIG_TREE_RCU=y
  120. CONFIG_PREEMPT_RCU=y
  121. CONFIG_RCU_EXPERT=y
  122. CONFIG_SRCU=y
  123. CONFIG_TREE_SRCU=y
  124. CONFIG_TASKS_RCU_GENERIC=y
  125. CONFIG_TASKS_RCU=y
  126. CONFIG_TASKS_TRACE_RCU=y
  127. CONFIG_RCU_STALL_COMMON=y
  128. CONFIG_RCU_NEED_SEGCBLIST=y
  129. CONFIG_RCU_FANOUT=64
  130. CONFIG_RCU_FANOUT_LEAF=16
  131. CONFIG_RCU_FAST_NO_HZ=y
  132. CONFIG_RCU_BOOST=y
  133. CONFIG_RCU_BOOST_DELAY=500
  134. # CONFIG_RCU_NOCB_CPU is not set
  135. # CONFIG_TASKS_TRACE_RCU_READ_MB is not set
  136. # end of RCU Subsystem
  137. CONFIG_IKCONFIG=y
  138. CONFIG_IKCONFIG_PROC=y
  139. # CONFIG_IKHEADERS is not set
  140. CONFIG_LOG_BUF_SHIFT=17
  141. CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
  142. CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
  143. CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
  144. #
  145. # Scheduler features
  146. #
  147. CONFIG_UCLAMP_TASK=y
  148. CONFIG_UCLAMP_BUCKETS_COUNT=5
  149. # end of Scheduler features
  150. CONFIG_CACULE_SCHED=y
  151. # CONFIG_CACULE_RDB is not set
  152. CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
  153. CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
  154. CONFIG_CC_HAS_INT128=y
  155. CONFIG_ARCH_SUPPORTS_INT128=y
  156. CONFIG_NUMA_BALANCING=y
  157. CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
  158. CONFIG_CGROUPS=y
  159. CONFIG_PAGE_COUNTER=y
  160. # CONFIG_MEMCG is not set
  161. CONFIG_BLK_CGROUP=y
  162. CONFIG_CGROUP_SCHED=y
  163. CONFIG_FAIR_GROUP_SCHED=y
  164. # CONFIG_CFS_BANDWIDTH is not set
  165. # CONFIG_RT_GROUP_SCHED is not set
  166. # CONFIG_UCLAMP_TASK_GROUP is not set
  167. CONFIG_CGROUP_PIDS=y
  168. CONFIG_CGROUP_RDMA=y
  169. CONFIG_CGROUP_FREEZER=y
  170. CONFIG_CGROUP_HUGETLB=y
  171. CONFIG_CPUSETS=y
  172. CONFIG_PROC_PID_CPUSET=y
  173. CONFIG_CGROUP_DEVICE=y
  174. # CONFIG_CGROUP_CPUACCT is not set
  175. CONFIG_CGROUP_PERF=y
  176. CONFIG_CGROUP_BPF=y
  177. # CONFIG_CGROUP_DEBUG is not set
  178. CONFIG_SOCK_CGROUP_DATA=y
  179. CONFIG_NAMESPACES=y
  180. CONFIG_UTS_NS=y
  181. CONFIG_TIME_NS=y
  182. CONFIG_IPC_NS=y
  183. CONFIG_USER_NS=y
  184. CONFIG_PID_NS=y
  185. CONFIG_NET_NS=y
  186. # CONFIG_CHECKPOINT_RESTORE is not set
  187. CONFIG_SCHED_AUTOGROUP=y
  188. # CONFIG_SYSFS_DEPRECATED is not set
  189. CONFIG_RELAY=y
  190. CONFIG_BLK_DEV_INITRD=y
  191. CONFIG_INITRAMFS_SOURCE=""
  192. # CONFIG_RD_GZIP is not set
  193. # CONFIG_RD_BZIP2 is not set
  194. # CONFIG_RD_LZMA is not set
  195. # CONFIG_RD_XZ is not set
  196. # CONFIG_RD_LZO is not set
  197. # CONFIG_RD_LZ4 is not set
  198. CONFIG_RD_ZSTD=y
  199. CONFIG_BOOT_CONFIG=y
  200. CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
  201. # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
  202. CONFIG_HAVE_LD_DEAD_CODE_DATA_ELIMINATION=y
  203. # CONFIG_LD_DEAD_CODE_DATA_ELIMINATION is not set
  204. CONFIG_LD_ORPHAN_WARN=y
  205. CONFIG_SYSCTL=y
  206. CONFIG_HAVE_UID16=y
  207. CONFIG_SYSCTL_EXCEPTION_TRACE=y
  208. CONFIG_HAVE_PCSPKR_PLATFORM=y
  209. CONFIG_BPF=y
  210. CONFIG_EXPERT=y
  211. CONFIG_UID16=y
  212. CONFIG_MULTIUSER=y
  213. CONFIG_SGETMASK_SYSCALL=y
  214. CONFIG_SYSFS_SYSCALL=y
  215. CONFIG_FHANDLE=y
  216. CONFIG_POSIX_TIMERS=y
  217. CONFIG_PRINTK=y
  218. CONFIG_PRINTK_NMI=y
  219. CONFIG_BUG=y
  220. CONFIG_ELF_CORE=y
  221. CONFIG_PCSPKR_PLATFORM=y
  222. CONFIG_BASE_FULL=y
  223. CONFIG_FUTEX=y
  224. CONFIG_FUTEX_PI=y
  225. CONFIG_EPOLL=y
  226. CONFIG_SIGNALFD=y
  227. CONFIG_TIMERFD=y
  228. CONFIG_EVENTFD=y
  229. CONFIG_SHMEM=y
  230. CONFIG_AIO=y
  231. CONFIG_IO_URING=y
  232. CONFIG_ADVISE_SYSCALLS=y
  233. CONFIG_HAVE_ARCH_USERFAULTFD_WP=y
  234. CONFIG_MEMBARRIER=y
  235. CONFIG_KALLSYMS=y
  236. # CONFIG_KALLSYMS_ALL is not set
  237. CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
  238. CONFIG_KALLSYMS_BASE_RELATIVE=y
  239. CONFIG_BPF_SYSCALL=y
  240. CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y
  241. CONFIG_USERMODE_DRIVER=y
  242. CONFIG_BPF_PRELOAD=y
  243. # CONFIG_BPF_PRELOAD_UMD is not set
  244. CONFIG_USERFAULTFD=y
  245. CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
  246. CONFIG_KCMP=y
  247. CONFIG_RSEQ=y
  248. # CONFIG_DEBUG_RSEQ is not set
  249. # CONFIG_EMBEDDED is not set
  250. CONFIG_HAVE_PERF_EVENTS=y
  251. # CONFIG_PC104 is not set
  252. #
  253. # Kernel Performance Events And Counters
  254. #
  255. CONFIG_PERF_EVENTS=y
  256. # CONFIG_DEBUG_PERF_USE_VMALLOC is not set
  257. # end of Kernel Performance Events And Counters
  258. CONFIG_VM_EVENT_COUNTERS=y
  259. CONFIG_SLUB_DEBUG=y
  260. # CONFIG_COMPAT_BRK is not set
  261. # CONFIG_SLAB is not set
  262. CONFIG_SLUB=y
  263. # CONFIG_SLOB is not set
  264. # CONFIG_SLAB_MERGE_DEFAULT is not set
  265. CONFIG_SLAB_FREELIST_RANDOM=y
  266. # CONFIG_SLAB_FREELIST_HARDENED is not set
  267. CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
  268. # CONFIG_SLUB_CPU_PARTIAL is not set
  269. CONFIG_SYSTEM_DATA_VERIFICATION=y
  270. # CONFIG_PROFILING is not set
  271. # end of General setup
  272. CONFIG_64BIT=y
  273. CONFIG_X86_64=y
  274. CONFIG_X86=y
  275. CONFIG_INSTRUCTION_DECODER=y
  276. CONFIG_OUTPUT_FORMAT="elf64-x86-64"
  277. CONFIG_LOCKDEP_SUPPORT=y
  278. CONFIG_STACKTRACE_SUPPORT=y
  279. CONFIG_MMU=y
  280. CONFIG_ARCH_MMAP_RND_BITS_MIN=28
  281. CONFIG_ARCH_MMAP_RND_BITS_MAX=32
  282. CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
  283. CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
  284. CONFIG_GENERIC_ISA_DMA=y
  285. CONFIG_GENERIC_BUG=y
  286. CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
  287. CONFIG_ARCH_MAY_HAVE_PC_FDC=y
  288. CONFIG_GENERIC_CALIBRATE_DELAY=y
  289. CONFIG_ARCH_HAS_CPU_RELAX=y
  290. CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
  291. CONFIG_ARCH_HAS_FILTER_PGPROT=y
  292. CONFIG_HAVE_SETUP_PER_CPU_AREA=y
  293. CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
  294. CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
  295. CONFIG_ARCH_HIBERNATION_POSSIBLE=y
  296. CONFIG_ARCH_SUSPEND_POSSIBLE=y
  297. CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
  298. CONFIG_ZONE_DMA32=y
  299. CONFIG_AUDIT_ARCH=y
  300. CONFIG_HAVE_INTEL_TXT=y
  301. CONFIG_X86_64_SMP=y
  302. CONFIG_ARCH_SUPPORTS_UPROBES=y
  303. CONFIG_FIX_EARLYCON_MEM=y
  304. CONFIG_DYNAMIC_PHYSICAL_MASK=y
  305. CONFIG_PGTABLE_LEVELS=4
  306. CONFIG_CC_HAS_SANE_STACKPROTECTOR=y
  307. #
  308. # Processor type and features
  309. #
  310. CONFIG_ZONE_DMA=y
  311. CONFIG_SMP=y
  312. CONFIG_X86_FEATURE_NAMES=y
  313. CONFIG_X86_X2APIC=y
  314. CONFIG_X86_MPPARSE=y
  315. # CONFIG_GOLDFISH is not set
  316. # CONFIG_RETPOLINE is not set
  317. CONFIG_X86_CPU_RESCTRL=y
  318. # CONFIG_X86_EXTENDED_PLATFORM is not set
  319. CONFIG_X86_INTEL_LPSS=y
  320. CONFIG_X86_AMD_PLATFORM_DEVICE=y
  321. CONFIG_IOSF_MBI=y
  322. # CONFIG_IOSF_MBI_DEBUG is not set
  323. CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
  324. CONFIG_SCHED_OMIT_FRAME_POINTER=y
  325. # CONFIG_HYPERVISOR_GUEST is not set
  326. # CONFIG_MK8 is not set
  327. # CONFIG_MK8SSE3 is not set
  328. # CONFIG_MK10 is not set
  329. # CONFIG_MBARCELONA is not set
  330. # CONFIG_MBOBCAT is not set
  331. # CONFIG_MJAGUAR is not set
  332. # CONFIG_MBULLDOZER is not set
  333. # CONFIG_MPILEDRIVER is not set
  334. # CONFIG_MSTEAMROLLER is not set
  335. # CONFIG_MEXCAVATOR is not set
  336. # CONFIG_MZEN is not set
  337. # CONFIG_MZEN2 is not set
  338. # CONFIG_MZEN3 is not set
  339. # CONFIG_MPSC is not set
  340. # CONFIG_MCORE2 is not set
  341. # CONFIG_MATOM is not set
  342. # CONFIG_MNEHALEM is not set
  343. # CONFIG_MWESTMERE is not set
  344. # CONFIG_MSILVERMONT is not set
  345. # CONFIG_MGOLDMONT is not set
  346. # CONFIG_MGOLDMONTPLUS is not set
  347. # CONFIG_MSANDYBRIDGE is not set
  348. # CONFIG_MIVYBRIDGE is not set
  349. # CONFIG_MHASWELL is not set
  350. # CONFIG_MBROADWELL is not set
  351. # CONFIG_MSKYLAKE is not set
  352. # CONFIG_MSKYLAKEX is not set
  353. # CONFIG_MCANNONLAKE is not set
  354. # CONFIG_MICELAKE is not set
  355. # CONFIG_MCASCADELAKE is not set
  356. # CONFIG_MCOOPERLAKE is not set
  357. # CONFIG_MTIGERLAKE is not set
  358. # CONFIG_MSAPPHIRERAPIDS is not set
  359. # CONFIG_MALDERLAKE is not set
  360. # CONFIG_GENERIC_CPU is not set
  361. # CONFIG_GENERIC_CPU2 is not set
  362. CONFIG_GENERIC_CPU3=y
  363. # CONFIG_GENERIC_CPU4 is not set
  364. # CONFIG_MNATIVE is not set
  365. CONFIG_X86_INTERNODE_CACHE_SHIFT=6
  366. CONFIG_X86_L1_CACHE_SHIFT=6
  367. CONFIG_X86_TSC=y
  368. CONFIG_X86_CMPXCHG64=y
  369. CONFIG_X86_CMOV=y
  370. CONFIG_X86_MINIMUM_CPU_FAMILY=64
  371. CONFIG_X86_DEBUGCTLMSR=y
  372. CONFIG_PROCESSOR_SELECT=y
  373. # CONFIG_CPU_SUP_INTEL is not set
  374. CONFIG_CPU_SUP_AMD=y
  375. # CONFIG_CPU_SUP_HYGON is not set
  376. # CONFIG_CPU_SUP_CENTAUR is not set
  377. # CONFIG_CPU_SUP_ZHAOXIN is not set
  378. CONFIG_HPET_TIMER=y
  379. CONFIG_HPET_EMULATE_RTC=y
  380. CONFIG_DMI=y
  381. # CONFIG_GART_IOMMU is not set
  382. # CONFIG_MAXSMP is not set
  383. CONFIG_NR_CPUS_RANGE_BEGIN=2
  384. CONFIG_NR_CPUS_RANGE_END=512
  385. CONFIG_NR_CPUS_DEFAULT=64
  386. CONFIG_NR_CPUS=32
  387. CONFIG_SCHED_SMT=y
  388. CONFIG_SCHED_MC=y
  389. CONFIG_X86_LOCAL_APIC=y
  390. CONFIG_X86_IO_APIC=y
  391. CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
  392. CONFIG_X86_MCE=y
  393. # CONFIG_X86_MCELOG_LEGACY is not set
  394. CONFIG_X86_MCE_INTEL=y
  395. CONFIG_X86_MCE_AMD=y
  396. CONFIG_X86_MCE_THRESHOLD=y
  397. # CONFIG_X86_MCE_INJECT is not set
  398. #
  399. # Performance monitoring
  400. #
  401. CONFIG_PERF_EVENTS_INTEL_RAPL=y
  402. # CONFIG_PERF_EVENTS_AMD_POWER is not set
  403. # end of Performance monitoring
  404. CONFIG_X86_16BIT=y
  405. CONFIG_X86_ESPFIX64=y
  406. CONFIG_X86_VSYSCALL_EMULATION=y
  407. CONFIG_X86_IOPL_IOPERM=y
  408. # CONFIG_I8K is not set
  409. CONFIG_MICROCODE=y
  410. CONFIG_MICROCODE_INTEL=y
  411. CONFIG_MICROCODE_AMD=y
  412. # CONFIG_MICROCODE_OLD_INTERFACE is not set
  413. CONFIG_X86_MSR=y
  414. CONFIG_X86_CPUID=y
  415. # CONFIG_X86_5LEVEL is not set
  416. CONFIG_X86_DIRECT_GBPAGES=y
  417. CONFIG_X86_CPA_STATISTICS=y
  418. CONFIG_AMD_MEM_ENCRYPT=y
  419. # CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set
  420. CONFIG_NUMA=y
  421. CONFIG_AMD_NUMA=y
  422. CONFIG_X86_64_ACPI_NUMA=y
  423. # CONFIG_NUMA_EMU is not set
  424. CONFIG_NODES_SHIFT=5
  425. CONFIG_ARCH_SPARSEMEM_ENABLE=y
  426. CONFIG_ARCH_SPARSEMEM_DEFAULT=y
  427. CONFIG_ARCH_SELECT_MEMORY_MODEL=y
  428. # CONFIG_ARCH_MEMORY_PROBE is not set
  429. CONFIG_ARCH_PROC_KCORE_TEXT=y
  430. CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
  431. # CONFIG_X86_PMEM_LEGACY is not set
  432. CONFIG_X86_CHECK_BIOS_CORRUPTION=y
  433. CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
  434. CONFIG_X86_RESERVE_LOW=64
  435. CONFIG_MTRR=y
  436. CONFIG_MTRR_SANITIZER=y
  437. CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
  438. CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=0
  439. CONFIG_X86_PAT=y
  440. CONFIG_ARCH_USES_PG_UNCACHED=y
  441. CONFIG_ARCH_RANDOM=y
  442. CONFIG_X86_SMAP=y
  443. CONFIG_X86_UMIP=y
  444. CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
  445. CONFIG_EFI=y
  446. CONFIG_EFI_STUB=y
  447. CONFIG_EFI_MIXED=y
  448. # CONFIG_HZ_100 is not set
  449. CONFIG_HZ_250=y
  450. # CONFIG_HZ_300 is not set
  451. # CONFIG_HZ_1000 is not set
  452. CONFIG_HZ=250
  453. CONFIG_SCHED_HRTICK=y
  454. # CONFIG_KEXEC is not set
  455. # CONFIG_KEXEC_FILE is not set
  456. # CONFIG_CRASH_DUMP is not set
  457. CONFIG_PHYSICAL_START=0x1000000
  458. CONFIG_RELOCATABLE=y
  459. CONFIG_RANDOMIZE_BASE=y
  460. CONFIG_X86_NEED_RELOCS=y
  461. CONFIG_PHYSICAL_ALIGN=0x200000
  462. CONFIG_DYNAMIC_MEMORY_LAYOUT=y
  463. CONFIG_RANDOMIZE_MEMORY=y
  464. CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa
  465. CONFIG_HOTPLUG_CPU=y
  466. # CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
  467. # CONFIG_DEBUG_HOTPLUG_CPU0 is not set
  468. # CONFIG_COMPAT_VDSO is not set
  469. # CONFIG_LEGACY_VSYSCALL_EMULATE is not set
  470. CONFIG_LEGACY_VSYSCALL_XONLY=y
  471. # CONFIG_LEGACY_VSYSCALL_NONE is not set
  472. # CONFIG_CMDLINE_BOOL is not set
  473. CONFIG_MODIFY_LDT_SYSCALL=y
  474. CONFIG_HAVE_LIVEPATCH=y
  475. # end of Processor type and features
  476. CONFIG_ARCH_HAS_ADD_PAGES=y
  477. CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
  478. CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
  479. CONFIG_USE_PERCPU_NUMA_NODE_ID=y
  480. CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
  481. CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
  482. CONFIG_ARCH_ENABLE_THP_MIGRATION=y
  483. #
  484. # Power management and ACPI options
  485. #
  486. # CONFIG_SUSPEND is not set
  487. CONFIG_PM=y
  488. # CONFIG_PM_DEBUG is not set
  489. CONFIG_PM_CLK=y
  490. CONFIG_PM_GENERIC_DOMAINS=y
  491. # CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
  492. CONFIG_ENERGY_MODEL=y
  493. CONFIG_ARCH_SUPPORTS_ACPI=y
  494. CONFIG_ACPI=y
  495. CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
  496. CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
  497. CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
  498. # CONFIG_ACPI_DEBUGGER is not set
  499. CONFIG_ACPI_SPCR_TABLE=y
  500. # CONFIG_ACPI_FPDT is not set
  501. CONFIG_ACPI_LPIT=y
  502. CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
  503. # CONFIG_ACPI_EC_DEBUGFS is not set
  504. CONFIG_ACPI_AC=y
  505. CONFIG_ACPI_BATTERY=y
  506. CONFIG_ACPI_BUTTON=y
  507. CONFIG_ACPI_VIDEO=y
  508. CONFIG_ACPI_FAN=y
  509. CONFIG_ACPI_DOCK=y
  510. CONFIG_ACPI_CPU_FREQ_PSS=y
  511. CONFIG_ACPI_PROCESSOR_CSTATE=y
  512. CONFIG_ACPI_PROCESSOR_IDLE=y
  513. CONFIG_ACPI_PROCESSOR=y
  514. CONFIG_ACPI_HOTPLUG_CPU=y
  515. # CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
  516. CONFIG_ACPI_THERMAL=y
  517. CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
  518. CONFIG_ACPI_TABLE_UPGRADE=y
  519. CONFIG_ACPI_DEBUG=y
  520. CONFIG_ACPI_PCI_SLOT=y
  521. CONFIG_ACPI_CONTAINER=y
  522. CONFIG_ACPI_HOTPLUG_MEMORY=y
  523. CONFIG_ACPI_HOTPLUG_IOAPIC=y
  524. # CONFIG_ACPI_SBS is not set
  525. CONFIG_ACPI_HED=y
  526. # CONFIG_ACPI_CUSTOM_METHOD is not set
  527. CONFIG_ACPI_BGRT=y
  528. # CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
  529. # CONFIG_ACPI_NFIT is not set
  530. CONFIG_ACPI_NUMA=y
  531. CONFIG_ACPI_HMAT=y
  532. CONFIG_HAVE_ACPI_APEI=y
  533. CONFIG_HAVE_ACPI_APEI_NMI=y
  534. CONFIG_ACPI_APEI=y
  535. CONFIG_ACPI_APEI_GHES=y
  536. CONFIG_ACPI_APEI_PCIEAER=y
  537. CONFIG_ACPI_APEI_MEMORY_FAILURE=y
  538. # CONFIG_ACPI_APEI_EINJ is not set
  539. # CONFIG_ACPI_APEI_ERST_DEBUG is not set
  540. CONFIG_ACPI_DPTF=y
  541. # CONFIG_DPTF_POWER is not set
  542. # CONFIG_DPTF_PCH_FIVR is not set
  543. # CONFIG_ACPI_EXTLOG is not set
  544. # CONFIG_ACPI_CONFIGFS is not set
  545. CONFIG_PMIC_OPREGION=y
  546. CONFIG_BYTCRC_PMIC_OPREGION=y
  547. CONFIG_CHTCRC_PMIC_OPREGION=y
  548. CONFIG_CHT_WC_PMIC_OPREGION=y
  549. CONFIG_TPS68470_PMIC_OPREGION=y
  550. CONFIG_X86_PM_TIMER=y
  551. #
  552. # CPU Frequency scaling
  553. #
  554. CONFIG_CPU_FREQ=y
  555. CONFIG_CPU_FREQ_GOV_ATTR_SET=y
  556. CONFIG_CPU_FREQ_GOV_COMMON=y
  557. CONFIG_CPU_FREQ_STAT=y
  558. CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
  559. # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
  560. # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
  561. # CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
  562. CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
  563. CONFIG_CPU_FREQ_GOV_POWERSAVE=y
  564. CONFIG_CPU_FREQ_GOV_USERSPACE=y
  565. CONFIG_CPU_FREQ_GOV_ONDEMAND=y
  566. CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
  567. CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
  568. #
  569. # CPU frequency scaling drivers
  570. #
  571. CONFIG_X86_INTEL_PSTATE=y
  572. # CONFIG_X86_PCC_CPUFREQ is not set
  573. CONFIG_X86_ACPI_CPUFREQ=y
  574. CONFIG_X86_ACPI_CPUFREQ_CPB=y
  575. # CONFIG_X86_POWERNOW_K8 is not set
  576. # CONFIG_X86_AMD_FREQ_SENSITIVITY is not set
  577. # CONFIG_X86_SPEEDSTEP_CENTRINO is not set
  578. # CONFIG_X86_P4_CLOCKMOD is not set
  579. #
  580. # shared options
  581. #
  582. # end of CPU Frequency scaling
  583. #
  584. # CPU Idle
  585. #
  586. CONFIG_CPU_IDLE=y
  587. CONFIG_CPU_IDLE_GOV_LADDER=y
  588. CONFIG_CPU_IDLE_GOV_MENU=y
  589. CONFIG_CPU_IDLE_GOV_TEO=y
  590. # end of CPU Idle
  591. # end of Power management and ACPI options
  592. #
  593. # Bus options (PCI etc.)
  594. #
  595. CONFIG_PCI_DIRECT=y
  596. CONFIG_PCI_MMCONFIG=y
  597. CONFIG_MMCONF_FAM10H=y
  598. # CONFIG_PCI_CNB20LE_QUIRK is not set
  599. # CONFIG_ISA_BUS is not set
  600. CONFIG_ISA_DMA_API=y
  601. CONFIG_AMD_NB=y
  602. # CONFIG_X86_SYSFB is not set
  603. # end of Bus options (PCI etc.)
  604. #
  605. # Binary Emulations
  606. #
  607. CONFIG_IA32_EMULATION=y
  608. # CONFIG_X86_X32 is not set
  609. CONFIG_COMPAT_32=y
  610. CONFIG_COMPAT=y
  611. CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
  612. CONFIG_SYSVIPC_COMPAT=y
  613. # end of Binary Emulations
  614. #
  615. # Firmware Drivers
  616. #
  617. # CONFIG_EDD is not set
  618. CONFIG_FIRMWARE_MEMMAP=y
  619. CONFIG_DMIID=y
  620. CONFIG_DMI_SYSFS=y
  621. CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
  622. # CONFIG_ISCSI_IBFT is not set
  623. # CONFIG_FW_CFG_SYSFS is not set
  624. CONFIG_GOOGLE_FIRMWARE=y
  625. # CONFIG_GOOGLE_SMI is not set
  626. # CONFIG_GOOGLE_COREBOOT_TABLE is not set
  627. # CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set
  628. #
  629. # EFI (Extensible Firmware Interface) Support
  630. #
  631. # CONFIG_EFI_VARS is not set
  632. CONFIG_EFI_ESRT=y
  633. CONFIG_EFI_VARS_PSTORE=y
  634. # CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set
  635. # CONFIG_EFI_FAKE_MEMMAP is not set
  636. CONFIG_EFI_SOFT_RESERVE=y
  637. CONFIG_EFI_RUNTIME_WRAPPERS=y
  638. CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y
  639. # CONFIG_EFI_BOOTLOADER_CONTROL is not set
  640. # CONFIG_EFI_CAPSULE_LOADER is not set
  641. # CONFIG_EFI_TEST is not set
  642. CONFIG_APPLE_PROPERTIES=y
  643. # CONFIG_RESET_ATTACK_MITIGATION is not set
  644. CONFIG_EFI_RCI2_TABLE=y
  645. # CONFIG_EFI_DISABLE_PCI_DMA is not set
  646. # end of EFI (Extensible Firmware Interface) Support
  647. CONFIG_UEFI_CPER=y
  648. CONFIG_UEFI_CPER_X86=y
  649. CONFIG_EFI_DEV_PATH_PARSER=y
  650. CONFIG_EFI_EARLYCON=y
  651. CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y
  652. #
  653. # Tegra firmware driver
  654. #
  655. # end of Tegra firmware driver
  656. # end of Firmware Drivers
  657. CONFIG_HAVE_KVM=y
  658. CONFIG_HAVE_KVM_IRQCHIP=y
  659. CONFIG_HAVE_KVM_IRQFD=y
  660. CONFIG_HAVE_KVM_IRQ_ROUTING=y
  661. CONFIG_HAVE_KVM_EVENTFD=y
  662. CONFIG_KVM_MMIO=y
  663. CONFIG_KVM_ASYNC_PF=y
  664. CONFIG_HAVE_KVM_MSI=y
  665. CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
  666. CONFIG_KVM_VFIO=y
  667. CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
  668. CONFIG_KVM_COMPAT=y
  669. CONFIG_HAVE_KVM_IRQ_BYPASS=y
  670. CONFIG_HAVE_KVM_NO_POLL=y
  671. CONFIG_KVM_XFER_TO_GUEST_WORK=y
  672. CONFIG_VIRTUALIZATION=y
  673. CONFIG_KVM=y
  674. CONFIG_KVM_WERROR=y
  675. CONFIG_KVM_AMD=y
  676. # CONFIG_KVM_AMD_SEV is not set
  677. # CONFIG_KVM_XEN is not set
  678. CONFIG_AS_AVX512=y
  679. CONFIG_AS_SHA1_NI=y
  680. CONFIG_AS_SHA256_NI=y
  681. CONFIG_AS_TPAUSE=y
  682. #
  683. # General architecture-dependent options
  684. #
  685. CONFIG_CRASH_CORE=y
  686. CONFIG_HOTPLUG_SMT=y
  687. CONFIG_GENERIC_ENTRY=y
  688. CONFIG_JUMP_LABEL=y
  689. # CONFIG_STATIC_KEYS_SELFTEST is not set
  690. # CONFIG_STATIC_CALL_SELFTEST is not set
  691. CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
  692. CONFIG_ARCH_USE_BUILTIN_BSWAP=y
  693. CONFIG_USER_RETURN_NOTIFIER=y
  694. CONFIG_HAVE_IOREMAP_PROT=y
  695. CONFIG_HAVE_KPROBES=y
  696. CONFIG_HAVE_KRETPROBES=y
  697. CONFIG_HAVE_OPTPROBES=y
  698. CONFIG_HAVE_KPROBES_ON_FTRACE=y
  699. CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
  700. CONFIG_HAVE_NMI=y
  701. CONFIG_HAVE_ARCH_TRACEHOOK=y
  702. CONFIG_HAVE_DMA_CONTIGUOUS=y
  703. CONFIG_GENERIC_SMP_IDLE_THREAD=y
  704. CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
  705. CONFIG_ARCH_HAS_SET_MEMORY=y
  706. CONFIG_ARCH_HAS_SET_DIRECT_MAP=y
  707. CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
  708. CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
  709. CONFIG_HAVE_ASM_MODVERSIONS=y
  710. CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
  711. CONFIG_HAVE_RSEQ=y
  712. CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y
  713. CONFIG_HAVE_HW_BREAKPOINT=y
  714. CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
  715. CONFIG_HAVE_USER_RETURN_NOTIFIER=y
  716. CONFIG_HAVE_PERF_EVENTS_NMI=y
  717. CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y
  718. CONFIG_HAVE_PERF_REGS=y
  719. CONFIG_HAVE_PERF_USER_STACK_DUMP=y
  720. CONFIG_HAVE_ARCH_JUMP_LABEL=y
  721. CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y
  722. CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
  723. CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
  724. CONFIG_HAVE_CMPXCHG_LOCAL=y
  725. CONFIG_HAVE_CMPXCHG_DOUBLE=y
  726. CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
  727. CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
  728. CONFIG_HAVE_ARCH_SECCOMP=y
  729. CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
  730. CONFIG_SECCOMP=y
  731. CONFIG_SECCOMP_FILTER=y
  732. # CONFIG_SECCOMP_CACHE_DEBUG is not set
  733. CONFIG_HAVE_ARCH_STACKLEAK=y
  734. CONFIG_HAVE_STACKPROTECTOR=y
  735. # CONFIG_STACKPROTECTOR is not set
  736. CONFIG_LTO=y
  737. CONFIG_LTO_CLANG=y
  738. CONFIG_ARCH_SUPPORTS_LTO_CLANG=y
  739. CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y
  740. CONFIG_HAS_LTO_CLANG=y
  741. # CONFIG_LTO_NONE is not set
  742. CONFIG_LTO_CLANG_FULL=y
  743. # CONFIG_LTO_CLANG_THIN is not set
  744. CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
  745. CONFIG_HAVE_CONTEXT_TRACKING=y
  746. CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y
  747. CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
  748. CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
  749. CONFIG_HAVE_MOVE_PUD=y
  750. CONFIG_HAVE_MOVE_PMD=y
  751. CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
  752. CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
  753. CONFIG_HAVE_ARCH_PARENT_PMD_YOUNG=y
  754. CONFIG_HAVE_ARCH_HUGE_VMAP=y
  755. CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
  756. CONFIG_HAVE_ARCH_SOFT_DIRTY=y
  757. CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
  758. CONFIG_MODULES_USE_ELF_RELA=y
  759. CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
  760. CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y
  761. CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
  762. CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
  763. CONFIG_HAVE_EXIT_THREAD=y
  764. CONFIG_ARCH_MMAP_RND_BITS=28
  765. CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
  766. CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
  767. CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
  768. CONFIG_HAVE_STACK_VALIDATION=y
  769. CONFIG_HAVE_RELIABLE_STACKTRACE=y
  770. CONFIG_OLD_SIGSUSPEND3=y
  771. CONFIG_COMPAT_OLD_SIGACTION=y
  772. CONFIG_COMPAT_32BIT_TIME=y
  773. CONFIG_HAVE_ARCH_VMAP_STACK=y
  774. # CONFIG_VMAP_STACK is not set
  775. CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
  776. CONFIG_STRICT_KERNEL_RWX=y
  777. CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
  778. CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
  779. CONFIG_ARCH_USE_MEMREMAP_PROT=y
  780. CONFIG_LOCK_EVENT_COUNTS=y
  781. CONFIG_ARCH_HAS_MEM_ENCRYPT=y
  782. CONFIG_HAVE_STATIC_CALL=y
  783. CONFIG_HAVE_STATIC_CALL_INLINE=y
  784. CONFIG_HAVE_PREEMPT_DYNAMIC=y
  785. CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
  786. CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
  787. CONFIG_ARCH_HAS_ELFCORE_COMPAT=y
  788. #
  789. # GCOV-based kernel profiling
  790. #
  791. # CONFIG_GCOV_KERNEL is not set
  792. CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
  793. # end of GCOV-based kernel profiling
  794. CONFIG_HAVE_GCC_PLUGINS=y
  795. # end of General architecture-dependent options
  796. CONFIG_RT_MUTEXES=y
  797. CONFIG_BASE_SMALL=0
  798. # CONFIG_MODULES is not set
  799. CONFIG_MODULES_TREE_LOOKUP=y
  800. CONFIG_BLOCK=y
  801. CONFIG_BLK_RQ_ALLOC_TIME=y
  802. CONFIG_BLK_SCSI_REQUEST=y
  803. CONFIG_BLK_CGROUP_RWSTAT=y
  804. CONFIG_BLK_DEV_BSG=y
  805. CONFIG_BLK_DEV_BSGLIB=y
  806. CONFIG_BLK_DEV_INTEGRITY=y
  807. CONFIG_BLK_DEV_INTEGRITY_T10=y
  808. CONFIG_BLK_DEV_ZONED=y
  809. CONFIG_BLK_DEV_THROTTLING=y
  810. CONFIG_BLK_DEV_THROTTLING_LOW=y
  811. # CONFIG_BLK_CMDLINE_PARSER is not set
  812. CONFIG_BLK_WBT=y
  813. CONFIG_BLK_CGROUP_IOLATENCY=y
  814. CONFIG_BLK_CGROUP_IOCOST=y
  815. CONFIG_BLK_WBT_MQ=y
  816. CONFIG_BLK_DEBUG_FS=y
  817. CONFIG_BLK_DEBUG_FS_ZONED=y
  818. CONFIG_BLK_SED_OPAL=y
  819. CONFIG_BLK_INLINE_ENCRYPTION=y
  820. CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y
  821. #
  822. # Partition Types
  823. #
  824. CONFIG_PARTITION_ADVANCED=y
  825. # CONFIG_ACORN_PARTITION is not set
  826. CONFIG_AIX_PARTITION=y
  827. # CONFIG_OSF_PARTITION is not set
  828. # CONFIG_AMIGA_PARTITION is not set
  829. # CONFIG_ATARI_PARTITION is not set
  830. CONFIG_MAC_PARTITION=y
  831. CONFIG_MSDOS_PARTITION=y
  832. CONFIG_BSD_DISKLABEL=y
  833. CONFIG_MINIX_SUBPARTITION=y
  834. CONFIG_SOLARIS_X86_PARTITION=y
  835. # CONFIG_UNIXWARE_DISKLABEL is not set
  836. CONFIG_LDM_PARTITION=y
  837. # CONFIG_LDM_DEBUG is not set
  838. # CONFIG_SGI_PARTITION is not set
  839. # CONFIG_ULTRIX_PARTITION is not set
  840. # CONFIG_SUN_PARTITION is not set
  841. CONFIG_KARMA_PARTITION=y
  842. CONFIG_EFI_PARTITION=y
  843. # CONFIG_SYSV68_PARTITION is not set
  844. # CONFIG_CMDLINE_PARTITION is not set
  845. # end of Partition Types
  846. CONFIG_BLOCK_COMPAT=y
  847. CONFIG_BLK_MQ_PCI=y
  848. CONFIG_BLK_MQ_VIRTIO=y
  849. CONFIG_BLK_PM=y
  850. #
  851. # IO Schedulers
  852. #
  853. CONFIG_MQ_IOSCHED_DEADLINE=y
  854. CONFIG_MQ_IOSCHED_KYBER=y
  855. CONFIG_IOSCHED_BFQ=y
  856. CONFIG_BFQ_GROUP_IOSCHED=y
  857. # CONFIG_BFQ_CGROUP_DEBUG is not set
  858. # end of IO Schedulers
  859. CONFIG_PREEMPT_NOTIFIERS=y
  860. CONFIG_ASN1=y
  861. CONFIG_UNINLINE_SPIN_UNLOCK=y
  862. CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
  863. CONFIG_MUTEX_SPIN_ON_OWNER=y
  864. CONFIG_RWSEM_SPIN_ON_OWNER=y
  865. CONFIG_LOCK_SPIN_ON_OWNER=y
  866. CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
  867. CONFIG_QUEUED_SPINLOCKS=y
  868. CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
  869. CONFIG_QUEUED_RWLOCKS=y
  870. CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
  871. CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
  872. CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
  873. CONFIG_FREEZER=y
  874. #
  875. # Executable file formats
  876. #
  877. CONFIG_BINFMT_ELF=y
  878. CONFIG_COMPAT_BINFMT_ELF=y
  879. CONFIG_ELFCORE=y
  880. CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
  881. CONFIG_BINFMT_SCRIPT=y
  882. CONFIG_BINFMT_MISC=y
  883. CONFIG_COREDUMP=y
  884. # end of Executable file formats
  885. #
  886. # Memory Management options
  887. #
  888. CONFIG_SELECT_MEMORY_MODEL=y
  889. CONFIG_SPARSEMEM_MANUAL=y
  890. CONFIG_SPARSEMEM=y
  891. CONFIG_NEED_MULTIPLE_NODES=y
  892. CONFIG_SPARSEMEM_EXTREME=y
  893. CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
  894. CONFIG_SPARSEMEM_VMEMMAP=y
  895. CONFIG_HAVE_FAST_GUP=y
  896. CONFIG_NUMA_KEEP_MEMINFO=y
  897. CONFIG_MEMORY_ISOLATION=y
  898. CONFIG_HAVE_BOOTMEM_INFO_NODE=y
  899. CONFIG_MEMORY_HOTPLUG=y
  900. CONFIG_MEMORY_HOTPLUG_SPARSE=y
  901. CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y
  902. CONFIG_MEMORY_HOTREMOVE=y
  903. CONFIG_SPLIT_PTLOCK_CPUS=4
  904. CONFIG_MEMORY_BALLOON=y
  905. CONFIG_BALLOON_COMPACTION=y
  906. CONFIG_COMPACTION=y
  907. CONFIG_PAGE_REPORTING=y
  908. CONFIG_MIGRATION=y
  909. CONFIG_CONTIG_ALLOC=y
  910. CONFIG_PHYS_ADDR_T_64BIT=y
  911. CONFIG_BOUNCE=y
  912. CONFIG_VIRT_TO_BUS=y
  913. CONFIG_MMU_NOTIFIER=y
  914. CONFIG_KSM=y
  915. CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
  916. CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
  917. CONFIG_MEMORY_FAILURE=y
  918. # CONFIG_HWPOISON_INJECT is not set
  919. CONFIG_TRANSPARENT_HUGEPAGE=y
  920. # CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
  921. CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
  922. CONFIG_ARCH_WANTS_THP_SWAP=y
  923. CONFIG_CLEANCACHE=y
  924. CONFIG_CMA=y
  925. # CONFIG_CMA_DEBUG is not set
  926. CONFIG_CMA_DEBUGFS=y
  927. CONFIG_CMA_AREAS=7
  928. CONFIG_ZPOOL=y
  929. CONFIG_ZBUD=y
  930. CONFIG_Z3FOLD=y
  931. CONFIG_ZSMALLOC=y
  932. # CONFIG_ZSMALLOC_STAT is not set
  933. CONFIG_GENERIC_EARLY_IOREMAP=y
  934. # CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
  935. # CONFIG_IDLE_PAGE_TRACKING is not set
  936. CONFIG_ARCH_HAS_PTE_DEVMAP=y
  937. CONFIG_ZONE_DEVICE=y
  938. CONFIG_DEV_PAGEMAP_OPS=y
  939. CONFIG_HMM_MIRROR=y
  940. CONFIG_DEVICE_PRIVATE=y
  941. CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
  942. CONFIG_ARCH_HAS_PKEYS=y
  943. # CONFIG_PERCPU_STATS is not set
  944. # CONFIG_GUP_TEST is not set
  945. CONFIG_READ_ONLY_THP_FOR_FS=y
  946. CONFIG_ARCH_HAS_PTE_SPECIAL=y
  947. CONFIG_LRU_GEN=y
  948. CONFIG_NR_LRU_GENS=7
  949. CONFIG_LRU_GEN_ENABLED=y
  950. # end of Memory Management options
  951. CONFIG_NET=y
  952. CONFIG_COMPAT_NETLINK_MESSAGES=y
  953. CONFIG_NET_INGRESS=y
  954. CONFIG_SKB_EXTENSIONS=y
  955. #
  956. # Networking options
  957. #
  958. CONFIG_PACKET=y
  959. # CONFIG_PACKET_DIAG is not set
  960. CONFIG_UNIX=y
  961. CONFIG_UNIX_SCM=y
  962. # CONFIG_UNIX_DIAG is not set
  963. # CONFIG_TLS is not set
  964. CONFIG_XFRM=y
  965. CONFIG_XFRM_ALGO=y
  966. CONFIG_XFRM_USER=y
  967. # CONFIG_XFRM_USER_COMPAT is not set
  968. # CONFIG_XFRM_INTERFACE is not set
  969. CONFIG_XFRM_SUB_POLICY=y
  970. CONFIG_XFRM_MIGRATE=y
  971. CONFIG_XFRM_STATISTICS=y
  972. # CONFIG_NET_KEY is not set
  973. CONFIG_XDP_SOCKETS=y
  974. # CONFIG_XDP_SOCKETS_DIAG is not set
  975. CONFIG_INET=y
  976. CONFIG_IP_MULTICAST=y
  977. CONFIG_IP_ADVANCED_ROUTER=y
  978. CONFIG_IP_FIB_TRIE_STATS=y
  979. CONFIG_IP_MULTIPLE_TABLES=y
  980. CONFIG_IP_ROUTE_MULTIPATH=y
  981. CONFIG_IP_ROUTE_VERBOSE=y
  982. # CONFIG_IP_PNP is not set
  983. # CONFIG_NET_IPIP is not set
  984. # CONFIG_NET_IPGRE_DEMUX is not set
  985. CONFIG_IP_MROUTE_COMMON=y
  986. CONFIG_IP_MROUTE=y
  987. CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
  988. CONFIG_IP_PIMSM_V1=y
  989. CONFIG_IP_PIMSM_V2=y
  990. CONFIG_SYN_COOKIES=y
  991. # CONFIG_NET_IPVTI is not set
  992. # CONFIG_NET_FOU is not set
  993. # CONFIG_INET_AH is not set
  994. # CONFIG_INET_ESP is not set
  995. # CONFIG_INET_IPCOMP is not set
  996. # CONFIG_INET_DIAG is not set
  997. CONFIG_TCP_CONG_ADVANCED=y
  998. # CONFIG_TCP_CONG_BIC is not set
  999. CONFIG_TCP_CONG_CUBIC=y
  1000. # CONFIG_TCP_CONG_WESTWOOD is not set
  1001. # CONFIG_TCP_CONG_HTCP is not set
  1002. # CONFIG_TCP_CONG_HSTCP is not set
  1003. # CONFIG_TCP_CONG_HYBLA is not set
  1004. # CONFIG_TCP_CONG_VEGAS is not set
  1005. # CONFIG_TCP_CONG_NV is not set
  1006. # CONFIG_TCP_CONG_SCALABLE is not set
  1007. # CONFIG_TCP_CONG_LP is not set
  1008. # CONFIG_TCP_CONG_VENO is not set
  1009. # CONFIG_TCP_CONG_YEAH is not set
  1010. # CONFIG_TCP_CONG_ILLINOIS is not set
  1011. # CONFIG_TCP_CONG_DCTCP is not set
  1012. # CONFIG_TCP_CONG_CDG is not set
  1013. # CONFIG_TCP_CONG_BBR is not set
  1014. CONFIG_DEFAULT_CUBIC=y
  1015. # CONFIG_DEFAULT_RENO is not set
  1016. CONFIG_DEFAULT_TCP_CONG="cubic"
  1017. CONFIG_TCP_MD5SIG=y
  1018. CONFIG_IPV6=y
  1019. CONFIG_IPV6_ROUTER_PREF=y
  1020. CONFIG_IPV6_ROUTE_INFO=y
  1021. CONFIG_IPV6_OPTIMISTIC_DAD=y
  1022. # CONFIG_INET6_AH is not set
  1023. # CONFIG_INET6_ESP is not set
  1024. # CONFIG_INET6_IPCOMP is not set
  1025. # CONFIG_IPV6_MIP6 is not set
  1026. # CONFIG_IPV6_ILA is not set
  1027. # CONFIG_IPV6_VTI is not set
  1028. # CONFIG_IPV6_SIT is not set
  1029. # CONFIG_IPV6_TUNNEL is not set
  1030. CONFIG_IPV6_MULTIPLE_TABLES=y
  1031. CONFIG_IPV6_SUBTREES=y
  1032. CONFIG_IPV6_MROUTE=y
  1033. CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
  1034. CONFIG_IPV6_PIMSM_V2=y
  1035. CONFIG_IPV6_SEG6_LWTUNNEL=y
  1036. CONFIG_IPV6_SEG6_HMAC=y
  1037. CONFIG_IPV6_SEG6_BPF=y
  1038. CONFIG_IPV6_RPL_LWTUNNEL=y
  1039. CONFIG_MPTCP=y
  1040. CONFIG_MPTCP_IPV6=y
  1041. CONFIG_NETWORK_SECMARK=y
  1042. CONFIG_NET_PTP_CLASSIFY=y
  1043. CONFIG_NETWORK_PHY_TIMESTAMPING=y
  1044. CONFIG_NETFILTER=y
  1045. CONFIG_NETFILTER_ADVANCED=y
  1046. CONFIG_BRIDGE_NETFILTER=y
  1047. #
  1048. # Core Netfilter Configuration
  1049. #
  1050. CONFIG_NETFILTER_INGRESS=y
  1051. CONFIG_NETFILTER_NETLINK=y
  1052. CONFIG_NETFILTER_FAMILY_BRIDGE=y
  1053. CONFIG_NETFILTER_FAMILY_ARP=y
  1054. # CONFIG_NETFILTER_NETLINK_ACCT is not set
  1055. # CONFIG_NETFILTER_NETLINK_QUEUE is not set
  1056. # CONFIG_NETFILTER_NETLINK_LOG is not set
  1057. # CONFIG_NETFILTER_NETLINK_OSF is not set
  1058. CONFIG_NF_CONNTRACK=y
  1059. # CONFIG_NF_LOG_NETDEV is not set
  1060. CONFIG_NF_CONNTRACK_MARK=y
  1061. CONFIG_NF_CONNTRACK_SECMARK=y
  1062. CONFIG_NF_CONNTRACK_ZONES=y
  1063. CONFIG_NF_CONNTRACK_PROCFS=y
  1064. CONFIG_NF_CONNTRACK_EVENTS=y
  1065. CONFIG_NF_CONNTRACK_TIMEOUT=y
  1066. CONFIG_NF_CONNTRACK_TIMESTAMP=y
  1067. CONFIG_NF_CONNTRACK_LABELS=y
  1068. CONFIG_NF_CT_PROTO_DCCP=y
  1069. CONFIG_NF_CT_PROTO_SCTP=y
  1070. CONFIG_NF_CT_PROTO_UDPLITE=y
  1071. # CONFIG_NF_CONNTRACK_AMANDA is not set
  1072. # CONFIG_NF_CONNTRACK_FTP is not set
  1073. # CONFIG_NF_CONNTRACK_H323 is not set
  1074. # CONFIG_NF_CONNTRACK_IRC is not set
  1075. # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
  1076. # CONFIG_NF_CONNTRACK_SNMP is not set
  1077. # CONFIG_NF_CONNTRACK_PPTP is not set
  1078. # CONFIG_NF_CONNTRACK_SANE is not set
  1079. # CONFIG_NF_CONNTRACK_SIP is not set
  1080. # CONFIG_NF_CONNTRACK_TFTP is not set
  1081. CONFIG_NF_CT_NETLINK=y
  1082. # CONFIG_NF_CT_NETLINK_TIMEOUT is not set
  1083. CONFIG_NF_NAT=y
  1084. CONFIG_NF_NAT_MASQUERADE=y
  1085. CONFIG_NF_TABLES=y
  1086. CONFIG_NF_TABLES_INET=y
  1087. CONFIG_NF_TABLES_NETDEV=y
  1088. # CONFIG_NFT_NUMGEN is not set
  1089. # CONFIG_NFT_CT is not set
  1090. # CONFIG_NFT_COUNTER is not set
  1091. # CONFIG_NFT_CONNLIMIT is not set
  1092. # CONFIG_NFT_LOG is not set
  1093. # CONFIG_NFT_LIMIT is not set
  1094. # CONFIG_NFT_MASQ is not set
  1095. # CONFIG_NFT_REDIR is not set
  1096. # CONFIG_NFT_NAT is not set
  1097. # CONFIG_NFT_TUNNEL is not set
  1098. # CONFIG_NFT_OBJREF is not set
  1099. # CONFIG_NFT_QUOTA is not set
  1100. CONFIG_NFT_REJECT=y
  1101. CONFIG_NFT_REJECT_INET=y
  1102. # CONFIG_NFT_COMPAT is not set
  1103. # CONFIG_NFT_HASH is not set
  1104. # CONFIG_NFT_XFRM is not set
  1105. # CONFIG_NFT_SOCKET is not set
  1106. # CONFIG_NFT_OSF is not set
  1107. # CONFIG_NFT_TPROXY is not set
  1108. # CONFIG_NFT_SYNPROXY is not set
  1109. # CONFIG_NF_DUP_NETDEV is not set
  1110. # CONFIG_NFT_DUP_NETDEV is not set
  1111. # CONFIG_NFT_FWD_NETDEV is not set
  1112. # CONFIG_NFT_REJECT_NETDEV is not set
  1113. # CONFIG_NF_FLOW_TABLE is not set
  1114. CONFIG_NETFILTER_XTABLES=y
  1115. #
  1116. # Xtables combined modules
  1117. #
  1118. # CONFIG_NETFILTER_XT_MARK is not set
  1119. # CONFIG_NETFILTER_XT_CONNMARK is not set
  1120. #
  1121. # Xtables targets
  1122. #
  1123. CONFIG_NETFILTER_XT_TARGET_CHECKSUM=y
  1124. # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
  1125. # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
  1126. # CONFIG_NETFILTER_XT_TARGET_CONNSECMARK is not set
  1127. # CONFIG_NETFILTER_XT_TARGET_DSCP is not set
  1128. # CONFIG_NETFILTER_XT_TARGET_HL is not set
  1129. # CONFIG_NETFILTER_XT_TARGET_HMARK is not set
  1130. # CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set
  1131. # CONFIG_NETFILTER_XT_TARGET_LED is not set
  1132. # CONFIG_NETFILTER_XT_TARGET_LOG is not set
  1133. # CONFIG_NETFILTER_XT_TARGET_MARK is not set
  1134. CONFIG_NETFILTER_XT_NAT=y
  1135. # CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
  1136. # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
  1137. # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
  1138. # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
  1139. # CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
  1140. CONFIG_NETFILTER_XT_TARGET_MASQUERADE=y
  1141. # CONFIG_NETFILTER_XT_TARGET_TEE is not set
  1142. # CONFIG_NETFILTER_XT_TARGET_TPROXY is not set
  1143. # CONFIG_NETFILTER_XT_TARGET_SECMARK is not set
  1144. # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
  1145. # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set
  1146. #
  1147. # Xtables matches
  1148. #
  1149. CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=y
  1150. # CONFIG_NETFILTER_XT_MATCH_BPF is not set
  1151. # CONFIG_NETFILTER_XT_MATCH_CGROUP is not set
  1152. # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
  1153. # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
  1154. # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
  1155. # CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set
  1156. # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
  1157. # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
  1158. CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
  1159. # CONFIG_NETFILTER_XT_MATCH_CPU is not set
  1160. # CONFIG_NETFILTER_XT_MATCH_DCCP is not set
  1161. # CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
  1162. # CONFIG_NETFILTER_XT_MATCH_DSCP is not set
  1163. # CONFIG_NETFILTER_XT_MATCH_ECN is not set
  1164. # CONFIG_NETFILTER_XT_MATCH_ESP is not set
  1165. # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
  1166. # CONFIG_NETFILTER_XT_MATCH_HELPER is not set
  1167. # CONFIG_NETFILTER_XT_MATCH_HL is not set
  1168. # CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
  1169. # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
  1170. # CONFIG_NETFILTER_XT_MATCH_L2TP is not set
  1171. # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
  1172. # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
  1173. # CONFIG_NETFILTER_XT_MATCH_MAC is not set
  1174. # CONFIG_NETFILTER_XT_MATCH_MARK is not set
  1175. # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
  1176. # CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
  1177. # CONFIG_NETFILTER_XT_MATCH_OSF is not set
  1178. # CONFIG_NETFILTER_XT_MATCH_OWNER is not set
  1179. # CONFIG_NETFILTER_XT_MATCH_POLICY is not set
  1180. # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
  1181. # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
  1182. # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
  1183. # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
  1184. # CONFIG_NETFILTER_XT_MATCH_REALM is not set
  1185. # CONFIG_NETFILTER_XT_MATCH_RECENT is not set
  1186. # CONFIG_NETFILTER_XT_MATCH_SCTP is not set
  1187. # CONFIG_NETFILTER_XT_MATCH_SOCKET is not set
  1188. # CONFIG_NETFILTER_XT_MATCH_STATE is not set
  1189. # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
  1190. # CONFIG_NETFILTER_XT_MATCH_STRING is not set
  1191. # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
  1192. # CONFIG_NETFILTER_XT_MATCH_TIME is not set
  1193. # CONFIG_NETFILTER_XT_MATCH_U32 is not set
  1194. # end of Core Netfilter Configuration
  1195. # CONFIG_IP_SET is not set
  1196. # CONFIG_IP_VS is not set
  1197. #
  1198. # IP: Netfilter Configuration
  1199. #
  1200. CONFIG_NF_DEFRAG_IPV4=y
  1201. # CONFIG_NF_SOCKET_IPV4 is not set
  1202. # CONFIG_NF_TPROXY_IPV4 is not set
  1203. CONFIG_NF_TABLES_IPV4=y
  1204. CONFIG_NFT_REJECT_IPV4=y
  1205. # CONFIG_NFT_DUP_IPV4 is not set
  1206. # CONFIG_NFT_FIB_IPV4 is not set
  1207. CONFIG_NF_TABLES_ARP=y
  1208. # CONFIG_NF_DUP_IPV4 is not set
  1209. # CONFIG_NF_LOG_ARP is not set
  1210. # CONFIG_NF_LOG_IPV4 is not set
  1211. CONFIG_NF_REJECT_IPV4=y
  1212. CONFIG_IP_NF_IPTABLES=y
  1213. # CONFIG_IP_NF_MATCH_AH is not set
  1214. # CONFIG_IP_NF_MATCH_ECN is not set
  1215. # CONFIG_IP_NF_MATCH_RPFILTER is not set
  1216. # CONFIG_IP_NF_MATCH_TTL is not set
  1217. CONFIG_IP_NF_FILTER=y
  1218. CONFIG_IP_NF_TARGET_REJECT=y
  1219. # CONFIG_IP_NF_TARGET_SYNPROXY is not set
  1220. CONFIG_IP_NF_NAT=y
  1221. # CONFIG_IP_NF_TARGET_MASQUERADE is not set
  1222. # CONFIG_IP_NF_TARGET_NETMAP is not set
  1223. # CONFIG_IP_NF_TARGET_REDIRECT is not set
  1224. CONFIG_IP_NF_MANGLE=y
  1225. # CONFIG_IP_NF_TARGET_CLUSTERIP is not set
  1226. # CONFIG_IP_NF_TARGET_ECN is not set
  1227. # CONFIG_IP_NF_TARGET_TTL is not set
  1228. # CONFIG_IP_NF_RAW is not set
  1229. # CONFIG_IP_NF_ARPTABLES is not set
  1230. # end of IP: Netfilter Configuration
  1231. #
  1232. # IPv6: Netfilter Configuration
  1233. #
  1234. # CONFIG_NF_SOCKET_IPV6 is not set
  1235. # CONFIG_NF_TPROXY_IPV6 is not set
  1236. CONFIG_NF_TABLES_IPV6=y
  1237. CONFIG_NFT_REJECT_IPV6=y
  1238. # CONFIG_NFT_DUP_IPV6 is not set
  1239. # CONFIG_NFT_FIB_IPV6 is not set
  1240. # CONFIG_NF_DUP_IPV6 is not set
  1241. CONFIG_NF_REJECT_IPV6=y
  1242. # CONFIG_NF_LOG_IPV6 is not set
  1243. CONFIG_IP6_NF_IPTABLES=y
  1244. # CONFIG_IP6_NF_MATCH_AH is not set
  1245. # CONFIG_IP6_NF_MATCH_EUI64 is not set
  1246. # CONFIG_IP6_NF_MATCH_FRAG is not set
  1247. # CONFIG_IP6_NF_MATCH_OPTS is not set
  1248. # CONFIG_IP6_NF_MATCH_HL is not set
  1249. # CONFIG_IP6_NF_MATCH_IPV6HEADER is not set
  1250. # CONFIG_IP6_NF_MATCH_MH is not set
  1251. # CONFIG_IP6_NF_MATCH_RPFILTER is not set
  1252. # CONFIG_IP6_NF_MATCH_RT is not set
  1253. # CONFIG_IP6_NF_MATCH_SRH is not set
  1254. # CONFIG_IP6_NF_TARGET_HL is not set
  1255. CONFIG_IP6_NF_FILTER=y
  1256. # CONFIG_IP6_NF_TARGET_REJECT is not set
  1257. # CONFIG_IP6_NF_TARGET_SYNPROXY is not set
  1258. CONFIG_IP6_NF_MANGLE=y
  1259. # CONFIG_IP6_NF_RAW is not set
  1260. CONFIG_IP6_NF_NAT=y
  1261. # CONFIG_IP6_NF_TARGET_MASQUERADE is not set
  1262. # CONFIG_IP6_NF_TARGET_NPT is not set
  1263. # end of IPv6: Netfilter Configuration
  1264. CONFIG_NF_DEFRAG_IPV6=y
  1265. # CONFIG_NF_TABLES_BRIDGE is not set
  1266. # CONFIG_NF_CONNTRACK_BRIDGE is not set
  1267. # CONFIG_BRIDGE_NF_EBTABLES is not set
  1268. # CONFIG_BPFILTER is not set
  1269. # CONFIG_IP_DCCP is not set
  1270. # CONFIG_IP_SCTP is not set
  1271. # CONFIG_RDS is not set
  1272. # CONFIG_TIPC is not set
  1273. # CONFIG_ATM is not set
  1274. # CONFIG_L2TP is not set
  1275. CONFIG_STP=y
  1276. CONFIG_BRIDGE=y
  1277. CONFIG_BRIDGE_IGMP_SNOOPING=y
  1278. CONFIG_BRIDGE_MRP=y
  1279. CONFIG_BRIDGE_CFM=y
  1280. CONFIG_HAVE_NET_DSA=y
  1281. # CONFIG_NET_DSA is not set
  1282. # CONFIG_VLAN_8021Q is not set
  1283. # CONFIG_DECNET is not set
  1284. CONFIG_LLC=y
  1285. # CONFIG_LLC2 is not set
  1286. # CONFIG_ATALK is not set
  1287. # CONFIG_X25 is not set
  1288. # CONFIG_LAPB is not set
  1289. # CONFIG_PHONET is not set
  1290. # CONFIG_6LOWPAN is not set
  1291. # CONFIG_IEEE802154 is not set
  1292. CONFIG_NET_SCHED=y
  1293. #
  1294. # Queueing/Scheduling
  1295. #
  1296. # CONFIG_NET_SCH_CBQ is not set
  1297. # CONFIG_NET_SCH_HTB is not set
  1298. # CONFIG_NET_SCH_HFSC is not set
  1299. # CONFIG_NET_SCH_PRIO is not set
  1300. # CONFIG_NET_SCH_MULTIQ is not set
  1301. # CONFIG_NET_SCH_RED is not set
  1302. # CONFIG_NET_SCH_SFB is not set
  1303. # CONFIG_NET_SCH_SFQ is not set
  1304. # CONFIG_NET_SCH_TEQL is not set
  1305. # CONFIG_NET_SCH_TBF is not set
  1306. # CONFIG_NET_SCH_CBS is not set
  1307. # CONFIG_NET_SCH_ETF is not set
  1308. # CONFIG_NET_SCH_TAPRIO is not set
  1309. # CONFIG_NET_SCH_GRED is not set
  1310. # CONFIG_NET_SCH_DSMARK is not set
  1311. # CONFIG_NET_SCH_NETEM is not set
  1312. # CONFIG_NET_SCH_DRR is not set
  1313. # CONFIG_NET_SCH_MQPRIO is not set
  1314. # CONFIG_NET_SCH_SKBPRIO is not set
  1315. # CONFIG_NET_SCH_CHOKE is not set
  1316. # CONFIG_NET_SCH_QFQ is not set
  1317. # CONFIG_NET_SCH_CODEL is not set
  1318. CONFIG_NET_SCH_FQ_CODEL=y
  1319. # CONFIG_NET_SCH_CAKE is not set
  1320. # CONFIG_NET_SCH_FQ is not set
  1321. # CONFIG_NET_SCH_HHF is not set
  1322. # CONFIG_NET_SCH_PIE is not set
  1323. # CONFIG_NET_SCH_INGRESS is not set
  1324. # CONFIG_NET_SCH_PLUG is not set
  1325. # CONFIG_NET_SCH_ETS is not set
  1326. CONFIG_NET_SCH_DEFAULT=y
  1327. CONFIG_DEFAULT_FQ_CODEL=y
  1328. # CONFIG_DEFAULT_PFIFO_FAST is not set
  1329. CONFIG_DEFAULT_NET_SCH="fq_codel"
  1330. #
  1331. # Classification
  1332. #
  1333. CONFIG_NET_CLS=y
  1334. # CONFIG_NET_CLS_BASIC is not set
  1335. # CONFIG_NET_CLS_TCINDEX is not set
  1336. # CONFIG_NET_CLS_ROUTE4 is not set
  1337. # CONFIG_NET_CLS_FW is not set
  1338. # CONFIG_NET_CLS_U32 is not set
  1339. # CONFIG_NET_CLS_RSVP is not set
  1340. # CONFIG_NET_CLS_RSVP6 is not set
  1341. # CONFIG_NET_CLS_FLOW is not set
  1342. # CONFIG_NET_CLS_CGROUP is not set
  1343. # CONFIG_NET_CLS_BPF is not set
  1344. # CONFIG_NET_CLS_FLOWER is not set
  1345. # CONFIG_NET_CLS_MATCHALL is not set
  1346. CONFIG_NET_EMATCH=y
  1347. CONFIG_NET_EMATCH_STACK=32
  1348. # CONFIG_NET_EMATCH_CMP is not set
  1349. # CONFIG_NET_EMATCH_NBYTE is not set
  1350. # CONFIG_NET_EMATCH_U32 is not set
  1351. # CONFIG_NET_EMATCH_META is not set
  1352. # CONFIG_NET_EMATCH_TEXT is not set
  1353. # CONFIG_NET_EMATCH_IPT is not set
  1354. CONFIG_NET_CLS_ACT=y
  1355. # CONFIG_NET_ACT_POLICE is not set
  1356. # CONFIG_NET_ACT_GACT is not set
  1357. # CONFIG_NET_ACT_MIRRED is not set
  1358. # CONFIG_NET_ACT_SAMPLE is not set
  1359. # CONFIG_NET_ACT_IPT is not set
  1360. # CONFIG_NET_ACT_NAT is not set
  1361. # CONFIG_NET_ACT_PEDIT is not set
  1362. # CONFIG_NET_ACT_SIMP is not set
  1363. # CONFIG_NET_ACT_SKBEDIT is not set
  1364. # CONFIG_NET_ACT_CSUM is not set
  1365. # CONFIG_NET_ACT_MPLS is not set
  1366. # CONFIG_NET_ACT_VLAN is not set
  1367. # CONFIG_NET_ACT_BPF is not set
  1368. # CONFIG_NET_ACT_CONNMARK is not set
  1369. # CONFIG_NET_ACT_CTINFO is not set
  1370. # CONFIG_NET_ACT_SKBMOD is not set
  1371. # CONFIG_NET_ACT_IFE is not set
  1372. # CONFIG_NET_ACT_TUNNEL_KEY is not set
  1373. # CONFIG_NET_ACT_GATE is not set
  1374. CONFIG_NET_TC_SKB_EXT=y
  1375. CONFIG_NET_SCH_FIFO=y
  1376. CONFIG_DCB=y
  1377. CONFIG_DNS_RESOLVER=y
  1378. # CONFIG_BATMAN_ADV is not set
  1379. # CONFIG_OPENVSWITCH is not set
  1380. # CONFIG_VSOCKETS is not set
  1381. # CONFIG_NETLINK_DIAG is not set
  1382. CONFIG_MPLS=y
  1383. # CONFIG_NET_MPLS_GSO is not set
  1384. # CONFIG_MPLS_ROUTING is not set
  1385. # CONFIG_NET_NSH is not set
  1386. # CONFIG_HSR is not set
  1387. CONFIG_NET_SWITCHDEV=y
  1388. CONFIG_NET_L3_MASTER_DEV=y
  1389. # CONFIG_QRTR is not set
  1390. CONFIG_NET_NCSI=y
  1391. CONFIG_NCSI_OEM_CMD_GET_MAC=y
  1392. CONFIG_RPS=y
  1393. CONFIG_RFS_ACCEL=y
  1394. CONFIG_SOCK_RX_QUEUE_MAPPING=y
  1395. CONFIG_XPS=y
  1396. CONFIG_CGROUP_NET_PRIO=y
  1397. CONFIG_CGROUP_NET_CLASSID=y
  1398. CONFIG_NET_RX_BUSY_POLL=y
  1399. CONFIG_BQL=y
  1400. CONFIG_BPF_STREAM_PARSER=y
  1401. CONFIG_NET_FLOW_LIMIT=y
  1402. #
  1403. # Network testing
  1404. #
  1405. # CONFIG_NET_PKTGEN is not set
  1406. # end of Network testing
  1407. # end of Networking options
  1408. CONFIG_HAMRADIO=y
  1409. #
  1410. # Packet Radio protocols
  1411. #
  1412. # CONFIG_AX25 is not set
  1413. # CONFIG_CAN is not set
  1414. CONFIG_BT=y
  1415. CONFIG_BT_BREDR=y
  1416. CONFIG_BT_RFCOMM=y
  1417. CONFIG_BT_RFCOMM_TTY=y
  1418. CONFIG_BT_BNEP=y
  1419. CONFIG_BT_BNEP_MC_FILTER=y
  1420. CONFIG_BT_BNEP_PROTO_FILTER=y
  1421. # CONFIG_BT_CMTP is not set
  1422. # CONFIG_BT_HIDP is not set
  1423. CONFIG_BT_HS=y
  1424. CONFIG_BT_LE=y
  1425. CONFIG_BT_LEDS=y
  1426. CONFIG_BT_MSFTEXT=y
  1427. CONFIG_BT_DEBUGFS=y
  1428. # CONFIG_BT_SELFTEST is not set
  1429. #
  1430. # Bluetooth device drivers
  1431. #
  1432. CONFIG_BT_INTEL=y
  1433. CONFIG_BT_BCM=y
  1434. CONFIG_BT_RTL=y
  1435. CONFIG_BT_HCIBTUSB=y
  1436. CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y
  1437. CONFIG_BT_HCIBTUSB_BCM=y
  1438. CONFIG_BT_HCIBTUSB_MTK=y
  1439. CONFIG_BT_HCIBTUSB_RTL=y
  1440. # CONFIG_BT_HCIUART is not set
  1441. # CONFIG_BT_HCIBCM203X is not set
  1442. # CONFIG_BT_HCIBPA10X is not set
  1443. # CONFIG_BT_HCIBFUSB is not set
  1444. # CONFIG_BT_HCIVHCI is not set
  1445. # CONFIG_BT_MRVL is not set
  1446. # CONFIG_BT_ATH3K is not set
  1447. # CONFIG_BT_MTKUART is not set
  1448. # end of Bluetooth device drivers
  1449. # CONFIG_AF_RXRPC is not set
  1450. # CONFIG_AF_KCM is not set
  1451. CONFIG_STREAM_PARSER=y
  1452. CONFIG_FIB_RULES=y
  1453. CONFIG_WIRELESS=y
  1454. CONFIG_WEXT_CORE=y
  1455. CONFIG_WEXT_PROC=y
  1456. CONFIG_CFG80211=y
  1457. # CONFIG_NL80211_TESTMODE is not set
  1458. # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
  1459. # CONFIG_CFG80211_CERTIFICATION_ONUS is not set
  1460. CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
  1461. CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
  1462. CONFIG_CFG80211_DEFAULT_PS=y
  1463. CONFIG_CFG80211_DEBUGFS=y
  1464. CONFIG_CFG80211_CRDA_SUPPORT=y
  1465. CONFIG_CFG80211_WEXT=y
  1466. CONFIG_MAC80211=y
  1467. CONFIG_MAC80211_HAS_RC=y
  1468. CONFIG_MAC80211_RC_MINSTREL=y
  1469. CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
  1470. CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
  1471. CONFIG_MAC80211_MESH=y
  1472. CONFIG_MAC80211_LEDS=y
  1473. CONFIG_MAC80211_DEBUGFS=y
  1474. # CONFIG_MAC80211_MESSAGE_TRACING is not set
  1475. # CONFIG_MAC80211_DEBUG_MENU is not set
  1476. CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
  1477. CONFIG_RFKILL=y
  1478. CONFIG_RFKILL_LEDS=y
  1479. CONFIG_RFKILL_INPUT=y
  1480. # CONFIG_RFKILL_GPIO is not set
  1481. # CONFIG_NET_9P is not set
  1482. # CONFIG_CAIF is not set
  1483. # CONFIG_CEPH_LIB is not set
  1484. # CONFIG_NFC is not set
  1485. # CONFIG_PSAMPLE is not set
  1486. # CONFIG_NET_IFE is not set
  1487. CONFIG_LWTUNNEL=y
  1488. CONFIG_LWTUNNEL_BPF=y
  1489. CONFIG_DST_CACHE=y
  1490. CONFIG_GRO_CELLS=y
  1491. CONFIG_NET_SOCK_MSG=y
  1492. CONFIG_FAILOVER=y
  1493. CONFIG_ETHTOOL_NETLINK=y
  1494. CONFIG_HAVE_EBPF_JIT=y
  1495. #
  1496. # Device Drivers
  1497. #
  1498. CONFIG_HAVE_EISA=y
  1499. # CONFIG_EISA is not set
  1500. CONFIG_HAVE_PCI=y
  1501. CONFIG_PCI=y
  1502. CONFIG_PCI_DOMAINS=y
  1503. CONFIG_PCIEPORTBUS=y
  1504. CONFIG_HOTPLUG_PCI_PCIE=y
  1505. CONFIG_PCIEAER=y
  1506. # CONFIG_PCIEAER_INJECT is not set
  1507. CONFIG_PCIE_ECRC=y
  1508. CONFIG_PCIEASPM=y
  1509. CONFIG_PCIEASPM_DEFAULT=y
  1510. # CONFIG_PCIEASPM_POWERSAVE is not set
  1511. # CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
  1512. # CONFIG_PCIEASPM_PERFORMANCE is not set
  1513. CONFIG_PCIE_PME=y
  1514. CONFIG_PCIE_DPC=y
  1515. CONFIG_PCIE_PTM=y
  1516. CONFIG_PCIE_EDR=y
  1517. CONFIG_PCI_MSI=y
  1518. CONFIG_PCI_MSI_IRQ_DOMAIN=y
  1519. CONFIG_PCI_QUIRKS=y
  1520. # CONFIG_PCI_DEBUG is not set
  1521. # CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
  1522. CONFIG_PCI_STUB=y
  1523. # CONFIG_PCI_PF_STUB is not set
  1524. CONFIG_PCI_ATS=y
  1525. CONFIG_PCI_LOCKLESS_CONFIG=y
  1526. CONFIG_PCI_IOV=y
  1527. CONFIG_PCI_PRI=y
  1528. CONFIG_PCI_PASID=y
  1529. CONFIG_PCI_P2PDMA=y
  1530. CONFIG_PCI_LABEL=y
  1531. # CONFIG_PCIE_BUS_TUNE_OFF is not set
  1532. # CONFIG_PCIE_BUS_DEFAULT is not set
  1533. # CONFIG_PCIE_BUS_SAFE is not set
  1534. CONFIG_PCIE_BUS_PERFORMANCE=y
  1535. # CONFIG_PCIE_BUS_PEER2PEER is not set
  1536. CONFIG_HOTPLUG_PCI=y
  1537. CONFIG_HOTPLUG_PCI_ACPI=y
  1538. # CONFIG_HOTPLUG_PCI_ACPI_IBM is not set
  1539. CONFIG_HOTPLUG_PCI_CPCI=y
  1540. # CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set
  1541. # CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set
  1542. CONFIG_HOTPLUG_PCI_SHPC=y
  1543. #
  1544. # PCI controller drivers
  1545. #
  1546. # CONFIG_VMD is not set
  1547. #
  1548. # DesignWare PCI Core Support
  1549. #
  1550. CONFIG_PCIE_DW=y
  1551. CONFIG_PCIE_DW_HOST=y
  1552. CONFIG_PCIE_DW_PLAT=y
  1553. CONFIG_PCIE_DW_PLAT_HOST=y
  1554. CONFIG_PCI_MESON=y
  1555. # end of DesignWare PCI Core Support
  1556. #
  1557. # Mobiveil PCIe Core Support
  1558. #
  1559. # end of Mobiveil PCIe Core Support
  1560. #
  1561. # Cadence PCIe controllers support
  1562. #
  1563. # end of Cadence PCIe controllers support
  1564. # end of PCI controller drivers
  1565. #
  1566. # PCI Endpoint
  1567. #
  1568. # CONFIG_PCI_ENDPOINT is not set
  1569. # end of PCI Endpoint
  1570. #
  1571. # PCI switch controller drivers
  1572. #
  1573. # CONFIG_PCI_SW_SWITCHTEC is not set
  1574. # end of PCI switch controller drivers
  1575. # CONFIG_CXL_BUS is not set
  1576. # CONFIG_PCCARD is not set
  1577. # CONFIG_RAPIDIO is not set
  1578. #
  1579. # Generic Driver Options
  1580. #
  1581. # CONFIG_UEVENT_HELPER is not set
  1582. CONFIG_DEVTMPFS=y
  1583. CONFIG_DEVTMPFS_MOUNT=y
  1584. CONFIG_STANDALONE=y
  1585. CONFIG_PREVENT_FIRMWARE_BUILD=y
  1586. #
  1587. # Firmware loader
  1588. #
  1589. CONFIG_FW_LOADER=y
  1590. CONFIG_FW_LOADER_PAGED_BUF=y
  1591. CONFIG_EXTRA_FIRMWARE="amdgpu/polaris10_mc.bin amdgpu/polaris10_pfp_2.bin amdgpu/polaris10_me_2.bin amdgpu/polaris10_ce_2.bin amdgpu/polaris10_rlc.bin amdgpu/polaris10_mec_2.bin amdgpu/polaris10_mec2_2.bin amdgpu/polaris10_sdma.bin amdgpu/polaris10_sdma1.bin amdgpu/polaris10_uvd.bin amdgpu/polaris10_vce.bin amdgpu/polaris10_k_smc.bin ath10k/QCA6174/hw3.0/firmware-6.bin ath10k/QCA6174/hw3.0/board-2.bin amd-ucode/microcode_amd_fam17h.bin wil6210.fw wil6210.brd wil6210.fw wil6210.brd"
  1592. CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"
  1593. # CONFIG_FW_LOADER_USER_HELPER is not set
  1594. CONFIG_FW_LOADER_COMPRESS=y
  1595. # end of Firmware loader
  1596. CONFIG_WANT_DEV_COREDUMP=y
  1597. CONFIG_ALLOW_DEV_COREDUMP=y
  1598. CONFIG_DEV_COREDUMP=y
  1599. # CONFIG_DEBUG_DRIVER is not set
  1600. # CONFIG_DEBUG_DEVRES is not set
  1601. # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
  1602. CONFIG_HMEM_REPORTING=y
  1603. CONFIG_GENERIC_CPU_AUTOPROBE=y
  1604. CONFIG_GENERIC_CPU_VULNERABILITIES=y
  1605. CONFIG_REGMAP=y
  1606. CONFIG_REGMAP_I2C=y
  1607. CONFIG_REGMAP_SPI=y
  1608. CONFIG_REGMAP_MMIO=y
  1609. CONFIG_REGMAP_IRQ=y
  1610. CONFIG_DMA_SHARED_BUFFER=y
  1611. # CONFIG_DMA_FENCE_TRACE is not set
  1612. # end of Generic Driver Options
  1613. #
  1614. # Bus devices
  1615. #
  1616. # CONFIG_MHI_BUS is not set
  1617. # end of Bus devices
  1618. CONFIG_CONNECTOR=y
  1619. CONFIG_PROC_EVENTS=y
  1620. # CONFIG_GNSS is not set
  1621. # CONFIG_MTD is not set
  1622. # CONFIG_OF is not set
  1623. CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
  1624. # CONFIG_PARPORT is not set
  1625. CONFIG_PNP=y
  1626. CONFIG_PNP_DEBUG_MESSAGES=y
  1627. #
  1628. # Protocols
  1629. #
  1630. CONFIG_PNPACPI=y
  1631. CONFIG_BLK_DEV=y
  1632. # CONFIG_BLK_DEV_NULL_BLK is not set
  1633. # CONFIG_BLK_DEV_FD is not set
  1634. CONFIG_CDROM=y
  1635. # CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
  1636. # CONFIG_ZRAM is not set
  1637. # CONFIG_BLK_DEV_UMEM is not set
  1638. CONFIG_BLK_DEV_LOOP=y
  1639. CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
  1640. # CONFIG_BLK_DEV_CRYPTOLOOP is not set
  1641. # CONFIG_BLK_DEV_DRBD is not set
  1642. # CONFIG_BLK_DEV_NBD is not set
  1643. # CONFIG_BLK_DEV_SX8 is not set
  1644. # CONFIG_BLK_DEV_RAM is not set
  1645. # CONFIG_CDROM_PKTCDVD is not set
  1646. # CONFIG_ATA_OVER_ETH is not set
  1647. CONFIG_VIRTIO_BLK=y
  1648. # CONFIG_BLK_DEV_RBD is not set
  1649. # CONFIG_BLK_DEV_RSXX is not set
  1650. #
  1651. # NVME Support
  1652. #
  1653. CONFIG_NVME_CORE=y
  1654. CONFIG_BLK_DEV_NVME=y
  1655. CONFIG_NVME_MULTIPATH=y
  1656. CONFIG_NVME_HWMON=y
  1657. # CONFIG_NVME_FC is not set
  1658. # CONFIG_NVME_TCP is not set
  1659. # CONFIG_NVME_TARGET is not set
  1660. # end of NVME Support
  1661. #
  1662. # Misc devices
  1663. #
  1664. # CONFIG_AD525X_DPOT is not set
  1665. # CONFIG_DUMMY_IRQ is not set
  1666. # CONFIG_IBM_ASM is not set
  1667. # CONFIG_PHANTOM is not set
  1668. # CONFIG_TIFM_CORE is not set
  1669. # CONFIG_ICS932S401 is not set
  1670. # CONFIG_ENCLOSURE_SERVICES is not set
  1671. # CONFIG_HP_ILO is not set
  1672. # CONFIG_APDS9802ALS is not set
  1673. # CONFIG_ISL29003 is not set
  1674. # CONFIG_ISL29020 is not set
  1675. # CONFIG_SENSORS_TSL2550 is not set
  1676. # CONFIG_SENSORS_BH1770 is not set
  1677. # CONFIG_SENSORS_APDS990X is not set
  1678. # CONFIG_HMC6352 is not set
  1679. # CONFIG_DS1682 is not set
  1680. # CONFIG_LATTICE_ECP3_CONFIG is not set
  1681. # CONFIG_SRAM is not set
  1682. # CONFIG_PCI_ENDPOINT_TEST is not set
  1683. # CONFIG_XILINX_SDFEC is not set
  1684. # CONFIG_PVPANIC is not set
  1685. # CONFIG_C2PORT is not set
  1686. #
  1687. # EEPROM support
  1688. #
  1689. # CONFIG_EEPROM_AT24 is not set
  1690. # CONFIG_EEPROM_AT25 is not set
  1691. # CONFIG_EEPROM_LEGACY is not set
  1692. # CONFIG_EEPROM_MAX6875 is not set
  1693. # CONFIG_EEPROM_93CX6 is not set
  1694. # CONFIG_EEPROM_93XX46 is not set
  1695. # CONFIG_EEPROM_IDT_89HPESX is not set
  1696. # CONFIG_EEPROM_EE1004 is not set
  1697. # end of EEPROM support
  1698. # CONFIG_CB710_CORE is not set
  1699. #
  1700. # Texas Instruments shared transport line discipline
  1701. #
  1702. # CONFIG_TI_ST is not set
  1703. # end of Texas Instruments shared transport line discipline
  1704. # CONFIG_SENSORS_LIS3_I2C is not set
  1705. # CONFIG_ALTERA_STAPL is not set
  1706. # CONFIG_INTEL_MEI is not set
  1707. # CONFIG_INTEL_MEI_ME is not set
  1708. # CONFIG_INTEL_MEI_TXE is not set
  1709. # CONFIG_VMWARE_VMCI is not set
  1710. # CONFIG_GENWQE is not set
  1711. # CONFIG_ECHO is not set
  1712. # CONFIG_BCM_VK is not set
  1713. # CONFIG_MISC_ALCOR_PCI is not set
  1714. # CONFIG_MISC_RTSX_PCI is not set
  1715. # CONFIG_MISC_RTSX_USB is not set
  1716. # CONFIG_HABANA_AI is not set
  1717. # CONFIG_UACCE is not set
  1718. # end of Misc devices
  1719. CONFIG_HAVE_IDE=y
  1720. # CONFIG_IDE is not set
  1721. #
  1722. # SCSI device support
  1723. #
  1724. CONFIG_SCSI_MOD=y
  1725. # CONFIG_RAID_ATTRS is not set
  1726. CONFIG_SCSI=y
  1727. CONFIG_SCSI_DMA=y
  1728. CONFIG_SCSI_PROC_FS=y
  1729. #
  1730. # SCSI support type (disk, tape, CD-ROM)
  1731. #
  1732. CONFIG_BLK_DEV_SD=y
  1733. # CONFIG_CHR_DEV_ST is not set
  1734. CONFIG_BLK_DEV_SR=y
  1735. CONFIG_CHR_DEV_SG=y
  1736. # CONFIG_CHR_DEV_SCH is not set
  1737. CONFIG_SCSI_CONSTANTS=y
  1738. CONFIG_SCSI_LOGGING=y
  1739. CONFIG_SCSI_SCAN_ASYNC=y
  1740. #
  1741. # SCSI Transports
  1742. #
  1743. # CONFIG_SCSI_SPI_ATTRS is not set
  1744. # CONFIG_SCSI_FC_ATTRS is not set
  1745. # CONFIG_SCSI_ISCSI_ATTRS is not set
  1746. # CONFIG_SCSI_SAS_ATTRS is not set
  1747. # CONFIG_SCSI_SAS_LIBSAS is not set
  1748. # CONFIG_SCSI_SRP_ATTRS is not set
  1749. # end of SCSI Transports
  1750. CONFIG_SCSI_LOWLEVEL=y
  1751. # CONFIG_ISCSI_TCP is not set
  1752. # CONFIG_ISCSI_BOOT_SYSFS is not set
  1753. # CONFIG_SCSI_CXGB3_ISCSI is not set
  1754. # CONFIG_SCSI_CXGB4_ISCSI is not set
  1755. # CONFIG_SCSI_BNX2_ISCSI is not set
  1756. # CONFIG_BE2ISCSI is not set
  1757. # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
  1758. # CONFIG_SCSI_HPSA is not set
  1759. # CONFIG_SCSI_3W_9XXX is not set
  1760. # CONFIG_SCSI_3W_SAS is not set
  1761. # CONFIG_SCSI_ACARD is not set
  1762. # CONFIG_SCSI_AACRAID is not set
  1763. # CONFIG_SCSI_AIC7XXX is not set
  1764. # CONFIG_SCSI_AIC79XX is not set
  1765. # CONFIG_SCSI_AIC94XX is not set
  1766. # CONFIG_SCSI_MVSAS is not set
  1767. # CONFIG_SCSI_MVUMI is not set
  1768. # CONFIG_SCSI_DPT_I2O is not set
  1769. # CONFIG_SCSI_ADVANSYS is not set
  1770. # CONFIG_SCSI_ARCMSR is not set
  1771. # CONFIG_SCSI_ESAS2R is not set
  1772. CONFIG_MEGARAID_NEWGEN=y
  1773. # CONFIG_MEGARAID_MM is not set
  1774. # CONFIG_MEGARAID_LEGACY is not set
  1775. # CONFIG_MEGARAID_SAS is not set
  1776. # CONFIG_SCSI_MPT3SAS is not set
  1777. # CONFIG_SCSI_MPT2SAS is not set
  1778. # CONFIG_SCSI_SMARTPQI is not set
  1779. # CONFIG_SCSI_UFSHCD is not set
  1780. # CONFIG_SCSI_HPTIOP is not set
  1781. # CONFIG_SCSI_BUSLOGIC is not set
  1782. # CONFIG_SCSI_MYRB is not set
  1783. # CONFIG_SCSI_MYRS is not set
  1784. # CONFIG_VMWARE_PVSCSI is not set
  1785. # CONFIG_SCSI_SNIC is not set
  1786. # CONFIG_SCSI_DMX3191D is not set
  1787. # CONFIG_SCSI_FDOMAIN_PCI is not set
  1788. # CONFIG_SCSI_ISCI is not set
  1789. # CONFIG_SCSI_IPS is not set
  1790. # CONFIG_SCSI_INITIO is not set
  1791. # CONFIG_SCSI_INIA100 is not set
  1792. # CONFIG_SCSI_STEX is not set
  1793. # CONFIG_SCSI_SYM53C8XX_2 is not set
  1794. # CONFIG_SCSI_IPR is not set
  1795. # CONFIG_SCSI_QLOGIC_1280 is not set
  1796. # CONFIG_SCSI_QLA_ISCSI is not set
  1797. # CONFIG_SCSI_DC395x is not set
  1798. # CONFIG_SCSI_AM53C974 is not set
  1799. # CONFIG_SCSI_WD719X is not set
  1800. # CONFIG_SCSI_DEBUG is not set
  1801. # CONFIG_SCSI_PMCRAID is not set
  1802. # CONFIG_SCSI_PM8001 is not set
  1803. CONFIG_SCSI_VIRTIO=y
  1804. CONFIG_SCSI_DH=y
  1805. # CONFIG_SCSI_DH_RDAC is not set
  1806. # CONFIG_SCSI_DH_HP_SW is not set
  1807. # CONFIG_SCSI_DH_EMC is not set
  1808. # CONFIG_SCSI_DH_ALUA is not set
  1809. # end of SCSI device support
  1810. CONFIG_ATA=y
  1811. CONFIG_SATA_HOST=y
  1812. CONFIG_PATA_TIMINGS=y
  1813. CONFIG_ATA_VERBOSE_ERROR=y
  1814. CONFIG_ATA_FORCE=y
  1815. CONFIG_ATA_ACPI=y
  1816. CONFIG_SATA_ZPODD=y
  1817. CONFIG_SATA_PMP=y
  1818. #
  1819. # Controllers with non-SFF native interface
  1820. #
  1821. CONFIG_SATA_AHCI=y
  1822. CONFIG_SATA_MOBILE_LPM_POLICY=3
  1823. # CONFIG_SATA_AHCI_PLATFORM is not set
  1824. # CONFIG_SATA_INIC162X is not set
  1825. # CONFIG_SATA_ACARD_AHCI is not set
  1826. # CONFIG_SATA_SIL24 is not set
  1827. CONFIG_ATA_SFF=y
  1828. #
  1829. # SFF controllers with custom DMA interface
  1830. #
  1831. # CONFIG_PDC_ADMA is not set
  1832. # CONFIG_SATA_QSTOR is not set
  1833. # CONFIG_SATA_SX4 is not set
  1834. CONFIG_ATA_BMDMA=y
  1835. #
  1836. # SATA SFF controllers with BMDMA
  1837. #
  1838. # CONFIG_ATA_PIIX is not set
  1839. # CONFIG_SATA_DWC is not set
  1840. # CONFIG_SATA_MV is not set
  1841. # CONFIG_SATA_NV is not set
  1842. # CONFIG_SATA_PROMISE is not set
  1843. # CONFIG_SATA_SIL is not set
  1844. # CONFIG_SATA_SIS is not set
  1845. # CONFIG_SATA_SVW is not set
  1846. # CONFIG_SATA_ULI is not set
  1847. # CONFIG_SATA_VIA is not set
  1848. # CONFIG_SATA_VITESSE is not set
  1849. #
  1850. # PATA SFF controllers with BMDMA
  1851. #
  1852. # CONFIG_PATA_ALI is not set
  1853. # CONFIG_PATA_AMD is not set
  1854. # CONFIG_PATA_ARTOP is not set
  1855. # CONFIG_PATA_ATIIXP is not set
  1856. # CONFIG_PATA_ATP867X is not set
  1857. # CONFIG_PATA_CMD64X is not set
  1858. # CONFIG_PATA_CYPRESS is not set
  1859. # CONFIG_PATA_EFAR is not set
  1860. # CONFIG_PATA_HPT366 is not set
  1861. # CONFIG_PATA_HPT37X is not set
  1862. # CONFIG_PATA_HPT3X2N is not set
  1863. # CONFIG_PATA_HPT3X3 is not set
  1864. # CONFIG_PATA_IT8213 is not set
  1865. # CONFIG_PATA_IT821X is not set
  1866. # CONFIG_PATA_JMICRON is not set
  1867. # CONFIG_PATA_MARVELL is not set
  1868. # CONFIG_PATA_NETCELL is not set
  1869. # CONFIG_PATA_NINJA32 is not set
  1870. # CONFIG_PATA_NS87415 is not set
  1871. # CONFIG_PATA_OLDPIIX is not set
  1872. # CONFIG_PATA_OPTIDMA is not set
  1873. # CONFIG_PATA_PDC2027X is not set
  1874. # CONFIG_PATA_PDC_OLD is not set
  1875. # CONFIG_PATA_RADISYS is not set
  1876. # CONFIG_PATA_RDC is not set
  1877. # CONFIG_PATA_SCH is not set
  1878. # CONFIG_PATA_SERVERWORKS is not set
  1879. # CONFIG_PATA_SIL680 is not set
  1880. # CONFIG_PATA_SIS is not set
  1881. # CONFIG_PATA_TOSHIBA is not set
  1882. # CONFIG_PATA_TRIFLEX is not set
  1883. # CONFIG_PATA_VIA is not set
  1884. # CONFIG_PATA_WINBOND is not set
  1885. #
  1886. # PIO-only SFF controllers
  1887. #
  1888. # CONFIG_PATA_CMD640_PCI is not set
  1889. # CONFIG_PATA_MPIIX is not set
  1890. # CONFIG_PATA_NS87410 is not set
  1891. # CONFIG_PATA_OPTI is not set
  1892. # CONFIG_PATA_PLATFORM is not set
  1893. # CONFIG_PATA_RZ1000 is not set
  1894. #
  1895. # Generic fallback / legacy drivers
  1896. #
  1897. # CONFIG_PATA_ACPI is not set
  1898. # CONFIG_ATA_GENERIC is not set
  1899. # CONFIG_PATA_LEGACY is not set
  1900. CONFIG_MD=y
  1901. # CONFIG_BLK_DEV_MD is not set
  1902. # CONFIG_BCACHE is not set
  1903. CONFIG_BLK_DEV_DM_BUILTIN=y
  1904. CONFIG_BLK_DEV_DM=y
  1905. CONFIG_DM_DEBUG=y
  1906. # CONFIG_DM_UNSTRIPED is not set
  1907. CONFIG_DM_CRYPT=y
  1908. # CONFIG_DM_SNAPSHOT is not set
  1909. # CONFIG_DM_THIN_PROVISIONING is not set
  1910. # CONFIG_DM_CACHE is not set
  1911. # CONFIG_DM_WRITECACHE is not set
  1912. # CONFIG_DM_EBS is not set
  1913. # CONFIG_DM_ERA is not set
  1914. # CONFIG_DM_CLONE is not set
  1915. # CONFIG_DM_MIRROR is not set
  1916. # CONFIG_DM_RAID is not set
  1917. # CONFIG_DM_ZERO is not set
  1918. # CONFIG_DM_MULTIPATH is not set
  1919. # CONFIG_DM_DELAY is not set
  1920. # CONFIG_DM_DUST is not set
  1921. # CONFIG_DM_INIT is not set
  1922. CONFIG_DM_UEVENT=y
  1923. # CONFIG_DM_FLAKEY is not set
  1924. # CONFIG_DM_VERITY is not set
  1925. # CONFIG_DM_SWITCH is not set
  1926. # CONFIG_DM_LOG_WRITES is not set
  1927. # CONFIG_DM_INTEGRITY is not set
  1928. # CONFIG_DM_ZONED is not set
  1929. # CONFIG_TARGET_CORE is not set
  1930. CONFIG_FUSION=y
  1931. # CONFIG_FUSION_SPI is not set
  1932. # CONFIG_FUSION_SAS is not set
  1933. CONFIG_FUSION_MAX_SGE=128
  1934. # CONFIG_FUSION_LOGGING is not set
  1935. #
  1936. # IEEE 1394 (FireWire) support
  1937. #
  1938. # CONFIG_FIREWIRE is not set
  1939. # CONFIG_FIREWIRE_NOSY is not set
  1940. # end of IEEE 1394 (FireWire) support
  1941. CONFIG_MACINTOSH_DRIVERS=y
  1942. CONFIG_MAC_EMUMOUSEBTN=y
  1943. CONFIG_NETDEVICES=y
  1944. CONFIG_NET_CORE=y
  1945. # CONFIG_BONDING is not set
  1946. # CONFIG_DUMMY is not set
  1947. # CONFIG_WIREGUARD is not set
  1948. # CONFIG_EQUALIZER is not set
  1949. CONFIG_NET_FC=y
  1950. # CONFIG_IFB is not set
  1951. # CONFIG_NET_TEAM is not set
  1952. CONFIG_MACVLAN=y
  1953. CONFIG_MACVTAP=y
  1954. # CONFIG_IPVLAN is not set
  1955. # CONFIG_VXLAN is not set
  1956. # CONFIG_GENEVE is not set
  1957. # CONFIG_BAREUDP is not set
  1958. # CONFIG_GTP is not set
  1959. CONFIG_MACSEC=y
  1960. # CONFIG_NETCONSOLE is not set
  1961. CONFIG_TUN=y
  1962. CONFIG_TAP=y
  1963. # CONFIG_TUN_VNET_CROSS_LE is not set
  1964. CONFIG_VETH=y
  1965. CONFIG_VIRTIO_NET=y
  1966. # CONFIG_NLMON is not set
  1967. # CONFIG_NET_VRF is not set
  1968. # CONFIG_ARCNET is not set
  1969. #
  1970. # Distributed Switch Architecture drivers
  1971. #
  1972. # CONFIG_NET_DSA_MV88E6XXX_PTP is not set
  1973. # end of Distributed Switch Architecture drivers
  1974. CONFIG_ETHERNET=y
  1975. CONFIG_NET_VENDOR_3COM=y
  1976. # CONFIG_VORTEX is not set
  1977. # CONFIG_TYPHOON is not set
  1978. CONFIG_NET_VENDOR_ADAPTEC=y
  1979. # CONFIG_ADAPTEC_STARFIRE is not set
  1980. CONFIG_NET_VENDOR_AGERE=y
  1981. # CONFIG_ET131X is not set
  1982. CONFIG_NET_VENDOR_ALACRITECH=y
  1983. # CONFIG_SLICOSS is not set
  1984. CONFIG_NET_VENDOR_ALTEON=y
  1985. # CONFIG_ACENIC is not set
  1986. # CONFIG_ALTERA_TSE is not set
  1987. CONFIG_NET_VENDOR_AMAZON=y
  1988. # CONFIG_ENA_ETHERNET is not set
  1989. CONFIG_NET_VENDOR_AMD=y
  1990. # CONFIG_AMD8111_ETH is not set
  1991. # CONFIG_PCNET32 is not set
  1992. # CONFIG_AMD_XGBE is not set
  1993. CONFIG_NET_VENDOR_AQUANTIA=y
  1994. CONFIG_AQTION=y
  1995. CONFIG_NET_VENDOR_ARC=y
  1996. CONFIG_NET_VENDOR_ATHEROS=y
  1997. # CONFIG_ATL2 is not set
  1998. # CONFIG_ATL1 is not set
  1999. # CONFIG_ATL1E is not set
  2000. # CONFIG_ATL1C is not set
  2001. # CONFIG_ALX is not set
  2002. CONFIG_NET_VENDOR_BROADCOM=y
  2003. # CONFIG_B44 is not set
  2004. # CONFIG_BCMGENET is not set
  2005. # CONFIG_BNX2 is not set
  2006. # CONFIG_CNIC is not set
  2007. # CONFIG_TIGON3 is not set
  2008. # CONFIG_BNX2X is not set
  2009. # CONFIG_SYSTEMPORT is not set
  2010. # CONFIG_BNXT is not set
  2011. CONFIG_NET_VENDOR_BROCADE=y
  2012. # CONFIG_BNA is not set
  2013. CONFIG_NET_VENDOR_CADENCE=y
  2014. # CONFIG_MACB is not set
  2015. CONFIG_NET_VENDOR_CAVIUM=y
  2016. # CONFIG_THUNDER_NIC_PF is not set
  2017. # CONFIG_THUNDER_NIC_VF is not set
  2018. # CONFIG_THUNDER_NIC_BGX is not set
  2019. # CONFIG_THUNDER_NIC_RGX is not set
  2020. # CONFIG_CAVIUM_PTP is not set
  2021. # CONFIG_LIQUIDIO is not set
  2022. # CONFIG_LIQUIDIO_VF is not set
  2023. CONFIG_NET_VENDOR_CHELSIO=y
  2024. # CONFIG_CHELSIO_T1 is not set
  2025. # CONFIG_CHELSIO_T3 is not set
  2026. # CONFIG_CHELSIO_T4 is not set
  2027. # CONFIG_CHELSIO_T4VF is not set
  2028. CONFIG_NET_VENDOR_CISCO=y
  2029. # CONFIG_ENIC is not set
  2030. CONFIG_NET_VENDOR_CORTINA=y
  2031. # CONFIG_CX_ECAT is not set
  2032. # CONFIG_DNET is not set
  2033. CONFIG_NET_VENDOR_DEC=y
  2034. CONFIG_NET_TULIP=y
  2035. # CONFIG_DE2104X is not set
  2036. # CONFIG_TULIP is not set
  2037. # CONFIG_DE4X5 is not set
  2038. # CONFIG_WINBOND_840 is not set
  2039. # CONFIG_DM9102 is not set
  2040. # CONFIG_ULI526X is not set
  2041. CONFIG_NET_VENDOR_DLINK=y
  2042. # CONFIG_DL2K is not set
  2043. # CONFIG_SUNDANCE is not set
  2044. CONFIG_NET_VENDOR_EMULEX=y
  2045. # CONFIG_BE2NET is not set
  2046. CONFIG_NET_VENDOR_EZCHIP=y
  2047. CONFIG_NET_VENDOR_GOOGLE=y
  2048. # CONFIG_GVE is not set
  2049. CONFIG_NET_VENDOR_HUAWEI=y
  2050. # CONFIG_HINIC is not set
  2051. CONFIG_NET_VENDOR_I825XX=y
  2052. CONFIG_NET_VENDOR_INTEL=y
  2053. # CONFIG_E100 is not set
  2054. # CONFIG_E1000 is not set
  2055. # CONFIG_E1000E is not set
  2056. CONFIG_IGB=y
  2057. CONFIG_IGB_HWMON=y
  2058. CONFIG_IGB_DCA=y
  2059. # CONFIG_IGBVF is not set
  2060. # CONFIG_IXGB is not set
  2061. # CONFIG_IXGBE is not set
  2062. # CONFIG_IXGBEVF is not set
  2063. # CONFIG_I40E is not set
  2064. # CONFIG_I40EVF is not set
  2065. # CONFIG_ICE is not set
  2066. # CONFIG_FM10K is not set
  2067. # CONFIG_IGC is not set
  2068. # CONFIG_JME is not set
  2069. CONFIG_NET_VENDOR_MARVELL=y
  2070. # CONFIG_MVMDIO is not set
  2071. # CONFIG_SKGE is not set
  2072. # CONFIG_SKY2 is not set
  2073. CONFIG_NET_VENDOR_MELLANOX=y
  2074. # CONFIG_MLX4_EN is not set
  2075. # CONFIG_MLX5_CORE is not set
  2076. # CONFIG_MLXSW_CORE is not set
  2077. # CONFIG_MLXFW is not set
  2078. CONFIG_NET_VENDOR_MICREL=y
  2079. # CONFIG_KS8842 is not set
  2080. # CONFIG_KS8851 is not set
  2081. # CONFIG_KS8851_MLL is not set
  2082. # CONFIG_KSZ884X_PCI is not set
  2083. CONFIG_NET_VENDOR_MICROCHIP=y
  2084. # CONFIG_ENC28J60 is not set
  2085. # CONFIG_ENCX24J600 is not set
  2086. # CONFIG_LAN743X is not set
  2087. CONFIG_NET_VENDOR_MICROSEMI=y
  2088. CONFIG_NET_VENDOR_MYRI=y
  2089. # CONFIG_MYRI10GE is not set
  2090. # CONFIG_FEALNX is not set
  2091. CONFIG_NET_VENDOR_NATSEMI=y
  2092. # CONFIG_NATSEMI is not set
  2093. # CONFIG_NS83820 is not set
  2094. CONFIG_NET_VENDOR_NETERION=y
  2095. # CONFIG_S2IO is not set
  2096. # CONFIG_VXGE is not set
  2097. CONFIG_NET_VENDOR_NETRONOME=y
  2098. # CONFIG_NFP is not set
  2099. CONFIG_NET_VENDOR_NI=y
  2100. # CONFIG_NI_XGE_MANAGEMENT_ENET is not set
  2101. CONFIG_NET_VENDOR_8390=y
  2102. # CONFIG_NE2K_PCI is not set
  2103. CONFIG_NET_VENDOR_NVIDIA=y
  2104. # CONFIG_FORCEDETH is not set
  2105. CONFIG_NET_VENDOR_OKI=y
  2106. # CONFIG_ETHOC is not set
  2107. CONFIG_NET_VENDOR_PACKET_ENGINES=y
  2108. # CONFIG_HAMACHI is not set
  2109. # CONFIG_YELLOWFIN is not set
  2110. CONFIG_NET_VENDOR_PENSANDO=y
  2111. # CONFIG_IONIC is not set
  2112. CONFIG_NET_VENDOR_QLOGIC=y
  2113. # CONFIG_QLA3XXX is not set
  2114. # CONFIG_QLCNIC is not set
  2115. # CONFIG_NETXEN_NIC is not set
  2116. # CONFIG_QED is not set
  2117. CONFIG_NET_VENDOR_QUALCOMM=y
  2118. # CONFIG_QCOM_EMAC is not set
  2119. # CONFIG_RMNET is not set
  2120. CONFIG_NET_VENDOR_RDC=y
  2121. # CONFIG_R6040 is not set
  2122. CONFIG_NET_VENDOR_REALTEK=y
  2123. # CONFIG_8139CP is not set
  2124. # CONFIG_8139TOO is not set
  2125. # CONFIG_R8169 is not set
  2126. CONFIG_NET_VENDOR_RENESAS=y
  2127. CONFIG_NET_VENDOR_ROCKER=y
  2128. # CONFIG_ROCKER is not set
  2129. CONFIG_NET_VENDOR_SAMSUNG=y
  2130. # CONFIG_SXGBE_ETH is not set
  2131. CONFIG_NET_VENDOR_SEEQ=y
  2132. CONFIG_NET_VENDOR_SOLARFLARE=y
  2133. # CONFIG_SFC is not set
  2134. # CONFIG_SFC_FALCON is not set
  2135. CONFIG_NET_VENDOR_SILAN=y
  2136. # CONFIG_SC92031 is not set
  2137. CONFIG_NET_VENDOR_SIS=y
  2138. # CONFIG_SIS900 is not set
  2139. # CONFIG_SIS190 is not set
  2140. CONFIG_NET_VENDOR_SMSC=y
  2141. # CONFIG_EPIC100 is not set
  2142. # CONFIG_SMSC911X is not set
  2143. # CONFIG_SMSC9420 is not set
  2144. CONFIG_NET_VENDOR_SOCIONEXT=y
  2145. CONFIG_NET_VENDOR_STMICRO=y
  2146. # CONFIG_STMMAC_ETH is not set
  2147. CONFIG_NET_VENDOR_SUN=y
  2148. # CONFIG_HAPPYMEAL is not set
  2149. # CONFIG_SUNGEM is not set
  2150. # CONFIG_CASSINI is not set
  2151. # CONFIG_NIU is not set
  2152. CONFIG_NET_VENDOR_SYNOPSYS=y
  2153. # CONFIG_DWC_XLGMAC is not set
  2154. CONFIG_NET_VENDOR_TEHUTI=y
  2155. # CONFIG_TEHUTI is not set
  2156. CONFIG_NET_VENDOR_TI=y
  2157. # CONFIG_TI_CPSW_PHY_SEL is not set
  2158. # CONFIG_TLAN is not set
  2159. CONFIG_NET_VENDOR_VIA=y
  2160. # CONFIG_VIA_RHINE is not set
  2161. # CONFIG_VIA_VELOCITY is not set
  2162. CONFIG_NET_VENDOR_WIZNET=y
  2163. # CONFIG_WIZNET_W5100 is not set
  2164. # CONFIG_WIZNET_W5300 is not set
  2165. CONFIG_NET_VENDOR_XILINX=y
  2166. # CONFIG_XILINX_EMACLITE is not set
  2167. # CONFIG_XILINX_AXI_EMAC is not set
  2168. # CONFIG_XILINX_LL_TEMAC is not set
  2169. # CONFIG_FDDI is not set
  2170. # CONFIG_HIPPI is not set
  2171. # CONFIG_NET_SB1000 is not set
  2172. # CONFIG_PHYLIB is not set
  2173. # CONFIG_MICREL_KS8995MA is not set
  2174. # CONFIG_MDIO_DEVICE is not set
  2175. #
  2176. # PCS device drivers
  2177. #
  2178. # end of PCS device drivers
  2179. # CONFIG_PPP is not set
  2180. # CONFIG_SLIP is not set
  2181. # CONFIG_USB_NET_DRIVERS is not set
  2182. CONFIG_WLAN=y
  2183. CONFIG_WLAN_VENDOR_ADMTEK=y
  2184. # CONFIG_ADM8211 is not set
  2185. CONFIG_ATH_COMMON=y
  2186. CONFIG_WLAN_VENDOR_ATH=y
  2187. # CONFIG_ATH_DEBUG is not set
  2188. # CONFIG_ATH5K is not set
  2189. CONFIG_ATH5K_PCI=y
  2190. # CONFIG_ATH9K is not set
  2191. # CONFIG_ATH9K_HTC is not set
  2192. # CONFIG_CARL9170 is not set
  2193. # CONFIG_ATH6KL is not set
  2194. # CONFIG_AR5523 is not set
  2195. CONFIG_WIL6210=y
  2196. CONFIG_WIL6210_ISR_COR=y
  2197. CONFIG_WIL6210_DEBUGFS=y
  2198. CONFIG_ATH10K=y
  2199. CONFIG_ATH10K_CE=y
  2200. CONFIG_ATH10K_PCI=y
  2201. # CONFIG_ATH10K_USB is not set
  2202. CONFIG_ATH10K_DEBUG=y
  2203. CONFIG_ATH10K_DEBUGFS=y
  2204. CONFIG_ATH10K_SPECTRAL=y
  2205. # CONFIG_WCN36XX is not set
  2206. CONFIG_WLAN_VENDOR_ATMEL=y
  2207. # CONFIG_ATMEL is not set
  2208. # CONFIG_AT76C50X_USB is not set
  2209. CONFIG_WLAN_VENDOR_BROADCOM=y
  2210. # CONFIG_B43 is not set
  2211. # CONFIG_B43LEGACY is not set
  2212. # CONFIG_BRCMSMAC is not set
  2213. # CONFIG_BRCMFMAC is not set
  2214. CONFIG_WLAN_VENDOR_CISCO=y
  2215. # CONFIG_AIRO is not set
  2216. CONFIG_WLAN_VENDOR_INTEL=y
  2217. # CONFIG_IPW2100 is not set
  2218. # CONFIG_IPW2200 is not set
  2219. # CONFIG_IWL4965 is not set
  2220. # CONFIG_IWL3945 is not set
  2221. # CONFIG_IWLWIFI is not set
  2222. CONFIG_WLAN_VENDOR_INTERSIL=y
  2223. # CONFIG_HOSTAP is not set
  2224. # CONFIG_HERMES is not set
  2225. # CONFIG_P54_COMMON is not set
  2226. # CONFIG_PRISM54 is not set
  2227. CONFIG_WLAN_VENDOR_MARVELL=y
  2228. # CONFIG_LIBERTAS is not set
  2229. # CONFIG_LIBERTAS_THINFIRM is not set
  2230. # CONFIG_MWIFIEX is not set
  2231. # CONFIG_MWL8K is not set
  2232. CONFIG_WLAN_VENDOR_MEDIATEK=y
  2233. # CONFIG_MT7601U is not set
  2234. # CONFIG_MT76x0U is not set
  2235. # CONFIG_MT76x0E is not set
  2236. # CONFIG_MT76x2E is not set
  2237. # CONFIG_MT76x2U is not set
  2238. # CONFIG_MT7603E is not set
  2239. # CONFIG_MT7615E is not set
  2240. # CONFIG_MT7663U is not set
  2241. # CONFIG_MT7915E is not set
  2242. # CONFIG_MT7921E is not set
  2243. CONFIG_WLAN_VENDOR_MICROCHIP=y
  2244. # CONFIG_WILC1000_SPI is not set
  2245. CONFIG_WLAN_VENDOR_RALINK=y
  2246. # CONFIG_RT2X00 is not set
  2247. CONFIG_WLAN_VENDOR_REALTEK=y
  2248. # CONFIG_RTL8180 is not set
  2249. # CONFIG_RTL8187 is not set
  2250. # CONFIG_RTL_CARDS is not set
  2251. # CONFIG_RTL8XXXU is not set
  2252. # CONFIG_RTW88 is not set
  2253. CONFIG_WLAN_VENDOR_RSI=y
  2254. # CONFIG_RSI_91X is not set
  2255. CONFIG_WLAN_VENDOR_ST=y
  2256. # CONFIG_CW1200 is not set
  2257. CONFIG_WLAN_VENDOR_TI=y
  2258. # CONFIG_WL1251 is not set
  2259. # CONFIG_WL12XX is not set
  2260. # CONFIG_WL18XX is not set
  2261. # CONFIG_WLCORE is not set
  2262. CONFIG_WLAN_VENDOR_ZYDAS=y
  2263. # CONFIG_USB_ZD1201 is not set
  2264. # CONFIG_ZD1211RW is not set
  2265. CONFIG_WLAN_VENDOR_QUANTENNA=y
  2266. # CONFIG_QTNFMAC_PCIE is not set
  2267. # CONFIG_MAC80211_HWSIM is not set
  2268. # CONFIG_USB_NET_RNDIS_WLAN is not set
  2269. # CONFIG_VIRT_WIFI is not set
  2270. # CONFIG_WAN is not set
  2271. # CONFIG_VMXNET3 is not set
  2272. # CONFIG_FUJITSU_ES is not set
  2273. # CONFIG_NETDEVSIM is not set
  2274. CONFIG_NET_FAILOVER=y
  2275. CONFIG_ISDN=y
  2276. CONFIG_ISDN_CAPI=y
  2277. # CONFIG_MISDN is not set
  2278. CONFIG_NVM=y
  2279. # CONFIG_NVM_PBLK is not set
  2280. #
  2281. # Input device support
  2282. #
  2283. CONFIG_INPUT=y
  2284. CONFIG_INPUT_LEDS=y
  2285. CONFIG_INPUT_FF_MEMLESS=y
  2286. CONFIG_INPUT_SPARSEKMAP=y
  2287. # CONFIG_INPUT_MATRIXKMAP is not set
  2288. #
  2289. # Userland interfaces
  2290. #
  2291. CONFIG_INPUT_MOUSEDEV=y
  2292. CONFIG_INPUT_MOUSEDEV_PSAUX=y
  2293. CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
  2294. CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
  2295. CONFIG_INPUT_JOYDEV=y
  2296. CONFIG_INPUT_EVDEV=y
  2297. # CONFIG_INPUT_EVBUG is not set
  2298. #
  2299. # Input Device Drivers
  2300. #
  2301. CONFIG_INPUT_KEYBOARD=y
  2302. # CONFIG_KEYBOARD_ADP5520 is not set
  2303. # CONFIG_KEYBOARD_ADP5588 is not set
  2304. # CONFIG_KEYBOARD_ADP5589 is not set
  2305. # CONFIG_KEYBOARD_APPLESPI is not set
  2306. CONFIG_KEYBOARD_ATKBD=y
  2307. # CONFIG_KEYBOARD_QT1050 is not set
  2308. # CONFIG_KEYBOARD_QT1070 is not set
  2309. # CONFIG_KEYBOARD_QT2160 is not set
  2310. # CONFIG_KEYBOARD_DLINK_DIR685 is not set
  2311. # CONFIG_KEYBOARD_LKKBD is not set
  2312. # CONFIG_KEYBOARD_GPIO is not set
  2313. # CONFIG_KEYBOARD_GPIO_POLLED is not set
  2314. # CONFIG_KEYBOARD_TCA6416 is not set
  2315. # CONFIG_KEYBOARD_TCA8418 is not set
  2316. # CONFIG_KEYBOARD_MATRIX is not set
  2317. # CONFIG_KEYBOARD_LM8323 is not set
  2318. # CONFIG_KEYBOARD_LM8333 is not set
  2319. # CONFIG_KEYBOARD_MAX7359 is not set
  2320. # CONFIG_KEYBOARD_MCS is not set
  2321. # CONFIG_KEYBOARD_MPR121 is not set
  2322. # CONFIG_KEYBOARD_NEWTON is not set
  2323. # CONFIG_KEYBOARD_OPENCORES is not set
  2324. # CONFIG_KEYBOARD_SAMSUNG is not set
  2325. # CONFIG_KEYBOARD_STOWAWAY is not set
  2326. # CONFIG_KEYBOARD_SUNKBD is not set
  2327. # CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
  2328. # CONFIG_KEYBOARD_TWL4030 is not set
  2329. # CONFIG_KEYBOARD_XTKBD is not set
  2330. CONFIG_INPUT_MOUSE=y
  2331. # CONFIG_MOUSE_PS2 is not set
  2332. # CONFIG_MOUSE_SERIAL is not set
  2333. # CONFIG_MOUSE_APPLETOUCH is not set
  2334. # CONFIG_MOUSE_BCM5974 is not set
  2335. # CONFIG_MOUSE_CYAPA is not set
  2336. # CONFIG_MOUSE_ELAN_I2C is not set
  2337. # CONFIG_MOUSE_VSXXXAA is not set
  2338. # CONFIG_MOUSE_GPIO is not set
  2339. # CONFIG_MOUSE_SYNAPTICS_I2C is not set
  2340. # CONFIG_MOUSE_SYNAPTICS_USB is not set
  2341. CONFIG_INPUT_JOYSTICK=y
  2342. # CONFIG_JOYSTICK_ANALOG is not set
  2343. # CONFIG_JOYSTICK_A3D is not set
  2344. # CONFIG_JOYSTICK_ADI is not set
  2345. # CONFIG_JOYSTICK_COBRA is not set
  2346. # CONFIG_JOYSTICK_GF2K is not set
  2347. # CONFIG_JOYSTICK_GRIP is not set
  2348. # CONFIG_JOYSTICK_GRIP_MP is not set
  2349. # CONFIG_JOYSTICK_GUILLEMOT is not set
  2350. # CONFIG_JOYSTICK_INTERACT is not set
  2351. # CONFIG_JOYSTICK_SIDEWINDER is not set
  2352. # CONFIG_JOYSTICK_TMDC is not set
  2353. # CONFIG_JOYSTICK_IFORCE is not set
  2354. # CONFIG_JOYSTICK_WARRIOR is not set
  2355. # CONFIG_JOYSTICK_MAGELLAN is not set
  2356. # CONFIG_JOYSTICK_SPACEORB is not set
  2357. # CONFIG_JOYSTICK_SPACEBALL is not set
  2358. # CONFIG_JOYSTICK_STINGER is not set
  2359. # CONFIG_JOYSTICK_TWIDJOY is not set
  2360. # CONFIG_JOYSTICK_ZHENHUA is not set
  2361. # CONFIG_JOYSTICK_AS5011 is not set
  2362. # CONFIG_JOYSTICK_JOYDUMP is not set
  2363. # CONFIG_JOYSTICK_XPAD is not set
  2364. # CONFIG_JOYSTICK_PSXPAD_SPI is not set
  2365. # CONFIG_JOYSTICK_PXRC is not set
  2366. # CONFIG_JOYSTICK_FSIA6B is not set
  2367. CONFIG_INPUT_TABLET=y
  2368. # CONFIG_TABLET_USB_ACECAD is not set
  2369. # CONFIG_TABLET_USB_AIPTEK is not set
  2370. # CONFIG_TABLET_USB_HANWANG is not set
  2371. # CONFIG_TABLET_USB_KBTAB is not set
  2372. # CONFIG_TABLET_USB_PEGASUS is not set
  2373. # CONFIG_TABLET_SERIAL_WACOM4 is not set
  2374. CONFIG_INPUT_TOUCHSCREEN=y
  2375. CONFIG_TOUCHSCREEN_PROPERTIES=y
  2376. # CONFIG_TOUCHSCREEN_88PM860X is not set
  2377. # CONFIG_TOUCHSCREEN_ADS7846 is not set
  2378. # CONFIG_TOUCHSCREEN_AD7877 is not set
  2379. # CONFIG_TOUCHSCREEN_AD7879 is not set
  2380. # CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
  2381. # CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
  2382. # CONFIG_TOUCHSCREEN_BU21013 is not set
  2383. # CONFIG_TOUCHSCREEN_BU21029 is not set
  2384. # CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
  2385. # CONFIG_TOUCHSCREEN_CY8CTMA140 is not set
  2386. # CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
  2387. # CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
  2388. # CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
  2389. # CONFIG_TOUCHSCREEN_DA9034 is not set
  2390. # CONFIG_TOUCHSCREEN_DA9052 is not set
  2391. # CONFIG_TOUCHSCREEN_DYNAPRO is not set
  2392. # CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
  2393. # CONFIG_TOUCHSCREEN_EETI is not set
  2394. # CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
  2395. # CONFIG_TOUCHSCREEN_EXC3000 is not set
  2396. # CONFIG_TOUCHSCREEN_FUJITSU is not set
  2397. # CONFIG_TOUCHSCREEN_GOODIX is not set
  2398. # CONFIG_TOUCHSCREEN_HIDEEP is not set
  2399. # CONFIG_TOUCHSCREEN_ILI210X is not set
  2400. # CONFIG_TOUCHSCREEN_S6SY761 is not set
  2401. # CONFIG_TOUCHSCREEN_GUNZE is not set
  2402. # CONFIG_TOUCHSCREEN_EKTF2127 is not set
  2403. # CONFIG_TOUCHSCREEN_ELAN is not set
  2404. # CONFIG_TOUCHSCREEN_ELO is not set
  2405. # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
  2406. # CONFIG_TOUCHSCREEN_WACOM_I2C is not set
  2407. # CONFIG_TOUCHSCREEN_MAX11801 is not set
  2408. # CONFIG_TOUCHSCREEN_MCS5000 is not set
  2409. # CONFIG_TOUCHSCREEN_MMS114 is not set
  2410. # CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
  2411. # CONFIG_TOUCHSCREEN_MTOUCH is not set
  2412. # CONFIG_TOUCHSCREEN_INEXIO is not set
  2413. # CONFIG_TOUCHSCREEN_MK712 is not set
  2414. # CONFIG_TOUCHSCREEN_PENMOUNT is not set
  2415. # CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
  2416. # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
  2417. # CONFIG_TOUCHSCREEN_TOUCHWIN is not set
  2418. # CONFIG_TOUCHSCREEN_PIXCIR is not set
  2419. # CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
  2420. # CONFIG_TOUCHSCREEN_WM831X is not set
  2421. # CONFIG_TOUCHSCREEN_WM97XX is not set
  2422. # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
  2423. # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
  2424. # CONFIG_TOUCHSCREEN_TSC_SERIO is not set
  2425. # CONFIG_TOUCHSCREEN_TSC2004 is not set
  2426. # CONFIG_TOUCHSCREEN_TSC2005 is not set
  2427. # CONFIG_TOUCHSCREEN_TSC2007 is not set
  2428. # CONFIG_TOUCHSCREEN_PCAP is not set
  2429. # CONFIG_TOUCHSCREEN_RM_TS is not set
  2430. # CONFIG_TOUCHSCREEN_SILEAD is not set
  2431. # CONFIG_TOUCHSCREEN_SIS_I2C is not set
  2432. # CONFIG_TOUCHSCREEN_ST1232 is not set
  2433. # CONFIG_TOUCHSCREEN_STMFTS is not set
  2434. # CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
  2435. # CONFIG_TOUCHSCREEN_SX8654 is not set
  2436. # CONFIG_TOUCHSCREEN_TPS6507X is not set
  2437. # CONFIG_TOUCHSCREEN_ZET6223 is not set
  2438. # CONFIG_TOUCHSCREEN_ZFORCE is not set
  2439. # CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
  2440. # CONFIG_TOUCHSCREEN_IQS5XX is not set
  2441. # CONFIG_TOUCHSCREEN_ZINITIX is not set
  2442. CONFIG_INPUT_MISC=y
  2443. # CONFIG_INPUT_88PM860X_ONKEY is not set
  2444. # CONFIG_INPUT_AD714X is not set
  2445. # CONFIG_INPUT_BMA150 is not set
  2446. # CONFIG_INPUT_E3X0_BUTTON is not set
  2447. CONFIG_INPUT_PCSPKR=y
  2448. # CONFIG_INPUT_MAX77693_HAPTIC is not set
  2449. # CONFIG_INPUT_MAX8925_ONKEY is not set
  2450. # CONFIG_INPUT_MAX8997_HAPTIC is not set
  2451. # CONFIG_INPUT_MMA8450 is not set
  2452. # CONFIG_INPUT_APANEL is not set
  2453. # CONFIG_INPUT_GPIO_BEEPER is not set
  2454. # CONFIG_INPUT_GPIO_DECODER is not set
  2455. # CONFIG_INPUT_GPIO_VIBRA is not set
  2456. # CONFIG_INPUT_ATLAS_BTNS is not set
  2457. # CONFIG_INPUT_ATI_REMOTE2 is not set
  2458. # CONFIG_INPUT_KEYSPAN_REMOTE is not set
  2459. # CONFIG_INPUT_KXTJ9 is not set
  2460. # CONFIG_INPUT_POWERMATE is not set
  2461. # CONFIG_INPUT_YEALINK is not set
  2462. # CONFIG_INPUT_CM109 is not set
  2463. # CONFIG_INPUT_REGULATOR_HAPTIC is not set
  2464. # CONFIG_INPUT_TWL4030_PWRBUTTON is not set
  2465. # CONFIG_INPUT_TWL4030_VIBRA is not set
  2466. # CONFIG_INPUT_TWL6040_VIBRA is not set
  2467. CONFIG_INPUT_UINPUT=y
  2468. # CONFIG_INPUT_PALMAS_PWRBUTTON is not set
  2469. # CONFIG_INPUT_PCF8574 is not set
  2470. # CONFIG_INPUT_PWM_BEEPER is not set
  2471. # CONFIG_INPUT_PWM_VIBRA is not set
  2472. # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
  2473. # CONFIG_INPUT_DA7280_HAPTICS is not set
  2474. # CONFIG_INPUT_DA9052_ONKEY is not set
  2475. # CONFIG_INPUT_DA9055_ONKEY is not set
  2476. # CONFIG_INPUT_WM831X_ON is not set
  2477. # CONFIG_INPUT_PCAP is not set
  2478. # CONFIG_INPUT_ADXL34X is not set
  2479. # CONFIG_INPUT_IMS_PCU is not set
  2480. # CONFIG_INPUT_IQS269A is not set
  2481. # CONFIG_INPUT_CMA3000 is not set
  2482. # CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
  2483. # CONFIG_INPUT_DRV260X_HAPTICS is not set
  2484. # CONFIG_INPUT_DRV2665_HAPTICS is not set
  2485. # CONFIG_INPUT_DRV2667_HAPTICS is not set
  2486. # CONFIG_RMI4_CORE is not set
  2487. #
  2488. # Hardware I/O ports
  2489. #
  2490. CONFIG_SERIO=y
  2491. CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
  2492. CONFIG_SERIO_I8042=y
  2493. # CONFIG_SERIO_SERPORT is not set
  2494. # CONFIG_SERIO_CT82C710 is not set
  2495. # CONFIG_SERIO_PCIPS2 is not set
  2496. CONFIG_SERIO_LIBPS2=y
  2497. # CONFIG_SERIO_RAW is not set
  2498. # CONFIG_SERIO_ALTERA_PS2 is not set
  2499. # CONFIG_SERIO_PS2MULT is not set
  2500. # CONFIG_SERIO_ARC_PS2 is not set
  2501. # CONFIG_SERIO_GPIO_PS2 is not set
  2502. # CONFIG_USERIO is not set
  2503. # CONFIG_GAMEPORT is not set
  2504. # end of Hardware I/O ports
  2505. # end of Input device support
  2506. #
  2507. # Character devices
  2508. #
  2509. CONFIG_TTY=y
  2510. CONFIG_VT=y
  2511. CONFIG_CONSOLE_TRANSLATIONS=y
  2512. CONFIG_VT_CONSOLE=y
  2513. CONFIG_HW_CONSOLE=y
  2514. CONFIG_VT_HW_CONSOLE_BINDING=y
  2515. CONFIG_UNIX98_PTYS=y
  2516. # CONFIG_LEGACY_PTYS is not set
  2517. CONFIG_LDISC_AUTOLOAD=y
  2518. #
  2519. # Serial drivers
  2520. #
  2521. CONFIG_SERIAL_EARLYCON=y
  2522. CONFIG_SERIAL_8250=y
  2523. # CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
  2524. CONFIG_SERIAL_8250_PNP=y
  2525. # CONFIG_SERIAL_8250_16550A_VARIANTS is not set
  2526. CONFIG_SERIAL_8250_FINTEK=y
  2527. CONFIG_SERIAL_8250_CONSOLE=y
  2528. CONFIG_SERIAL_8250_DMA=y
  2529. CONFIG_SERIAL_8250_PCI=y
  2530. # CONFIG_SERIAL_8250_EXAR is not set
  2531. CONFIG_SERIAL_8250_NR_UARTS=32
  2532. CONFIG_SERIAL_8250_RUNTIME_UARTS=32
  2533. CONFIG_SERIAL_8250_EXTENDED=y
  2534. CONFIG_SERIAL_8250_MANY_PORTS=y
  2535. CONFIG_SERIAL_8250_SHARE_IRQ=y
  2536. # CONFIG_SERIAL_8250_DETECT_IRQ is not set
  2537. CONFIG_SERIAL_8250_RSA=y
  2538. CONFIG_SERIAL_8250_DWLIB=y
  2539. # CONFIG_SERIAL_8250_DW is not set
  2540. CONFIG_SERIAL_8250_RT288X=y
  2541. CONFIG_SERIAL_8250_LPSS=y
  2542. CONFIG_SERIAL_8250_MID=y
  2543. #
  2544. # Non-8250 serial port support
  2545. #
  2546. # CONFIG_SERIAL_MAX3100 is not set
  2547. # CONFIG_SERIAL_MAX310X is not set
  2548. # CONFIG_SERIAL_UARTLITE is not set
  2549. CONFIG_SERIAL_CORE=y
  2550. CONFIG_SERIAL_CORE_CONSOLE=y
  2551. # CONFIG_SERIAL_JSM is not set
  2552. # CONFIG_SERIAL_LANTIQ is not set
  2553. # CONFIG_SERIAL_SCCNXP is not set
  2554. # CONFIG_SERIAL_SC16IS7XX is not set
  2555. # CONFIG_SERIAL_BCM63XX is not set
  2556. # CONFIG_SERIAL_ALTERA_JTAGUART is not set
  2557. # CONFIG_SERIAL_ALTERA_UART is not set
  2558. # CONFIG_SERIAL_ARC is not set
  2559. # CONFIG_SERIAL_RP2 is not set
  2560. # CONFIG_SERIAL_FSL_LPUART is not set
  2561. # CONFIG_SERIAL_FSL_LINFLEXUART is not set
  2562. # CONFIG_SERIAL_SPRD is not set
  2563. # end of Serial drivers
  2564. CONFIG_SERIAL_MCTRL_GPIO=y
  2565. CONFIG_SERIAL_NONSTANDARD=y
  2566. # CONFIG_ROCKETPORT is not set
  2567. # CONFIG_CYCLADES is not set
  2568. # CONFIG_MOXA_INTELLIO is not set
  2569. # CONFIG_MOXA_SMARTIO is not set
  2570. # CONFIG_SYNCLINK_GT is not set
  2571. # CONFIG_ISI is not set
  2572. # CONFIG_N_HDLC is not set
  2573. # CONFIG_N_GSM is not set
  2574. # CONFIG_NOZOMI is not set
  2575. # CONFIG_NULL_TTY is not set
  2576. # CONFIG_TRACE_SINK is not set
  2577. CONFIG_SERIAL_DEV_BUS=y
  2578. CONFIG_SERIAL_DEV_CTRL_TTYPORT=y
  2579. # CONFIG_TTY_PRINTK is not set
  2580. # CONFIG_VIRTIO_CONSOLE is not set
  2581. # CONFIG_IPMI_HANDLER is not set
  2582. # CONFIG_IPMB_DEVICE_INTERFACE is not set
  2583. CONFIG_HW_RANDOM=y
  2584. # CONFIG_HW_RANDOM_TIMERIOMEM is not set
  2585. # CONFIG_HW_RANDOM_INTEL is not set
  2586. # CONFIG_HW_RANDOM_AMD is not set
  2587. # CONFIG_HW_RANDOM_BA431 is not set
  2588. # CONFIG_HW_RANDOM_VIA is not set
  2589. # CONFIG_HW_RANDOM_VIRTIO is not set
  2590. # CONFIG_HW_RANDOM_XIPHERA is not set
  2591. # CONFIG_APPLICOM is not set
  2592. # CONFIG_MWAVE is not set
  2593. CONFIG_DEVMEM=y
  2594. # CONFIG_DEVKMEM is not set
  2595. CONFIG_NVRAM=y
  2596. # CONFIG_RAW_DRIVER is not set
  2597. CONFIG_DEVPORT=y
  2598. CONFIG_HPET=y
  2599. # CONFIG_HPET_MMAP is not set
  2600. # CONFIG_HANGCHECK_TIMER is not set
  2601. CONFIG_TCG_TPM=y
  2602. CONFIG_HW_RANDOM_TPM=y
  2603. # CONFIG_TCG_TIS is not set
  2604. # CONFIG_TCG_TIS_SPI is not set
  2605. # CONFIG_TCG_TIS_I2C_CR50 is not set
  2606. # CONFIG_TCG_TIS_I2C_ATMEL is not set
  2607. # CONFIG_TCG_TIS_I2C_INFINEON is not set
  2608. # CONFIG_TCG_TIS_I2C_NUVOTON is not set
  2609. # CONFIG_TCG_NSC is not set
  2610. # CONFIG_TCG_ATMEL is not set
  2611. # CONFIG_TCG_INFINEON is not set
  2612. # CONFIG_TCG_CRB is not set
  2613. # CONFIG_TCG_VTPM_PROXY is not set
  2614. # CONFIG_TCG_TIS_ST33ZP24_I2C is not set
  2615. # CONFIG_TCG_TIS_ST33ZP24_SPI is not set
  2616. # CONFIG_TELCLOCK is not set
  2617. # CONFIG_XILLYBUS is not set
  2618. # end of Character devices
  2619. # CONFIG_RANDOM_TRUST_CPU is not set
  2620. # CONFIG_RANDOM_TRUST_BOOTLOADER is not set
  2621. #
  2622. # I2C support
  2623. #
  2624. CONFIG_I2C=y
  2625. CONFIG_ACPI_I2C_OPREGION=y
  2626. CONFIG_I2C_BOARDINFO=y
  2627. CONFIG_I2C_COMPAT=y
  2628. # CONFIG_I2C_CHARDEV is not set
  2629. # CONFIG_I2C_MUX is not set
  2630. CONFIG_I2C_HELPER_AUTO=y
  2631. CONFIG_I2C_ALGOBIT=y
  2632. #
  2633. # I2C Hardware Bus support
  2634. #
  2635. #
  2636. # PC SMBus host controller drivers
  2637. #
  2638. # CONFIG_I2C_ALI1535 is not set
  2639. # CONFIG_I2C_ALI1563 is not set
  2640. # CONFIG_I2C_ALI15X3 is not set
  2641. # CONFIG_I2C_AMD756 is not set
  2642. # CONFIG_I2C_AMD8111 is not set
  2643. # CONFIG_I2C_AMD_MP2 is not set
  2644. # CONFIG_I2C_I801 is not set
  2645. # CONFIG_I2C_ISCH is not set
  2646. # CONFIG_I2C_ISMT is not set
  2647. CONFIG_I2C_PIIX4=y
  2648. # CONFIG_I2C_CHT_WC is not set
  2649. # CONFIG_I2C_NFORCE2 is not set
  2650. # CONFIG_I2C_NVIDIA_GPU is not set
  2651. # CONFIG_I2C_SIS5595 is not set
  2652. # CONFIG_I2C_SIS630 is not set
  2653. # CONFIG_I2C_SIS96X is not set
  2654. # CONFIG_I2C_VIA is not set
  2655. # CONFIG_I2C_VIAPRO is not set
  2656. #
  2657. # ACPI drivers
  2658. #
  2659. # CONFIG_I2C_SCMI is not set
  2660. #
  2661. # I2C system bus drivers (mostly embedded / system-on-chip)
  2662. #
  2663. # CONFIG_I2C_CBUS_GPIO is not set
  2664. CONFIG_I2C_DESIGNWARE_CORE=y
  2665. CONFIG_I2C_DESIGNWARE_SLAVE=y
  2666. CONFIG_I2C_DESIGNWARE_PLATFORM=y
  2667. CONFIG_I2C_DESIGNWARE_BAYTRAIL=y
  2668. CONFIG_I2C_DESIGNWARE_PCI=y
  2669. # CONFIG_I2C_EMEV2 is not set
  2670. # CONFIG_I2C_GPIO is not set
  2671. # CONFIG_I2C_OCORES is not set
  2672. # CONFIG_I2C_PCA_PLATFORM is not set
  2673. # CONFIG_I2C_SIMTEC is not set
  2674. # CONFIG_I2C_XILINX is not set
  2675. #
  2676. # External I2C/SMBus adapter drivers
  2677. #
  2678. # CONFIG_I2C_DIOLAN_U2C is not set
  2679. # CONFIG_I2C_ROBOTFUZZ_OSIF is not set
  2680. # CONFIG_I2C_TAOS_EVM is not set
  2681. # CONFIG_I2C_TINY_USB is not set
  2682. #
  2683. # Other I2C/SMBus bus drivers
  2684. #
  2685. # CONFIG_I2C_MLXCPLD is not set
  2686. # end of I2C Hardware Bus support
  2687. CONFIG_I2C_SLAVE=y
  2688. # CONFIG_I2C_SLAVE_EEPROM is not set
  2689. # CONFIG_I2C_SLAVE_TESTUNIT is not set
  2690. # CONFIG_I2C_DEBUG_CORE is not set
  2691. # CONFIG_I2C_DEBUG_ALGO is not set
  2692. # CONFIG_I2C_DEBUG_BUS is not set
  2693. # end of I2C support
  2694. # CONFIG_I3C is not set
  2695. CONFIG_SPI=y
  2696. # CONFIG_SPI_DEBUG is not set
  2697. CONFIG_SPI_MASTER=y
  2698. CONFIG_SPI_MEM=y
  2699. #
  2700. # SPI Master Controller Drivers
  2701. #
  2702. # CONFIG_SPI_ALTERA is not set
  2703. # CONFIG_SPI_AXI_SPI_ENGINE is not set
  2704. # CONFIG_SPI_BITBANG is not set
  2705. # CONFIG_SPI_CADENCE is not set
  2706. # CONFIG_SPI_DESIGNWARE is not set
  2707. # CONFIG_SPI_NXP_FLEXSPI is not set
  2708. # CONFIG_SPI_GPIO is not set
  2709. # CONFIG_SPI_LANTIQ_SSC is not set
  2710. # CONFIG_SPI_OC_TINY is not set
  2711. # CONFIG_SPI_PXA2XX is not set
  2712. # CONFIG_SPI_ROCKCHIP is not set
  2713. # CONFIG_SPI_SC18IS602 is not set
  2714. # CONFIG_SPI_SIFIVE is not set
  2715. # CONFIG_SPI_MXIC is not set
  2716. # CONFIG_SPI_XCOMM is not set
  2717. # CONFIG_SPI_XILINX is not set
  2718. # CONFIG_SPI_ZYNQMP_GQSPI is not set
  2719. # CONFIG_SPI_AMD is not set
  2720. #
  2721. # SPI Multiplexer support
  2722. #
  2723. # CONFIG_SPI_MUX is not set
  2724. #
  2725. # SPI Protocol Masters
  2726. #
  2727. # CONFIG_SPI_SPIDEV is not set
  2728. # CONFIG_SPI_TLE62X0 is not set
  2729. CONFIG_SPI_SLAVE=y
  2730. # CONFIG_SPI_SLAVE_TIME is not set
  2731. # CONFIG_SPI_SLAVE_SYSTEM_CONTROL is not set
  2732. CONFIG_SPI_DYNAMIC=y
  2733. # CONFIG_SPMI is not set
  2734. # CONFIG_HSI is not set
  2735. CONFIG_PPS=y
  2736. # CONFIG_PPS_DEBUG is not set
  2737. #
  2738. # PPS clients support
  2739. #
  2740. # CONFIG_PPS_CLIENT_KTIMER is not set
  2741. # CONFIG_PPS_CLIENT_LDISC is not set
  2742. # CONFIG_PPS_CLIENT_GPIO is not set
  2743. #
  2744. # PPS generators support
  2745. #
  2746. #
  2747. # PTP clock support
  2748. #
  2749. CONFIG_PTP_1588_CLOCK=y
  2750. #
  2751. # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
  2752. #
  2753. # CONFIG_PTP_1588_CLOCK_IDT82P33 is not set
  2754. # CONFIG_PTP_1588_CLOCK_IDTCM is not set
  2755. # CONFIG_PTP_1588_CLOCK_OCP is not set
  2756. # end of PTP clock support
  2757. CONFIG_PINCTRL=y
  2758. CONFIG_PINMUX=y
  2759. CONFIG_PINCONF=y
  2760. CONFIG_GENERIC_PINCONF=y
  2761. # CONFIG_DEBUG_PINCTRL is not set
  2762. CONFIG_PINCTRL_AMD=y
  2763. # CONFIG_PINCTRL_MCP23S08 is not set
  2764. CONFIG_PINCTRL_SX150X=y
  2765. CONFIG_PINCTRL_BAYTRAIL=y
  2766. CONFIG_PINCTRL_CHERRYVIEW=y
  2767. CONFIG_PINCTRL_LYNXPOINT=y
  2768. CONFIG_PINCTRL_INTEL=y
  2769. CONFIG_PINCTRL_ALDERLAKE=y
  2770. CONFIG_PINCTRL_BROXTON=y
  2771. CONFIG_PINCTRL_CANNONLAKE=y
  2772. CONFIG_PINCTRL_CEDARFORK=y
  2773. CONFIG_PINCTRL_DENVERTON=y
  2774. CONFIG_PINCTRL_ELKHARTLAKE=y
  2775. CONFIG_PINCTRL_EMMITSBURG=y
  2776. CONFIG_PINCTRL_GEMINILAKE=y
  2777. CONFIG_PINCTRL_ICELAKE=y
  2778. CONFIG_PINCTRL_JASPERLAKE=y
  2779. CONFIG_PINCTRL_LAKEFIELD=y
  2780. CONFIG_PINCTRL_LEWISBURG=y
  2781. CONFIG_PINCTRL_SUNRISEPOINT=y
  2782. CONFIG_PINCTRL_TIGERLAKE=y
  2783. #
  2784. # Renesas pinctrl drivers
  2785. #
  2786. # end of Renesas pinctrl drivers
  2787. CONFIG_GPIOLIB=y
  2788. CONFIG_GPIOLIB_FASTPATH_LIMIT=512
  2789. CONFIG_GPIO_ACPI=y
  2790. CONFIG_GPIOLIB_IRQCHIP=y
  2791. # CONFIG_DEBUG_GPIO is not set
  2792. # CONFIG_GPIO_SYSFS is not set
  2793. CONFIG_GPIO_CDEV=y
  2794. CONFIG_GPIO_CDEV_V1=y
  2795. CONFIG_GPIO_GENERIC=y
  2796. #
  2797. # Memory mapped GPIO drivers
  2798. #
  2799. CONFIG_GPIO_AMDPT=y
  2800. # CONFIG_GPIO_DWAPB is not set
  2801. # CONFIG_GPIO_GENERIC_PLATFORM is not set
  2802. # CONFIG_GPIO_ICH is not set
  2803. # CONFIG_GPIO_MB86S7X is not set
  2804. # CONFIG_GPIO_VX855 is not set
  2805. # CONFIG_GPIO_AMD_FCH is not set
  2806. # end of Memory mapped GPIO drivers
  2807. #
  2808. # Port-mapped I/O GPIO drivers
  2809. #
  2810. # CONFIG_GPIO_F7188X is not set
  2811. # CONFIG_GPIO_IT87 is not set
  2812. # CONFIG_GPIO_SCH is not set
  2813. # CONFIG_GPIO_SCH311X is not set
  2814. # CONFIG_GPIO_WINBOND is not set
  2815. # CONFIG_GPIO_WS16C48 is not set
  2816. # end of Port-mapped I/O GPIO drivers
  2817. #
  2818. # I2C GPIO expanders
  2819. #
  2820. # CONFIG_GPIO_ADP5588 is not set
  2821. # CONFIG_GPIO_MAX7300 is not set
  2822. # CONFIG_GPIO_MAX732X is not set
  2823. # CONFIG_GPIO_PCA953X is not set
  2824. # CONFIG_GPIO_PCA9570 is not set
  2825. # CONFIG_GPIO_PCF857X is not set
  2826. # CONFIG_GPIO_TPIC2810 is not set
  2827. # end of I2C GPIO expanders
  2828. #
  2829. # MFD GPIO expanders
  2830. #
  2831. # CONFIG_GPIO_ADP5520 is not set
  2832. # CONFIG_GPIO_CRYSTAL_COVE is not set
  2833. # CONFIG_GPIO_DA9052 is not set
  2834. # CONFIG_GPIO_DA9055 is not set
  2835. CONFIG_GPIO_PALMAS=y
  2836. CONFIG_GPIO_RC5T583=y
  2837. CONFIG_GPIO_TPS6586X=y
  2838. CONFIG_GPIO_TPS65910=y
  2839. CONFIG_GPIO_TPS68470=y
  2840. # CONFIG_GPIO_TWL4030 is not set
  2841. # CONFIG_GPIO_TWL6040 is not set
  2842. # CONFIG_GPIO_WM831X is not set
  2843. # CONFIG_GPIO_WM8350 is not set
  2844. # end of MFD GPIO expanders
  2845. #
  2846. # PCI GPIO expanders
  2847. #
  2848. # CONFIG_GPIO_AMD8111 is not set
  2849. # CONFIG_GPIO_BT8XX is not set
  2850. # CONFIG_GPIO_ML_IOH is not set
  2851. # CONFIG_GPIO_PCI_IDIO_16 is not set
  2852. # CONFIG_GPIO_PCIE_IDIO_24 is not set
  2853. # CONFIG_GPIO_RDC321X is not set
  2854. # end of PCI GPIO expanders
  2855. #
  2856. # SPI GPIO expanders
  2857. #
  2858. # CONFIG_GPIO_MAX3191X is not set
  2859. # CONFIG_GPIO_MAX7301 is not set
  2860. # CONFIG_GPIO_MC33880 is not set
  2861. # CONFIG_GPIO_PISOSR is not set
  2862. # CONFIG_GPIO_XRA1403 is not set
  2863. # end of SPI GPIO expanders
  2864. #
  2865. # USB GPIO expanders
  2866. #
  2867. # end of USB GPIO expanders
  2868. #
  2869. # Virtual GPIO drivers
  2870. #
  2871. # CONFIG_GPIO_AGGREGATOR is not set
  2872. # CONFIG_GPIO_MOCKUP is not set
  2873. # end of Virtual GPIO drivers
  2874. # CONFIG_W1 is not set
  2875. CONFIG_POWER_RESET=y
  2876. CONFIG_POWER_RESET_RESTART=y
  2877. CONFIG_POWER_SUPPLY=y
  2878. # CONFIG_POWER_SUPPLY_DEBUG is not set
  2879. CONFIG_POWER_SUPPLY_HWMON=y
  2880. # CONFIG_PDA_POWER is not set
  2881. # CONFIG_MAX8925_POWER is not set
  2882. # CONFIG_WM831X_BACKUP is not set
  2883. # CONFIG_WM831X_POWER is not set
  2884. # CONFIG_WM8350_POWER is not set
  2885. # CONFIG_TEST_POWER is not set
  2886. # CONFIG_BATTERY_88PM860X is not set
  2887. # CONFIG_CHARGER_ADP5061 is not set
  2888. # CONFIG_BATTERY_CW2015 is not set
  2889. # CONFIG_BATTERY_DS2780 is not set
  2890. # CONFIG_BATTERY_DS2781 is not set
  2891. # CONFIG_BATTERY_DS2782 is not set
  2892. # CONFIG_BATTERY_SBS is not set
  2893. # CONFIG_CHARGER_SBS is not set
  2894. # CONFIG_BATTERY_BQ27XXX is not set
  2895. # CONFIG_BATTERY_DA9030 is not set
  2896. # CONFIG_BATTERY_DA9052 is not set
  2897. # CONFIG_BATTERY_MAX17040 is not set
  2898. # CONFIG_BATTERY_MAX17042 is not set
  2899. # CONFIG_CHARGER_MAX8903 is not set
  2900. # CONFIG_CHARGER_LP8727 is not set
  2901. # CONFIG_CHARGER_GPIO is not set
  2902. CONFIG_CHARGER_MANAGER=y
  2903. # CONFIG_CHARGER_LT3651 is not set
  2904. # CONFIG_CHARGER_LTC4162L is not set
  2905. # CONFIG_CHARGER_BQ2415X is not set
  2906. # CONFIG_CHARGER_BQ24190 is not set
  2907. # CONFIG_CHARGER_BQ24257 is not set
  2908. # CONFIG_CHARGER_BQ24735 is not set
  2909. # CONFIG_CHARGER_BQ2515X is not set
  2910. # CONFIG_CHARGER_BQ25890 is not set
  2911. # CONFIG_CHARGER_BQ25980 is not set
  2912. # CONFIG_CHARGER_BQ256XX is not set
  2913. # CONFIG_CHARGER_SMB347 is not set
  2914. # CONFIG_CHARGER_TPS65090 is not set
  2915. # CONFIG_BATTERY_GAUGE_LTC2941 is not set
  2916. # CONFIG_CHARGER_RT9455 is not set
  2917. # CONFIG_CHARGER_BD99954 is not set
  2918. CONFIG_HWMON=y
  2919. # CONFIG_HWMON_DEBUG_CHIP is not set
  2920. #
  2921. # Native drivers
  2922. #
  2923. # CONFIG_SENSORS_ABITUGURU is not set
  2924. # CONFIG_SENSORS_ABITUGURU3 is not set
  2925. # CONFIG_SENSORS_AD7314 is not set
  2926. # CONFIG_SENSORS_AD7414 is not set
  2927. # CONFIG_SENSORS_AD7418 is not set
  2928. # CONFIG_SENSORS_ADM1021 is not set
  2929. # CONFIG_SENSORS_ADM1025 is not set
  2930. # CONFIG_SENSORS_ADM1026 is not set
  2931. # CONFIG_SENSORS_ADM1029 is not set
  2932. # CONFIG_SENSORS_ADM1031 is not set
  2933. # CONFIG_SENSORS_ADM1177 is not set
  2934. # CONFIG_SENSORS_ADM9240 is not set
  2935. # CONFIG_SENSORS_ADT7310 is not set
  2936. # CONFIG_SENSORS_ADT7410 is not set
  2937. # CONFIG_SENSORS_ADT7411 is not set
  2938. # CONFIG_SENSORS_ADT7462 is not set
  2939. # CONFIG_SENSORS_ADT7470 is not set
  2940. # CONFIG_SENSORS_ADT7475 is not set
  2941. # CONFIG_SENSORS_AHT10 is not set
  2942. # CONFIG_SENSORS_AS370 is not set
  2943. # CONFIG_SENSORS_ASC7621 is not set
  2944. # CONFIG_SENSORS_AXI_FAN_CONTROL is not set
  2945. # CONFIG_SENSORS_K8TEMP is not set
  2946. CONFIG_SENSORS_K10TEMP=y
  2947. # CONFIG_SENSORS_FAM15H_POWER is not set
  2948. # CONFIG_SENSORS_AMD_ENERGY is not set
  2949. # CONFIG_SENSORS_APPLESMC is not set
  2950. # CONFIG_SENSORS_ASB100 is not set
  2951. # CONFIG_SENSORS_ASPEED is not set
  2952. # CONFIG_SENSORS_ATXP1 is not set
  2953. # CONFIG_SENSORS_CORSAIR_CPRO is not set
  2954. # CONFIG_SENSORS_CORSAIR_PSU is not set
  2955. # CONFIG_SENSORS_DRIVETEMP is not set
  2956. # CONFIG_SENSORS_DS620 is not set
  2957. # CONFIG_SENSORS_DS1621 is not set
  2958. # CONFIG_SENSORS_DELL_SMM is not set
  2959. # CONFIG_SENSORS_DA9052_ADC is not set
  2960. # CONFIG_SENSORS_DA9055 is not set
  2961. # CONFIG_SENSORS_I5K_AMB is not set
  2962. # CONFIG_SENSORS_F71805F is not set
  2963. # CONFIG_SENSORS_F71882FG is not set
  2964. # CONFIG_SENSORS_F75375S is not set
  2965. # CONFIG_SENSORS_FSCHMD is not set
  2966. # CONFIG_SENSORS_FTSTEUTATES is not set
  2967. # CONFIG_SENSORS_GL518SM is not set
  2968. # CONFIG_SENSORS_GL520SM is not set
  2969. # CONFIG_SENSORS_G760A is not set
  2970. # CONFIG_SENSORS_G762 is not set
  2971. # CONFIG_SENSORS_HIH6130 is not set
  2972. # CONFIG_SENSORS_I5500 is not set
  2973. # CONFIG_SENSORS_CORETEMP is not set
  2974. # CONFIG_SENSORS_IT87 is not set
  2975. # CONFIG_SENSORS_JC42 is not set
  2976. # CONFIG_SENSORS_POWR1220 is not set
  2977. # CONFIG_SENSORS_LINEAGE is not set
  2978. # CONFIG_SENSORS_LTC2945 is not set
  2979. # CONFIG_SENSORS_LTC2947_I2C is not set
  2980. # CONFIG_SENSORS_LTC2947_SPI is not set
  2981. # CONFIG_SENSORS_LTC2990 is not set
  2982. # CONFIG_SENSORS_LTC2992 is not set
  2983. # CONFIG_SENSORS_LTC4151 is not set
  2984. # CONFIG_SENSORS_LTC4215 is not set
  2985. # CONFIG_SENSORS_LTC4222 is not set
  2986. # CONFIG_SENSORS_LTC4245 is not set
  2987. # CONFIG_SENSORS_LTC4260 is not set
  2988. # CONFIG_SENSORS_LTC4261 is not set
  2989. # CONFIG_SENSORS_MAX1111 is not set
  2990. # CONFIG_SENSORS_MAX127 is not set
  2991. # CONFIG_SENSORS_MAX16065 is not set
  2992. # CONFIG_SENSORS_MAX1619 is not set
  2993. # CONFIG_SENSORS_MAX1668 is not set
  2994. # CONFIG_SENSORS_MAX197 is not set
  2995. # CONFIG_SENSORS_MAX31722 is not set
  2996. # CONFIG_SENSORS_MAX31730 is not set
  2997. # CONFIG_SENSORS_MAX6621 is not set
  2998. # CONFIG_SENSORS_MAX6639 is not set
  2999. # CONFIG_SENSORS_MAX6642 is not set
  3000. # CONFIG_SENSORS_MAX6650 is not set
  3001. # CONFIG_SENSORS_MAX6697 is not set
  3002. # CONFIG_SENSORS_MAX31790 is not set
  3003. # CONFIG_SENSORS_MCP3021 is not set
  3004. # CONFIG_SENSORS_MLXREG_FAN is not set
  3005. # CONFIG_SENSORS_TC654 is not set
  3006. # CONFIG_SENSORS_TPS23861 is not set
  3007. # CONFIG_SENSORS_MR75203 is not set
  3008. # CONFIG_SENSORS_ADCXX is not set
  3009. # CONFIG_SENSORS_LM63 is not set
  3010. # CONFIG_SENSORS_LM70 is not set
  3011. # CONFIG_SENSORS_LM73 is not set
  3012. # CONFIG_SENSORS_LM75 is not set
  3013. # CONFIG_SENSORS_LM77 is not set
  3014. # CONFIG_SENSORS_LM78 is not set
  3015. # CONFIG_SENSORS_LM80 is not set
  3016. # CONFIG_SENSORS_LM83 is not set
  3017. # CONFIG_SENSORS_LM85 is not set
  3018. # CONFIG_SENSORS_LM87 is not set
  3019. # CONFIG_SENSORS_LM90 is not set
  3020. # CONFIG_SENSORS_LM92 is not set
  3021. # CONFIG_SENSORS_LM93 is not set
  3022. # CONFIG_SENSORS_LM95234 is not set
  3023. # CONFIG_SENSORS_LM95241 is not set
  3024. # CONFIG_SENSORS_LM95245 is not set
  3025. # CONFIG_SENSORS_PC87360 is not set
  3026. # CONFIG_SENSORS_PC87427 is not set
  3027. # CONFIG_SENSORS_NTC_THERMISTOR is not set
  3028. # CONFIG_SENSORS_NCT6683 is not set
  3029. # CONFIG_SENSORS_NCT6775 is not set
  3030. # CONFIG_SENSORS_NCT7802 is not set
  3031. # CONFIG_SENSORS_NCT7904 is not set
  3032. # CONFIG_SENSORS_NPCM7XX is not set
  3033. # CONFIG_SENSORS_PCF8591 is not set
  3034. # CONFIG_PMBUS is not set
  3035. # CONFIG_SENSORS_SBTSI is not set
  3036. # CONFIG_SENSORS_SHT15 is not set
  3037. # CONFIG_SENSORS_SHT21 is not set
  3038. # CONFIG_SENSORS_SHT3x is not set
  3039. # CONFIG_SENSORS_SHTC1 is not set
  3040. # CONFIG_SENSORS_SIS5595 is not set
  3041. # CONFIG_SENSORS_DME1737 is not set
  3042. # CONFIG_SENSORS_EMC1403 is not set
  3043. # CONFIG_SENSORS_EMC2103 is not set
  3044. # CONFIG_SENSORS_EMC6W201 is not set
  3045. # CONFIG_SENSORS_SMSC47M1 is not set
  3046. # CONFIG_SENSORS_SMSC47M192 is not set
  3047. # CONFIG_SENSORS_SMSC47B397 is not set
  3048. # CONFIG_SENSORS_SCH5627 is not set
  3049. # CONFIG_SENSORS_SCH5636 is not set
  3050. # CONFIG_SENSORS_STTS751 is not set
  3051. # CONFIG_SENSORS_SMM665 is not set
  3052. # CONFIG_SENSORS_ADC128D818 is not set
  3053. # CONFIG_SENSORS_ADS7828 is not set
  3054. # CONFIG_SENSORS_ADS7871 is not set
  3055. # CONFIG_SENSORS_AMC6821 is not set
  3056. # CONFIG_SENSORS_INA209 is not set
  3057. # CONFIG_SENSORS_INA2XX is not set
  3058. # CONFIG_SENSORS_INA3221 is not set
  3059. # CONFIG_SENSORS_TC74 is not set
  3060. # CONFIG_SENSORS_THMC50 is not set
  3061. # CONFIG_SENSORS_TMP102 is not set
  3062. # CONFIG_SENSORS_TMP103 is not set
  3063. # CONFIG_SENSORS_TMP108 is not set
  3064. # CONFIG_SENSORS_TMP401 is not set
  3065. # CONFIG_SENSORS_TMP421 is not set
  3066. # CONFIG_SENSORS_TMP513 is not set
  3067. # CONFIG_SENSORS_VIA_CPUTEMP is not set
  3068. # CONFIG_SENSORS_VIA686A is not set
  3069. # CONFIG_SENSORS_VT1211 is not set
  3070. # CONFIG_SENSORS_VT8231 is not set
  3071. # CONFIG_SENSORS_W83773G is not set
  3072. # CONFIG_SENSORS_W83781D is not set
  3073. # CONFIG_SENSORS_W83791D is not set
  3074. # CONFIG_SENSORS_W83792D is not set
  3075. # CONFIG_SENSORS_W83793 is not set
  3076. # CONFIG_SENSORS_W83795 is not set
  3077. # CONFIG_SENSORS_W83L785TS is not set
  3078. # CONFIG_SENSORS_W83L786NG is not set
  3079. # CONFIG_SENSORS_W83627HF is not set
  3080. # CONFIG_SENSORS_W83627EHF is not set
  3081. # CONFIG_SENSORS_WM831X is not set
  3082. # CONFIG_SENSORS_WM8350 is not set
  3083. # CONFIG_SENSORS_XGENE is not set
  3084. #
  3085. # ACPI drivers
  3086. #
  3087. # CONFIG_SENSORS_ACPI_POWER is not set
  3088. # CONFIG_SENSORS_ATK0110 is not set
  3089. CONFIG_THERMAL=y
  3090. CONFIG_THERMAL_NETLINK=y
  3091. # CONFIG_THERMAL_STATISTICS is not set
  3092. CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=100
  3093. CONFIG_THERMAL_HWMON=y
  3094. CONFIG_THERMAL_WRITABLE_TRIPS=y
  3095. CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
  3096. # CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
  3097. # CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
  3098. # CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
  3099. CONFIG_THERMAL_GOV_FAIR_SHARE=y
  3100. CONFIG_THERMAL_GOV_STEP_WISE=y
  3101. CONFIG_THERMAL_GOV_BANG_BANG=y
  3102. CONFIG_THERMAL_GOV_USER_SPACE=y
  3103. CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y
  3104. CONFIG_DEVFREQ_THERMAL=y
  3105. # CONFIG_THERMAL_EMULATION is not set
  3106. #
  3107. # Intel thermal drivers
  3108. #
  3109. # CONFIG_INTEL_SOC_DTS_THERMAL is not set
  3110. #
  3111. # ACPI INT340X thermal drivers
  3112. #
  3113. # CONFIG_INT340X_THERMAL is not set
  3114. # end of ACPI INT340X thermal drivers
  3115. # CONFIG_INTEL_PCH_THERMAL is not set
  3116. # end of Intel thermal drivers
  3117. CONFIG_WATCHDOG=y
  3118. CONFIG_WATCHDOG_CORE=y
  3119. # CONFIG_WATCHDOG_NOWAYOUT is not set
  3120. CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
  3121. CONFIG_WATCHDOG_OPEN_TIMEOUT=0
  3122. CONFIG_WATCHDOG_SYSFS=y
  3123. #
  3124. # Watchdog Pretimeout Governors
  3125. #
  3126. CONFIG_WATCHDOG_PRETIMEOUT_GOV=y
  3127. CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL=y
  3128. # CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP is not set
  3129. CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=y
  3130. CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC=y
  3131. #
  3132. # Watchdog Device Drivers
  3133. #
  3134. # CONFIG_SOFT_WATCHDOG is not set
  3135. # CONFIG_DA9052_WATCHDOG is not set
  3136. # CONFIG_DA9055_WATCHDOG is not set
  3137. # CONFIG_WDAT_WDT is not set
  3138. # CONFIG_WM831X_WATCHDOG is not set
  3139. # CONFIG_WM8350_WATCHDOG is not set
  3140. # CONFIG_XILINX_WATCHDOG is not set
  3141. # CONFIG_ZIIRAVE_WATCHDOG is not set
  3142. # CONFIG_MLX_WDT is not set
  3143. # CONFIG_CADENCE_WATCHDOG is not set
  3144. # CONFIG_DW_WATCHDOG is not set
  3145. # CONFIG_TWL4030_WATCHDOG is not set
  3146. # CONFIG_MAX63XX_WATCHDOG is not set
  3147. # CONFIG_ACQUIRE_WDT is not set
  3148. # CONFIG_ADVANTECH_WDT is not set
  3149. # CONFIG_ALIM1535_WDT is not set
  3150. # CONFIG_ALIM7101_WDT is not set
  3151. # CONFIG_EBC_C384_WDT is not set
  3152. # CONFIG_F71808E_WDT is not set
  3153. CONFIG_SP5100_TCO=y
  3154. # CONFIG_SBC_FITPC2_WATCHDOG is not set
  3155. # CONFIG_EUROTECH_WDT is not set
  3156. # CONFIG_IB700_WDT is not set
  3157. # CONFIG_IBMASR is not set
  3158. # CONFIG_WAFER_WDT is not set
  3159. # CONFIG_I6300ESB_WDT is not set
  3160. # CONFIG_IE6XX_WDT is not set
  3161. # CONFIG_ITCO_WDT is not set
  3162. # CONFIG_IT8712F_WDT is not set
  3163. # CONFIG_IT87_WDT is not set
  3164. # CONFIG_HP_WATCHDOG is not set
  3165. # CONFIG_SC1200_WDT is not set
  3166. # CONFIG_PC87413_WDT is not set
  3167. # CONFIG_NV_TCO is not set
  3168. # CONFIG_60XX_WDT is not set
  3169. # CONFIG_CPU5_WDT is not set
  3170. # CONFIG_SMSC_SCH311X_WDT is not set
  3171. # CONFIG_SMSC37B787_WDT is not set
  3172. # CONFIG_TQMX86_WDT is not set
  3173. # CONFIG_VIA_WDT is not set
  3174. # CONFIG_W83627HF_WDT is not set
  3175. # CONFIG_W83877F_WDT is not set
  3176. # CONFIG_W83977F_WDT is not set
  3177. # CONFIG_MACHZ_WDT is not set
  3178. # CONFIG_SBC_EPX_C3_WATCHDOG is not set
  3179. # CONFIG_NI903X_WDT is not set
  3180. # CONFIG_NIC7018_WDT is not set
  3181. # CONFIG_MEN_A21_WDT is not set
  3182. #
  3183. # PCI-based Watchdog Cards
  3184. #
  3185. # CONFIG_PCIPCWATCHDOG is not set
  3186. # CONFIG_WDTPCI is not set
  3187. #
  3188. # USB-based Watchdog Cards
  3189. #
  3190. # CONFIG_USBPCWATCHDOG is not set
  3191. CONFIG_SSB_POSSIBLE=y
  3192. # CONFIG_SSB is not set
  3193. CONFIG_BCMA_POSSIBLE=y
  3194. # CONFIG_BCMA is not set
  3195. #
  3196. # Multifunction device drivers
  3197. #
  3198. CONFIG_MFD_CORE=y
  3199. CONFIG_MFD_AS3711=y
  3200. CONFIG_PMIC_ADP5520=y
  3201. CONFIG_MFD_AAT2870_CORE=y
  3202. # CONFIG_MFD_BCM590XX is not set
  3203. # CONFIG_MFD_BD9571MWV is not set
  3204. # CONFIG_MFD_AXP20X_I2C is not set
  3205. # CONFIG_MFD_MADERA is not set
  3206. CONFIG_PMIC_DA903X=y
  3207. CONFIG_PMIC_DA9052=y
  3208. CONFIG_MFD_DA9052_SPI=y
  3209. CONFIG_MFD_DA9052_I2C=y
  3210. CONFIG_MFD_DA9055=y
  3211. # CONFIG_MFD_DA9062 is not set
  3212. # CONFIG_MFD_DA9063 is not set
  3213. # CONFIG_MFD_DA9150 is not set
  3214. # CONFIG_MFD_DLN2 is not set
  3215. # CONFIG_MFD_MC13XXX_SPI is not set
  3216. # CONFIG_MFD_MC13XXX_I2C is not set
  3217. # CONFIG_MFD_MP2629 is not set
  3218. # CONFIG_HTC_PASIC3 is not set
  3219. CONFIG_HTC_I2CPLD=y
  3220. # CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
  3221. # CONFIG_LPC_ICH is not set
  3222. # CONFIG_LPC_SCH is not set
  3223. CONFIG_INTEL_SOC_PMIC=y
  3224. CONFIG_INTEL_SOC_PMIC_CHTWC=y
  3225. # CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
  3226. # CONFIG_INTEL_SOC_PMIC_MRFLD is not set
  3227. # CONFIG_MFD_INTEL_LPSS_ACPI is not set
  3228. # CONFIG_MFD_INTEL_LPSS_PCI is not set
  3229. # CONFIG_MFD_INTEL_PMC_BXT is not set
  3230. # CONFIG_MFD_INTEL_PMT is not set
  3231. # CONFIG_MFD_IQS62X is not set
  3232. # CONFIG_MFD_JANZ_CMODIO is not set
  3233. # CONFIG_MFD_KEMPLD is not set
  3234. # CONFIG_MFD_88PM800 is not set
  3235. # CONFIG_MFD_88PM805 is not set
  3236. CONFIG_MFD_88PM860X=y
  3237. # CONFIG_MFD_MAX14577 is not set
  3238. # CONFIG_MFD_MAX77693 is not set
  3239. CONFIG_MFD_MAX77843=y
  3240. # CONFIG_MFD_MAX8907 is not set
  3241. CONFIG_MFD_MAX8925=y
  3242. CONFIG_MFD_MAX8997=y
  3243. CONFIG_MFD_MAX8998=y
  3244. # CONFIG_MFD_MT6360 is not set
  3245. # CONFIG_MFD_MT6397 is not set
  3246. # CONFIG_MFD_MENF21BMC is not set
  3247. CONFIG_EZX_PCAP=y
  3248. # CONFIG_MFD_VIPERBOARD is not set
  3249. # CONFIG_MFD_RETU is not set
  3250. # CONFIG_MFD_PCF50633 is not set
  3251. # CONFIG_UCB1400_CORE is not set
  3252. # CONFIG_MFD_RDC321X is not set
  3253. # CONFIG_MFD_RT5033 is not set
  3254. CONFIG_MFD_RC5T583=y
  3255. CONFIG_MFD_SEC_CORE=y
  3256. # CONFIG_MFD_SI476X_CORE is not set
  3257. # CONFIG_MFD_SM501 is not set
  3258. # CONFIG_MFD_SKY81452 is not set
  3259. CONFIG_ABX500_CORE=y
  3260. CONFIG_AB3100_CORE=y
  3261. CONFIG_AB3100_OTP=y
  3262. CONFIG_MFD_SYSCON=y
  3263. # CONFIG_MFD_TI_AM335X_TSCADC is not set
  3264. # CONFIG_MFD_LP3943 is not set
  3265. CONFIG_MFD_LP8788=y
  3266. # CONFIG_MFD_TI_LMU is not set
  3267. CONFIG_MFD_PALMAS=y
  3268. # CONFIG_TPS6105X is not set
  3269. # CONFIG_TPS65010 is not set
  3270. # CONFIG_TPS6507X is not set
  3271. # CONFIG_MFD_TPS65086 is not set
  3272. CONFIG_MFD_TPS65090=y
  3273. CONFIG_MFD_TPS68470=y
  3274. # CONFIG_MFD_TI_LP873X is not set
  3275. CONFIG_MFD_TPS6586X=y
  3276. CONFIG_MFD_TPS65910=y
  3277. # CONFIG_MFD_TPS65912_I2C is not set
  3278. # CONFIG_MFD_TPS65912_SPI is not set
  3279. CONFIG_MFD_TPS80031=y
  3280. CONFIG_TWL4030_CORE=y
  3281. CONFIG_MFD_TWL4030_AUDIO=y
  3282. CONFIG_TWL6040_CORE=y
  3283. # CONFIG_MFD_WL1273_CORE is not set
  3284. # CONFIG_MFD_LM3533 is not set
  3285. # CONFIG_MFD_TQMX86 is not set
  3286. # CONFIG_MFD_VX855 is not set
  3287. # CONFIG_MFD_ARIZONA_I2C is not set
  3288. # CONFIG_MFD_ARIZONA_SPI is not set
  3289. CONFIG_MFD_WM8400=y
  3290. CONFIG_MFD_WM831X=y
  3291. CONFIG_MFD_WM831X_I2C=y
  3292. CONFIG_MFD_WM831X_SPI=y
  3293. CONFIG_MFD_WM8350=y
  3294. CONFIG_MFD_WM8350_I2C=y
  3295. # CONFIG_MFD_WM8994 is not set
  3296. # CONFIG_RAVE_SP_CORE is not set
  3297. # CONFIG_MFD_INTEL_M10_BMC is not set
  3298. # end of Multifunction device drivers
  3299. CONFIG_REGULATOR=y
  3300. # CONFIG_REGULATOR_DEBUG is not set
  3301. # CONFIG_REGULATOR_FIXED_VOLTAGE is not set
  3302. # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
  3303. # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
  3304. # CONFIG_REGULATOR_88PG86X is not set
  3305. # CONFIG_REGULATOR_88PM8607 is not set
  3306. # CONFIG_REGULATOR_ACT8865 is not set
  3307. # CONFIG_REGULATOR_AD5398 is not set
  3308. # CONFIG_REGULATOR_AAT2870 is not set
  3309. # CONFIG_REGULATOR_AS3711 is not set
  3310. # CONFIG_REGULATOR_DA9052 is not set
  3311. # CONFIG_REGULATOR_DA9055 is not set
  3312. # CONFIG_REGULATOR_DA9210 is not set
  3313. # CONFIG_REGULATOR_DA9211 is not set
  3314. # CONFIG_REGULATOR_FAN53555 is not set
  3315. # CONFIG_REGULATOR_GPIO is not set
  3316. # CONFIG_REGULATOR_ISL9305 is not set
  3317. # CONFIG_REGULATOR_ISL6271A is not set
  3318. # CONFIG_REGULATOR_LP3971 is not set
  3319. # CONFIG_REGULATOR_LP3972 is not set
  3320. # CONFIG_REGULATOR_LP872X is not set
  3321. # CONFIG_REGULATOR_LP8755 is not set
  3322. # CONFIG_REGULATOR_LP8788 is not set
  3323. # CONFIG_REGULATOR_LTC3589 is not set
  3324. # CONFIG_REGULATOR_LTC3676 is not set
  3325. # CONFIG_REGULATOR_MAX1586 is not set
  3326. # CONFIG_REGULATOR_MAX8649 is not set
  3327. # CONFIG_REGULATOR_MAX8660 is not set
  3328. # CONFIG_REGULATOR_MAX8925 is not set
  3329. # CONFIG_REGULATOR_MAX8952 is not set
  3330. # CONFIG_REGULATOR_MAX8997 is not set
  3331. # CONFIG_REGULATOR_MAX8998 is not set
  3332. # CONFIG_REGULATOR_MAX77693 is not set
  3333. # CONFIG_REGULATOR_MAX77826 is not set
  3334. # CONFIG_REGULATOR_MP8859 is not set
  3335. # CONFIG_REGULATOR_MT6311 is not set
  3336. # CONFIG_REGULATOR_PALMAS is not set
  3337. # CONFIG_REGULATOR_PCA9450 is not set
  3338. # CONFIG_REGULATOR_PCAP is not set
  3339. # CONFIG_REGULATOR_PV88060 is not set
  3340. # CONFIG_REGULATOR_PV88080 is not set
  3341. # CONFIG_REGULATOR_PV88090 is not set
  3342. # CONFIG_REGULATOR_PWM is not set
  3343. # CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set
  3344. # CONFIG_REGULATOR_RC5T583 is not set
  3345. # CONFIG_REGULATOR_RT4801 is not set
  3346. # CONFIG_REGULATOR_RTMV20 is not set
  3347. # CONFIG_REGULATOR_S2MPA01 is not set
  3348. # CONFIG_REGULATOR_S2MPS11 is not set
  3349. # CONFIG_REGULATOR_S5M8767 is not set
  3350. # CONFIG_REGULATOR_SLG51000 is not set
  3351. # CONFIG_REGULATOR_TPS51632 is not set
  3352. # CONFIG_REGULATOR_TPS62360 is not set
  3353. # CONFIG_REGULATOR_TPS65023 is not set
  3354. # CONFIG_REGULATOR_TPS6507X is not set
  3355. # CONFIG_REGULATOR_TPS65090 is not set
  3356. # CONFIG_REGULATOR_TPS65132 is not set
  3357. # CONFIG_REGULATOR_TPS6524X is not set
  3358. # CONFIG_REGULATOR_TPS6586X is not set
  3359. # CONFIG_REGULATOR_TPS65910 is not set
  3360. # CONFIG_REGULATOR_TPS80031 is not set
  3361. # CONFIG_REGULATOR_TWL4030 is not set
  3362. # CONFIG_REGULATOR_WM831X is not set
  3363. # CONFIG_REGULATOR_WM8350 is not set
  3364. # CONFIG_REGULATOR_WM8400 is not set
  3365. CONFIG_RC_CORE=y
  3366. # CONFIG_RC_MAP is not set
  3367. CONFIG_LIRC=y
  3368. CONFIG_BPF_LIRC_MODE2=y
  3369. CONFIG_RC_DECODERS=y
  3370. # CONFIG_IR_NEC_DECODER is not set
  3371. # CONFIG_IR_RC5_DECODER is not set
  3372. # CONFIG_IR_RC6_DECODER is not set
  3373. # CONFIG_IR_JVC_DECODER is not set
  3374. # CONFIG_IR_SONY_DECODER is not set
  3375. # CONFIG_IR_SANYO_DECODER is not set
  3376. # CONFIG_IR_SHARP_DECODER is not set
  3377. # CONFIG_IR_MCE_KBD_DECODER is not set
  3378. # CONFIG_IR_XMP_DECODER is not set
  3379. # CONFIG_IR_IMON_DECODER is not set
  3380. # CONFIG_IR_RCMM_DECODER is not set
  3381. CONFIG_RC_DEVICES=y
  3382. # CONFIG_RC_ATI_REMOTE is not set
  3383. # CONFIG_IR_ENE is not set
  3384. # CONFIG_IR_IMON is not set
  3385. # CONFIG_IR_IMON_RAW is not set
  3386. # CONFIG_IR_MCEUSB is not set
  3387. # CONFIG_IR_ITE_CIR is not set
  3388. # CONFIG_IR_FINTEK is not set
  3389. # CONFIG_IR_NUVOTON is not set
  3390. # CONFIG_IR_REDRAT3 is not set
  3391. # CONFIG_IR_STREAMZAP is not set
  3392. # CONFIG_IR_WINBOND_CIR is not set
  3393. # CONFIG_IR_IGORPLUGUSB is not set
  3394. # CONFIG_IR_IGUANA is not set
  3395. # CONFIG_IR_TTUSBIR is not set
  3396. # CONFIG_RC_LOOPBACK is not set
  3397. # CONFIG_IR_SERIAL is not set
  3398. # CONFIG_IR_SIR is not set
  3399. # CONFIG_RC_XBOX_DVD is not set
  3400. # CONFIG_IR_TOY is not set
  3401. CONFIG_CEC_CORE=y
  3402. CONFIG_MEDIA_CEC_RC=y
  3403. CONFIG_MEDIA_CEC_SUPPORT=y
  3404. # CONFIG_CEC_CH7322 is not set
  3405. # CONFIG_CEC_GPIO is not set
  3406. # CONFIG_CEC_SECO is not set
  3407. # CONFIG_USB_PULSE8_CEC is not set
  3408. # CONFIG_USB_RAINSHADOW_CEC is not set
  3409. # CONFIG_MEDIA_SUPPORT is not set
  3410. #
  3411. # Graphics support
  3412. #
  3413. CONFIG_AGP=y
  3414. # CONFIG_AGP_AMD64 is not set
  3415. # CONFIG_AGP_INTEL is not set
  3416. # CONFIG_AGP_SIS is not set
  3417. # CONFIG_AGP_VIA is not set
  3418. CONFIG_VGA_ARB=y
  3419. CONFIG_VGA_ARB_MAX_GPUS=10
  3420. CONFIG_VGA_SWITCHEROO=y
  3421. CONFIG_DRM=y
  3422. CONFIG_DRM_DP_AUX_CHARDEV=y
  3423. # CONFIG_DRM_DEBUG_MM is not set
  3424. # CONFIG_DRM_DEBUG_SELFTEST is not set
  3425. CONFIG_DRM_KMS_HELPER=y
  3426. CONFIG_DRM_KMS_FB_HELPER=y
  3427. # CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set
  3428. CONFIG_DRM_FBDEV_EMULATION=y
  3429. CONFIG_DRM_FBDEV_OVERALLOC=100
  3430. # CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set
  3431. CONFIG_DRM_LOAD_EDID_FIRMWARE=y
  3432. CONFIG_DRM_DP_CEC=y
  3433. CONFIG_DRM_TTM=y
  3434. CONFIG_DRM_TTM_HELPER=y
  3435. CONFIG_DRM_SCHED=y
  3436. #
  3437. # I2C encoder or helper chips
  3438. #
  3439. # CONFIG_DRM_I2C_CH7006 is not set
  3440. # CONFIG_DRM_I2C_SIL164 is not set
  3441. # CONFIG_DRM_I2C_NXP_TDA998X is not set
  3442. # CONFIG_DRM_I2C_NXP_TDA9950 is not set
  3443. # end of I2C encoder or helper chips
  3444. #
  3445. # ARM devices
  3446. #
  3447. # end of ARM devices
  3448. # CONFIG_DRM_RADEON is not set
  3449. CONFIG_DRM_AMDGPU=y
  3450. CONFIG_DRM_AMDGPU_SI=y
  3451. CONFIG_DRM_AMDGPU_CIK=y
  3452. CONFIG_DRM_AMDGPU_USERPTR=y
  3453. # CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
  3454. #
  3455. # ACP (Audio CoProcessor) Configuration
  3456. #
  3457. CONFIG_DRM_AMD_ACP=y
  3458. # end of ACP (Audio CoProcessor) Configuration
  3459. #
  3460. # Display Engine Configuration
  3461. #
  3462. CONFIG_DRM_AMD_DC=y
  3463. CONFIG_DRM_AMD_DC_DCN=y
  3464. CONFIG_DRM_AMD_DC_HDCP=y
  3465. CONFIG_DRM_AMD_DC_SI=y
  3466. # end of Display Engine Configuration
  3467. CONFIG_HSA_AMD=y
  3468. # CONFIG_DRM_NOUVEAU is not set
  3469. # CONFIG_DRM_I915 is not set
  3470. # CONFIG_DRM_VGEM is not set
  3471. # CONFIG_DRM_VKMS is not set
  3472. # CONFIG_DRM_VMWGFX is not set
  3473. # CONFIG_DRM_GMA500 is not set
  3474. # CONFIG_DRM_UDL is not set
  3475. # CONFIG_DRM_AST is not set
  3476. # CONFIG_DRM_MGAG200 is not set
  3477. # CONFIG_DRM_QXL is not set
  3478. # CONFIG_DRM_BOCHS is not set
  3479. # CONFIG_DRM_VIRTIO_GPU is not set
  3480. CONFIG_DRM_PANEL=y
  3481. #
  3482. # Display Panels
  3483. #
  3484. # end of Display Panels
  3485. CONFIG_DRM_BRIDGE=y
  3486. CONFIG_DRM_PANEL_BRIDGE=y
  3487. #
  3488. # Display Interface Bridges
  3489. #
  3490. # CONFIG_DRM_ANALOGIX_ANX78XX is not set
  3491. # end of Display Interface Bridges
  3492. # CONFIG_DRM_ETNAVIV is not set
  3493. # CONFIG_DRM_CIRRUS_QEMU is not set
  3494. # CONFIG_DRM_GM12U320 is not set
  3495. # CONFIG_TINYDRM_HX8357D is not set
  3496. # CONFIG_TINYDRM_ILI9225 is not set
  3497. # CONFIG_TINYDRM_ILI9341 is not set
  3498. # CONFIG_TINYDRM_ILI9486 is not set
  3499. # CONFIG_TINYDRM_MI0283QT is not set
  3500. # CONFIG_TINYDRM_REPAPER is not set
  3501. # CONFIG_TINYDRM_ST7586 is not set
  3502. # CONFIG_TINYDRM_ST7735R is not set
  3503. # CONFIG_DRM_VBOXVIDEO is not set
  3504. # CONFIG_DRM_LEGACY is not set
  3505. CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
  3506. #
  3507. # Frame buffer Devices
  3508. #
  3509. CONFIG_FB_CMDLINE=y
  3510. CONFIG_FB_NOTIFY=y
  3511. CONFIG_FB=y
  3512. CONFIG_FIRMWARE_EDID=y
  3513. CONFIG_FB_BOOT_VESA_SUPPORT=y
  3514. CONFIG_FB_CFB_FILLRECT=y
  3515. CONFIG_FB_CFB_COPYAREA=y
  3516. CONFIG_FB_CFB_IMAGEBLIT=y
  3517. CONFIG_FB_SYS_FILLRECT=y
  3518. CONFIG_FB_SYS_COPYAREA=y
  3519. CONFIG_FB_SYS_IMAGEBLIT=y
  3520. # CONFIG_FB_FOREIGN_ENDIAN is not set
  3521. CONFIG_FB_SYS_FOPS=y
  3522. CONFIG_FB_DEFERRED_IO=y
  3523. # CONFIG_FB_MODE_HELPERS is not set
  3524. CONFIG_FB_TILEBLITTING=y
  3525. #
  3526. # Frame buffer hardware drivers
  3527. #
  3528. # CONFIG_FB_CIRRUS is not set
  3529. # CONFIG_FB_PM2 is not set
  3530. # CONFIG_FB_CYBER2000 is not set
  3531. # CONFIG_FB_ARC is not set
  3532. # CONFIG_FB_ASILIANT is not set
  3533. # CONFIG_FB_IMSTT is not set
  3534. # CONFIG_FB_VGA16 is not set
  3535. # CONFIG_FB_UVESA is not set
  3536. CONFIG_FB_VESA=y
  3537. CONFIG_FB_EFI=y
  3538. # CONFIG_FB_N411 is not set
  3539. # CONFIG_FB_HGA is not set
  3540. # CONFIG_FB_OPENCORES is not set
  3541. # CONFIG_FB_S1D13XXX is not set
  3542. # CONFIG_FB_NVIDIA is not set
  3543. # CONFIG_FB_RIVA is not set
  3544. # CONFIG_FB_I740 is not set
  3545. # CONFIG_FB_LE80578 is not set
  3546. # CONFIG_FB_MATROX is not set
  3547. # CONFIG_FB_RADEON is not set
  3548. # CONFIG_FB_ATY128 is not set
  3549. # CONFIG_FB_ATY is not set
  3550. # CONFIG_FB_S3 is not set
  3551. # CONFIG_FB_SAVAGE is not set
  3552. # CONFIG_FB_SIS is not set
  3553. # CONFIG_FB_VIA is not set
  3554. # CONFIG_FB_NEOMAGIC is not set
  3555. # CONFIG_FB_KYRO is not set
  3556. # CONFIG_FB_3DFX is not set
  3557. # CONFIG_FB_VOODOO1 is not set
  3558. # CONFIG_FB_VT8623 is not set
  3559. # CONFIG_FB_TRIDENT is not set
  3560. # CONFIG_FB_ARK is not set
  3561. # CONFIG_FB_PM3 is not set
  3562. # CONFIG_FB_CARMINE is not set
  3563. # CONFIG_FB_SMSCUFX is not set
  3564. # CONFIG_FB_UDL is not set
  3565. # CONFIG_FB_IBM_GXT4500 is not set
  3566. # CONFIG_FB_VIRTUAL is not set
  3567. # CONFIG_FB_METRONOME is not set
  3568. # CONFIG_FB_MB862XX is not set
  3569. CONFIG_FB_SIMPLE=y
  3570. # CONFIG_FB_SM712 is not set
  3571. # end of Frame buffer Devices
  3572. #
  3573. # Backlight & LCD device support
  3574. #
  3575. # CONFIG_LCD_CLASS_DEVICE is not set
  3576. CONFIG_BACKLIGHT_CLASS_DEVICE=y
  3577. # CONFIG_BACKLIGHT_KTD253 is not set
  3578. # CONFIG_BACKLIGHT_PWM is not set
  3579. # CONFIG_BACKLIGHT_DA903X is not set
  3580. # CONFIG_BACKLIGHT_DA9052 is not set
  3581. # CONFIG_BACKLIGHT_MAX8925 is not set
  3582. # CONFIG_BACKLIGHT_APPLE is not set
  3583. # CONFIG_BACKLIGHT_QCOM_WLED is not set
  3584. # CONFIG_BACKLIGHT_SAHARA is not set
  3585. # CONFIG_BACKLIGHT_WM831X is not set
  3586. # CONFIG_BACKLIGHT_ADP5520 is not set
  3587. # CONFIG_BACKLIGHT_ADP8860 is not set
  3588. # CONFIG_BACKLIGHT_ADP8870 is not set
  3589. # CONFIG_BACKLIGHT_88PM860X is not set
  3590. # CONFIG_BACKLIGHT_AAT2870 is not set
  3591. # CONFIG_BACKLIGHT_LM3630A is not set
  3592. # CONFIG_BACKLIGHT_LM3639 is not set
  3593. # CONFIG_BACKLIGHT_LP855X is not set
  3594. # CONFIG_BACKLIGHT_LP8788 is not set
  3595. # CONFIG_BACKLIGHT_PANDORA is not set
  3596. # CONFIG_BACKLIGHT_AS3711 is not set
  3597. # CONFIG_BACKLIGHT_GPIO is not set
  3598. # CONFIG_BACKLIGHT_LV5207LP is not set
  3599. # CONFIG_BACKLIGHT_BD6107 is not set
  3600. # CONFIG_BACKLIGHT_ARCXCNN is not set
  3601. # end of Backlight & LCD device support
  3602. CONFIG_HDMI=y
  3603. #
  3604. # Console display driver support
  3605. #
  3606. CONFIG_VGA_CONSOLE=y
  3607. CONFIG_DUMMY_CONSOLE=y
  3608. CONFIG_DUMMY_CONSOLE_COLUMNS=80
  3609. CONFIG_DUMMY_CONSOLE_ROWS=25
  3610. CONFIG_FRAMEBUFFER_CONSOLE=y
  3611. CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
  3612. CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
  3613. CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y
  3614. # end of Console display driver support
  3615. # CONFIG_LOGO is not set
  3616. # end of Graphics support
  3617. CONFIG_SOUND=y
  3618. CONFIG_SOUND_OSS_CORE=y
  3619. # CONFIG_SOUND_OSS_CORE_PRECLAIM is not set
  3620. CONFIG_SND=y
  3621. CONFIG_SND_TIMER=y
  3622. CONFIG_SND_PCM=y
  3623. CONFIG_SND_DMAENGINE_PCM=y
  3624. CONFIG_SND_HWDEP=y
  3625. CONFIG_SND_COMPRESS_OFFLOAD=y
  3626. CONFIG_SND_JACK=y
  3627. CONFIG_SND_JACK_INPUT_DEV=y
  3628. CONFIG_SND_OSSEMUL=y
  3629. # CONFIG_SND_MIXER_OSS is not set
  3630. # CONFIG_SND_PCM_OSS is not set
  3631. CONFIG_SND_PCM_TIMER=y
  3632. # CONFIG_SND_HRTIMER is not set
  3633. CONFIG_SND_DYNAMIC_MINORS=y
  3634. CONFIG_SND_MAX_CARDS=32
  3635. # CONFIG_SND_SUPPORT_OLD_API is not set
  3636. CONFIG_SND_PROC_FS=y
  3637. CONFIG_SND_VERBOSE_PROCFS=y
  3638. CONFIG_SND_VERBOSE_PRINTK=y
  3639. CONFIG_SND_DEBUG=y
  3640. # CONFIG_SND_DEBUG_VERBOSE is not set
  3641. # CONFIG_SND_PCM_XRUN_DEBUG is not set
  3642. # CONFIG_SND_CTL_VALIDATION is not set
  3643. # CONFIG_SND_JACK_INJECTION_DEBUG is not set
  3644. CONFIG_SND_VMASTER=y
  3645. CONFIG_SND_DMA_SGBUF=y
  3646. # CONFIG_SND_SEQUENCER is not set
  3647. CONFIG_SND_AC97_CODEC=y
  3648. CONFIG_SND_DRIVERS=y
  3649. # CONFIG_SND_PCSP is not set
  3650. # CONFIG_SND_DUMMY is not set
  3651. # CONFIG_SND_ALOOP is not set
  3652. # CONFIG_SND_MTPAV is not set
  3653. # CONFIG_SND_SERIAL_U16550 is not set
  3654. # CONFIG_SND_MPU401 is not set
  3655. # CONFIG_SND_AC97_POWER_SAVE is not set
  3656. CONFIG_SND_PCI=y
  3657. # CONFIG_SND_AD1889 is not set
  3658. # CONFIG_SND_ALS300 is not set
  3659. # CONFIG_SND_ALS4000 is not set
  3660. # CONFIG_SND_ALI5451 is not set
  3661. # CONFIG_SND_ASIHPI is not set
  3662. # CONFIG_SND_ATIIXP is not set
  3663. # CONFIG_SND_ATIIXP_MODEM is not set
  3664. # CONFIG_SND_AU8810 is not set
  3665. # CONFIG_SND_AU8820 is not set
  3666. # CONFIG_SND_AU8830 is not set
  3667. # CONFIG_SND_AW2 is not set
  3668. # CONFIG_SND_AZT3328 is not set
  3669. # CONFIG_SND_BT87X is not set
  3670. # CONFIG_SND_CA0106 is not set
  3671. # CONFIG_SND_CMIPCI is not set
  3672. # CONFIG_SND_OXYGEN is not set
  3673. # CONFIG_SND_CS4281 is not set
  3674. # CONFIG_SND_CS46XX is not set
  3675. # CONFIG_SND_CTXFI is not set
  3676. # CONFIG_SND_DARLA20 is not set
  3677. # CONFIG_SND_GINA20 is not set
  3678. # CONFIG_SND_LAYLA20 is not set
  3679. # CONFIG_SND_DARLA24 is not set
  3680. # CONFIG_SND_GINA24 is not set
  3681. # CONFIG_SND_LAYLA24 is not set
  3682. # CONFIG_SND_MONA is not set
  3683. # CONFIG_SND_MIA is not set
  3684. # CONFIG_SND_ECHO3G is not set
  3685. # CONFIG_SND_INDIGO is not set
  3686. # CONFIG_SND_INDIGOIO is not set
  3687. # CONFIG_SND_INDIGODJ is not set
  3688. # CONFIG_SND_INDIGOIOX is not set
  3689. # CONFIG_SND_INDIGODJX is not set
  3690. # CONFIG_SND_EMU10K1 is not set
  3691. # CONFIG_SND_EMU10K1X is not set
  3692. # CONFIG_SND_ENS1370 is not set
  3693. # CONFIG_SND_ENS1371 is not set
  3694. # CONFIG_SND_ES1938 is not set
  3695. # CONFIG_SND_ES1968 is not set
  3696. # CONFIG_SND_FM801 is not set
  3697. # CONFIG_SND_HDSP is not set
  3698. # CONFIG_SND_HDSPM is not set
  3699. # CONFIG_SND_ICE1712 is not set
  3700. # CONFIG_SND_ICE1724 is not set
  3701. # CONFIG_SND_INTEL8X0 is not set
  3702. # CONFIG_SND_INTEL8X0M is not set
  3703. # CONFIG_SND_KORG1212 is not set
  3704. # CONFIG_SND_LOLA is not set
  3705. # CONFIG_SND_LX6464ES is not set
  3706. # CONFIG_SND_MAESTRO3 is not set
  3707. # CONFIG_SND_MIXART is not set
  3708. # CONFIG_SND_NM256 is not set
  3709. # CONFIG_SND_PCXHR is not set
  3710. # CONFIG_SND_RIPTIDE is not set
  3711. # CONFIG_SND_RME32 is not set
  3712. # CONFIG_SND_RME96 is not set
  3713. # CONFIG_SND_RME9652 is not set
  3714. # CONFIG_SND_SE6X is not set
  3715. # CONFIG_SND_SONICVIBES is not set
  3716. # CONFIG_SND_TRIDENT is not set
  3717. # CONFIG_SND_VIA82XX is not set
  3718. # CONFIG_SND_VIA82XX_MODEM is not set
  3719. # CONFIG_SND_VIRTUOSO is not set
  3720. # CONFIG_SND_VX222 is not set
  3721. # CONFIG_SND_YMFPCI is not set
  3722. #
  3723. # HD-Audio
  3724. #
  3725. CONFIG_SND_HDA=y
  3726. CONFIG_SND_HDA_GENERIC_LEDS=y
  3727. CONFIG_SND_HDA_INTEL=y
  3728. CONFIG_SND_HDA_HWDEP=y
  3729. CONFIG_SND_HDA_RECONFIG=y
  3730. CONFIG_SND_HDA_INPUT_BEEP=y
  3731. CONFIG_SND_HDA_INPUT_BEEP_MODE=0
  3732. CONFIG_SND_HDA_PATCH_LOADER=y
  3733. CONFIG_SND_HDA_CODEC_REALTEK=y
  3734. # CONFIG_SND_HDA_CODEC_ANALOG is not set
  3735. # CONFIG_SND_HDA_CODEC_SIGMATEL is not set
  3736. # CONFIG_SND_HDA_CODEC_VIA is not set
  3737. CONFIG_SND_HDA_CODEC_HDMI=y
  3738. # CONFIG_SND_HDA_CODEC_CIRRUS is not set
  3739. # CONFIG_SND_HDA_CODEC_CONEXANT is not set
  3740. # CONFIG_SND_HDA_CODEC_CA0110 is not set
  3741. # CONFIG_SND_HDA_CODEC_CA0132 is not set
  3742. # CONFIG_SND_HDA_CODEC_CMEDIA is not set
  3743. # CONFIG_SND_HDA_CODEC_SI3054 is not set
  3744. CONFIG_SND_HDA_GENERIC=y
  3745. CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1
  3746. CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y
  3747. # end of HD-Audio
  3748. CONFIG_SND_HDA_CORE=y
  3749. CONFIG_SND_HDA_COMPONENT=y
  3750. CONFIG_SND_HDA_PREALLOC_SIZE=4096
  3751. CONFIG_SND_INTEL_NHLT=y
  3752. CONFIG_SND_INTEL_DSP_CONFIG=y
  3753. CONFIG_SND_INTEL_SOUNDWIRE_ACPI=y
  3754. CONFIG_SND_SPI=y
  3755. CONFIG_SND_USB=y
  3756. # CONFIG_SND_USB_AUDIO is not set
  3757. # CONFIG_SND_USB_UA101 is not set
  3758. # CONFIG_SND_USB_USX2Y is not set
  3759. # CONFIG_SND_USB_CAIAQ is not set
  3760. # CONFIG_SND_USB_US122L is not set
  3761. # CONFIG_SND_USB_6FIRE is not set
  3762. # CONFIG_SND_USB_HIFACE is not set
  3763. # CONFIG_SND_BCD2000 is not set
  3764. # CONFIG_SND_USB_POD is not set
  3765. # CONFIG_SND_USB_PODHD is not set
  3766. # CONFIG_SND_USB_TONEPORT is not set
  3767. # CONFIG_SND_USB_VARIAX is not set
  3768. CONFIG_SND_SOC=y
  3769. CONFIG_SND_SOC_AC97_BUS=y
  3770. CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
  3771. CONFIG_SND_SOC_COMPRESS=y
  3772. # CONFIG_SND_SOC_ADI is not set
  3773. # CONFIG_SND_SOC_AMD_ACP is not set
  3774. # CONFIG_SND_SOC_AMD_ACP3x is not set
  3775. # CONFIG_SND_SOC_AMD_RENOIR is not set
  3776. # CONFIG_SND_ATMEL_SOC is not set
  3777. # CONFIG_SND_BCM63XX_I2S_WHISTLER is not set
  3778. # CONFIG_SND_DESIGNWARE_I2S is not set
  3779. #
  3780. # SoC Audio for Freescale CPUs
  3781. #
  3782. #
  3783. # Common SoC Audio options for Freescale CPUs:
  3784. #
  3785. # CONFIG_SND_SOC_FSL_ASRC is not set
  3786. # CONFIG_SND_SOC_FSL_SAI is not set
  3787. # CONFIG_SND_SOC_FSL_AUDMIX is not set
  3788. # CONFIG_SND_SOC_FSL_SSI is not set
  3789. # CONFIG_SND_SOC_FSL_SPDIF is not set
  3790. # CONFIG_SND_SOC_FSL_ESAI is not set
  3791. # CONFIG_SND_SOC_FSL_MICFIL is not set
  3792. # CONFIG_SND_SOC_FSL_XCVR is not set
  3793. # CONFIG_SND_SOC_IMX_AUDMUX is not set
  3794. # end of SoC Audio for Freescale CPUs
  3795. # CONFIG_SND_I2S_HI6210_I2S is not set
  3796. CONFIG_SND_SOC_IMG=y
  3797. # CONFIG_SND_SOC_IMG_I2S_IN is not set
  3798. # CONFIG_SND_SOC_IMG_I2S_OUT is not set
  3799. # CONFIG_SND_SOC_IMG_PARALLEL_OUT is not set
  3800. # CONFIG_SND_SOC_IMG_SPDIF_IN is not set
  3801. # CONFIG_SND_SOC_IMG_SPDIF_OUT is not set
  3802. # CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC is not set
  3803. CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
  3804. # CONFIG_SND_SOC_INTEL_CATPT is not set
  3805. CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=y
  3806. CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=y
  3807. # CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI is not set
  3808. # CONFIG_SND_SOC_INTEL_SKYLAKE is not set
  3809. # CONFIG_SND_SOC_INTEL_SKL is not set
  3810. # CONFIG_SND_SOC_INTEL_APL is not set
  3811. # CONFIG_SND_SOC_INTEL_KBL is not set
  3812. # CONFIG_SND_SOC_INTEL_GLK is not set
  3813. # CONFIG_SND_SOC_INTEL_CNL is not set
  3814. # CONFIG_SND_SOC_INTEL_CFL is not set
  3815. # CONFIG_SND_SOC_INTEL_CML_H is not set
  3816. # CONFIG_SND_SOC_INTEL_CML_LP is not set
  3817. CONFIG_SND_SOC_INTEL_MACH=y
  3818. CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES=y
  3819. # CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH is not set
  3820. # CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH is not set
  3821. # CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH is not set
  3822. # CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH is not set
  3823. # CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH is not set
  3824. # CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH is not set
  3825. # CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH is not set
  3826. # CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH is not set
  3827. # CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH is not set
  3828. # CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH is not set
  3829. # CONFIG_SND_SOC_MTK_BTCVSD is not set
  3830. CONFIG_SND_SOC_SOF_TOPLEVEL=y
  3831. # CONFIG_SND_SOC_SOF_PCI is not set
  3832. # CONFIG_SND_SOC_SOF_ACPI is not set
  3833. # CONFIG_SND_SOC_SOF_DEBUG_PROBES is not set
  3834. # CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT is not set
  3835. CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y
  3836. #
  3837. # STMicroelectronics STM32 SOC audio support
  3838. #
  3839. # end of STMicroelectronics STM32 SOC audio support
  3840. # CONFIG_SND_SOC_XILINX_I2S is not set
  3841. # CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set
  3842. # CONFIG_SND_SOC_XILINX_SPDIF is not set
  3843. # CONFIG_SND_SOC_XTFPGA_I2S is not set
  3844. CONFIG_SND_SOC_I2C_AND_SPI=y
  3845. #
  3846. # CODEC drivers
  3847. #
  3848. CONFIG_SND_SOC_AC97_CODEC=y
  3849. # CONFIG_SND_SOC_ADAU1372_I2C is not set
  3850. # CONFIG_SND_SOC_ADAU1372_SPI is not set
  3851. # CONFIG_SND_SOC_ADAU1701 is not set
  3852. # CONFIG_SND_SOC_ADAU1761_I2C is not set
  3853. # CONFIG_SND_SOC_ADAU1761_SPI is not set
  3854. # CONFIG_SND_SOC_ADAU7002 is not set
  3855. # CONFIG_SND_SOC_ADAU7118_HW is not set
  3856. # CONFIG_SND_SOC_ADAU7118_I2C is not set
  3857. # CONFIG_SND_SOC_AK4104 is not set
  3858. # CONFIG_SND_SOC_AK4118 is not set
  3859. # CONFIG_SND_SOC_AK4458 is not set
  3860. # CONFIG_SND_SOC_AK4554 is not set
  3861. # CONFIG_SND_SOC_AK4613 is not set
  3862. # CONFIG_SND_SOC_AK4642 is not set
  3863. # CONFIG_SND_SOC_AK5386 is not set
  3864. # CONFIG_SND_SOC_AK5558 is not set
  3865. # CONFIG_SND_SOC_ALC5623 is not set
  3866. # CONFIG_SND_SOC_BD28623 is not set
  3867. # CONFIG_SND_SOC_BT_SCO is not set
  3868. # CONFIG_SND_SOC_CS35L32 is not set
  3869. # CONFIG_SND_SOC_CS35L33 is not set
  3870. # CONFIG_SND_SOC_CS35L34 is not set
  3871. # CONFIG_SND_SOC_CS35L35 is not set
  3872. # CONFIG_SND_SOC_CS35L36 is not set
  3873. # CONFIG_SND_SOC_CS42L42 is not set
  3874. # CONFIG_SND_SOC_CS42L51_I2C is not set
  3875. # CONFIG_SND_SOC_CS42L52 is not set
  3876. # CONFIG_SND_SOC_CS42L56 is not set
  3877. # CONFIG_SND_SOC_CS42L73 is not set
  3878. # CONFIG_SND_SOC_CS4234 is not set
  3879. # CONFIG_SND_SOC_CS4265 is not set
  3880. # CONFIG_SND_SOC_CS4270 is not set
  3881. # CONFIG_SND_SOC_CS4271_I2C is not set
  3882. # CONFIG_SND_SOC_CS4271_SPI is not set
  3883. # CONFIG_SND_SOC_CS42XX8_I2C is not set
  3884. # CONFIG_SND_SOC_CS43130 is not set
  3885. # CONFIG_SND_SOC_CS4341 is not set
  3886. # CONFIG_SND_SOC_CS4349 is not set
  3887. # CONFIG_SND_SOC_CS53L30 is not set
  3888. # CONFIG_SND_SOC_CX2072X is not set
  3889. # CONFIG_SND_SOC_DA7213 is not set
  3890. # CONFIG_SND_SOC_DMIC is not set
  3891. # CONFIG_SND_SOC_ES7134 is not set
  3892. # CONFIG_SND_SOC_ES7241 is not set
  3893. # CONFIG_SND_SOC_ES8316 is not set
  3894. # CONFIG_SND_SOC_ES8328_I2C is not set
  3895. # CONFIG_SND_SOC_ES8328_SPI is not set
  3896. # CONFIG_SND_SOC_GTM601 is not set
  3897. # CONFIG_SND_SOC_INNO_RK3036 is not set
  3898. # CONFIG_SND_SOC_MAX98088 is not set
  3899. # CONFIG_SND_SOC_MAX98357A is not set
  3900. # CONFIG_SND_SOC_MAX98504 is not set
  3901. # CONFIG_SND_SOC_MAX9867 is not set
  3902. # CONFIG_SND_SOC_MAX98927 is not set
  3903. # CONFIG_SND_SOC_MAX98373_I2C is not set
  3904. # CONFIG_SND_SOC_MAX98373_SDW is not set
  3905. # CONFIG_SND_SOC_MAX98390 is not set
  3906. # CONFIG_SND_SOC_MAX9860 is not set
  3907. # CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
  3908. # CONFIG_SND_SOC_PCM1681 is not set
  3909. # CONFIG_SND_SOC_PCM1789_I2C is not set
  3910. # CONFIG_SND_SOC_PCM179X_I2C is not set
  3911. # CONFIG_SND_SOC_PCM179X_SPI is not set
  3912. # CONFIG_SND_SOC_PCM186X_I2C is not set
  3913. # CONFIG_SND_SOC_PCM186X_SPI is not set
  3914. # CONFIG_SND_SOC_PCM3060_I2C is not set
  3915. # CONFIG_SND_SOC_PCM3060_SPI is not set
  3916. # CONFIG_SND_SOC_PCM3168A_I2C is not set
  3917. # CONFIG_SND_SOC_PCM3168A_SPI is not set
  3918. # CONFIG_SND_SOC_PCM5102A is not set
  3919. # CONFIG_SND_SOC_PCM512x_I2C is not set
  3920. # CONFIG_SND_SOC_PCM512x_SPI is not set
  3921. # CONFIG_SND_SOC_RK3328 is not set
  3922. # CONFIG_SND_SOC_RT1308_SDW is not set
  3923. # CONFIG_SND_SOC_RT5616 is not set
  3924. # CONFIG_SND_SOC_RT5631 is not set
  3925. # CONFIG_SND_SOC_RT5659 is not set
  3926. # CONFIG_SND_SOC_RT5682_SDW is not set
  3927. # CONFIG_SND_SOC_RT700_SDW is not set
  3928. # CONFIG_SND_SOC_RT711_SDW is not set
  3929. # CONFIG_SND_SOC_RT715_SDW is not set
  3930. # CONFIG_SND_SOC_SGTL5000 is not set
  3931. # CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set
  3932. # CONFIG_SND_SOC_SIMPLE_MUX is not set
  3933. # CONFIG_SND_SOC_SPDIF is not set
  3934. # CONFIG_SND_SOC_SSM2305 is not set
  3935. # CONFIG_SND_SOC_SSM2602_SPI is not set
  3936. # CONFIG_SND_SOC_SSM2602_I2C is not set
  3937. # CONFIG_SND_SOC_SSM4567 is not set
  3938. # CONFIG_SND_SOC_STA32X is not set
  3939. # CONFIG_SND_SOC_STA350 is not set
  3940. # CONFIG_SND_SOC_STI_SAS is not set
  3941. # CONFIG_SND_SOC_TAS2552 is not set
  3942. # CONFIG_SND_SOC_TAS2562 is not set
  3943. # CONFIG_SND_SOC_TAS2764 is not set
  3944. # CONFIG_SND_SOC_TAS2770 is not set
  3945. # CONFIG_SND_SOC_TAS5086 is not set
  3946. # CONFIG_SND_SOC_TAS571X is not set
  3947. # CONFIG_SND_SOC_TAS5720 is not set
  3948. # CONFIG_SND_SOC_TAS6424 is not set
  3949. # CONFIG_SND_SOC_TDA7419 is not set
  3950. # CONFIG_SND_SOC_TFA9879 is not set
  3951. # CONFIG_SND_SOC_TLV320AIC23_I2C is not set
  3952. # CONFIG_SND_SOC_TLV320AIC23_SPI is not set
  3953. # CONFIG_SND_SOC_TLV320AIC31XX is not set
  3954. # CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
  3955. # CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
  3956. # CONFIG_SND_SOC_TLV320AIC3X is not set
  3957. # CONFIG_SND_SOC_TLV320ADCX140 is not set
  3958. # CONFIG_SND_SOC_TS3A227E is not set
  3959. # CONFIG_SND_SOC_TSCS42XX is not set
  3960. # CONFIG_SND_SOC_TSCS454 is not set
  3961. # CONFIG_SND_SOC_UDA1334 is not set
  3962. # CONFIG_SND_SOC_WM8510 is not set
  3963. # CONFIG_SND_SOC_WM8523 is not set
  3964. # CONFIG_SND_SOC_WM8524 is not set
  3965. # CONFIG_SND_SOC_WM8580 is not set
  3966. # CONFIG_SND_SOC_WM8711 is not set
  3967. # CONFIG_SND_SOC_WM8728 is not set
  3968. # CONFIG_SND_SOC_WM8731 is not set
  3969. # CONFIG_SND_SOC_WM8737 is not set
  3970. # CONFIG_SND_SOC_WM8741 is not set
  3971. # CONFIG_SND_SOC_WM8750 is not set
  3972. # CONFIG_SND_SOC_WM8753 is not set
  3973. # CONFIG_SND_SOC_WM8770 is not set
  3974. # CONFIG_SND_SOC_WM8776 is not set
  3975. # CONFIG_SND_SOC_WM8782 is not set
  3976. # CONFIG_SND_SOC_WM8804_I2C is not set
  3977. # CONFIG_SND_SOC_WM8804_SPI is not set
  3978. # CONFIG_SND_SOC_WM8903 is not set
  3979. # CONFIG_SND_SOC_WM8904 is not set
  3980. # CONFIG_SND_SOC_WM8960 is not set
  3981. # CONFIG_SND_SOC_WM8962 is not set
  3982. # CONFIG_SND_SOC_WM8974 is not set
  3983. # CONFIG_SND_SOC_WM8978 is not set
  3984. # CONFIG_SND_SOC_WM8985 is not set
  3985. # CONFIG_SND_SOC_WSA881X is not set
  3986. # CONFIG_SND_SOC_ZL38060 is not set
  3987. # CONFIG_SND_SOC_ZX_AUD96P22 is not set
  3988. # CONFIG_SND_SOC_MAX9759 is not set
  3989. # CONFIG_SND_SOC_MT6351 is not set
  3990. # CONFIG_SND_SOC_MT6358 is not set
  3991. # CONFIG_SND_SOC_MT6660 is not set
  3992. # CONFIG_SND_SOC_NAU8315 is not set
  3993. # CONFIG_SND_SOC_NAU8540 is not set
  3994. # CONFIG_SND_SOC_NAU8810 is not set
  3995. # CONFIG_SND_SOC_NAU8822 is not set
  3996. # CONFIG_SND_SOC_NAU8824 is not set
  3997. # CONFIG_SND_SOC_TPA6130A2 is not set
  3998. # CONFIG_SND_SOC_LPASS_WSA_MACRO is not set
  3999. # CONFIG_SND_SOC_LPASS_VA_MACRO is not set
  4000. # CONFIG_SND_SOC_LPASS_RX_MACRO is not set
  4001. # CONFIG_SND_SOC_LPASS_TX_MACRO is not set
  4002. # end of CODEC drivers
  4003. # CONFIG_SND_SIMPLE_CARD is not set
  4004. CONFIG_SND_X86=y
  4005. CONFIG_AC97_BUS=y
  4006. #
  4007. # HID support
  4008. #
  4009. CONFIG_HID=y
  4010. CONFIG_HID_BATTERY_STRENGTH=y
  4011. CONFIG_HIDRAW=y
  4012. # CONFIG_UHID is not set
  4013. CONFIG_HID_GENERIC=y
  4014. #
  4015. # Special HID drivers
  4016. #
  4017. # CONFIG_HID_A4TECH is not set
  4018. # CONFIG_HID_ACCUTOUCH is not set
  4019. # CONFIG_HID_ACRUX is not set
  4020. # CONFIG_HID_APPLE is not set
  4021. # CONFIG_HID_APPLEIR is not set
  4022. # CONFIG_HID_ASUS is not set
  4023. # CONFIG_HID_AUREAL is not set
  4024. # CONFIG_HID_BELKIN is not set
  4025. # CONFIG_HID_BETOP_FF is not set
  4026. # CONFIG_HID_BIGBEN_FF is not set
  4027. # CONFIG_HID_CHERRY is not set
  4028. # CONFIG_HID_CHICONY is not set
  4029. # CONFIG_HID_CORSAIR is not set
  4030. # CONFIG_HID_COUGAR is not set
  4031. # CONFIG_HID_MACALLY is not set
  4032. # CONFIG_HID_PRODIKEYS is not set
  4033. # CONFIG_HID_CMEDIA is not set
  4034. # CONFIG_HID_CP2112 is not set
  4035. # CONFIG_HID_CREATIVE_SB0540 is not set
  4036. # CONFIG_HID_CYPRESS is not set
  4037. # CONFIG_HID_DRAGONRISE is not set
  4038. # CONFIG_HID_EMS_FF is not set
  4039. # CONFIG_HID_ELAN is not set
  4040. # CONFIG_HID_ELECOM is not set
  4041. # CONFIG_HID_ELO is not set
  4042. # CONFIG_HID_EZKEY is not set
  4043. # CONFIG_HID_GEMBIRD is not set
  4044. # CONFIG_HID_GFRM is not set
  4045. # CONFIG_HID_GLORIOUS is not set
  4046. # CONFIG_HID_HOLTEK is not set
  4047. # CONFIG_HID_VIVALDI is not set
  4048. # CONFIG_HID_GT683R is not set
  4049. # CONFIG_HID_KEYTOUCH is not set
  4050. # CONFIG_HID_KYE is not set
  4051. # CONFIG_HID_UCLOGIC is not set
  4052. # CONFIG_HID_WALTOP is not set
  4053. # CONFIG_HID_VIEWSONIC is not set
  4054. # CONFIG_HID_GYRATION is not set
  4055. # CONFIG_HID_ICADE is not set
  4056. # CONFIG_HID_ITE is not set
  4057. # CONFIG_HID_JABRA is not set
  4058. # CONFIG_HID_TWINHAN is not set
  4059. # CONFIG_HID_KENSINGTON is not set
  4060. # CONFIG_HID_LCPOWER is not set
  4061. # CONFIG_HID_LED is not set
  4062. # CONFIG_HID_LENOVO is not set
  4063. CONFIG_HID_LOGITECH=y
  4064. CONFIG_HID_LOGITECH_DJ=y
  4065. CONFIG_HID_LOGITECH_HIDPP=y
  4066. CONFIG_LOGITECH_FF=y
  4067. CONFIG_LOGIRUMBLEPAD2_FF=y
  4068. CONFIG_LOGIG940_FF=y
  4069. CONFIG_LOGIWHEELS_FF=y
  4070. # CONFIG_HID_MAGICMOUSE is not set
  4071. # CONFIG_HID_MALTRON is not set
  4072. # CONFIG_HID_MAYFLASH is not set
  4073. # CONFIG_HID_REDRAGON is not set
  4074. # CONFIG_HID_MICROSOFT is not set
  4075. # CONFIG_HID_MONTEREY is not set
  4076. # CONFIG_HID_MULTITOUCH is not set
  4077. # CONFIG_HID_NTI is not set
  4078. # CONFIG_HID_NTRIG is not set
  4079. # CONFIG_HID_ORTEK is not set
  4080. # CONFIG_HID_PANTHERLORD is not set
  4081. # CONFIG_HID_PENMOUNT is not set
  4082. # CONFIG_HID_PETALYNX is not set
  4083. # CONFIG_HID_PICOLCD is not set
  4084. # CONFIG_HID_PLANTRONICS is not set
  4085. # CONFIG_HID_PLAYSTATION is not set
  4086. # CONFIG_HID_PRIMAX is not set
  4087. # CONFIG_HID_RETRODE is not set
  4088. # CONFIG_HID_ROCCAT is not set
  4089. # CONFIG_HID_SAITEK is not set
  4090. # CONFIG_HID_SAMSUNG is not set
  4091. # CONFIG_HID_SONY is not set
  4092. # CONFIG_HID_SPEEDLINK is not set
  4093. # CONFIG_HID_STEAM is not set
  4094. # CONFIG_HID_STEELSERIES is not set
  4095. # CONFIG_HID_SUNPLUS is not set
  4096. # CONFIG_HID_RMI is not set
  4097. # CONFIG_HID_GREENASIA is not set
  4098. # CONFIG_HID_SMARTJOYPLUS is not set
  4099. # CONFIG_HID_TIVO is not set
  4100. # CONFIG_HID_TOPSEED is not set
  4101. # CONFIG_HID_THINGM is not set
  4102. # CONFIG_HID_THRUSTMASTER is not set
  4103. # CONFIG_HID_UDRAW_PS3 is not set
  4104. # CONFIG_HID_U2FZERO is not set
  4105. # CONFIG_HID_WACOM is not set
  4106. # CONFIG_HID_WIIMOTE is not set
  4107. # CONFIG_HID_XINMO is not set
  4108. # CONFIG_HID_ZEROPLUS is not set
  4109. # CONFIG_HID_ZYDACRON is not set
  4110. # CONFIG_HID_SENSOR_HUB is not set
  4111. # CONFIG_HID_ALPS is not set
  4112. # CONFIG_HID_MCP2221 is not set
  4113. # end of Special HID drivers
  4114. #
  4115. # USB HID support
  4116. #
  4117. CONFIG_USB_HID=y
  4118. CONFIG_HID_PID=y
  4119. CONFIG_USB_HIDDEV=y
  4120. # end of USB HID support
  4121. #
  4122. # I2C HID support
  4123. #
  4124. # CONFIG_I2C_HID_ACPI is not set
  4125. # end of I2C HID support
  4126. #
  4127. # Intel ISH HID support
  4128. #
  4129. # CONFIG_INTEL_ISH_HID is not set
  4130. # end of Intel ISH HID support
  4131. #
  4132. # AMD SFH HID Support
  4133. #
  4134. # CONFIG_AMD_SFH_HID is not set
  4135. # end of AMD SFH HID Support
  4136. # end of HID support
  4137. CONFIG_USB_OHCI_LITTLE_ENDIAN=y
  4138. CONFIG_USB_SUPPORT=y
  4139. CONFIG_USB_COMMON=y
  4140. CONFIG_USB_LED_TRIG=y
  4141. # CONFIG_USB_ULPI_BUS is not set
  4142. # CONFIG_USB_CONN_GPIO is not set
  4143. CONFIG_USB_ARCH_HAS_HCD=y
  4144. CONFIG_USB=y
  4145. CONFIG_USB_PCI=y
  4146. CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
  4147. #
  4148. # Miscellaneous USB options
  4149. #
  4150. CONFIG_USB_DEFAULT_PERSIST=y
  4151. # CONFIG_USB_FEW_INIT_RETRIES is not set
  4152. # CONFIG_USB_DYNAMIC_MINORS is not set
  4153. # CONFIG_USB_OTG is not set
  4154. # CONFIG_USB_OTG_PRODUCTLIST is not set
  4155. # CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set
  4156. # CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
  4157. CONFIG_USB_AUTOSUSPEND_DELAY=2
  4158. # CONFIG_USB_MON is not set
  4159. #
  4160. # USB Host Controller Drivers
  4161. #
  4162. # CONFIG_USB_C67X00_HCD is not set
  4163. CONFIG_USB_XHCI_HCD=y
  4164. # CONFIG_USB_XHCI_DBGCAP is not set
  4165. CONFIG_USB_XHCI_PCI=y
  4166. CONFIG_USB_XHCI_PCI_RENESAS=y
  4167. # CONFIG_USB_XHCI_PLATFORM is not set
  4168. CONFIG_USB_EHCI_HCD=y
  4169. CONFIG_USB_EHCI_ROOT_HUB_TT=y
  4170. CONFIG_USB_EHCI_TT_NEWSCHED=y
  4171. CONFIG_USB_EHCI_PCI=y
  4172. # CONFIG_USB_EHCI_FSL is not set
  4173. # CONFIG_USB_EHCI_HCD_PLATFORM is not set
  4174. # CONFIG_USB_OXU210HP_HCD is not set
  4175. # CONFIG_USB_ISP116X_HCD is not set
  4176. # CONFIG_USB_FOTG210_HCD is not set
  4177. # CONFIG_USB_MAX3421_HCD is not set
  4178. CONFIG_USB_OHCI_HCD=y
  4179. CONFIG_USB_OHCI_HCD_PCI=y
  4180. # CONFIG_USB_OHCI_HCD_PLATFORM is not set
  4181. CONFIG_USB_UHCI_HCD=y
  4182. # CONFIG_USB_SL811_HCD is not set
  4183. # CONFIG_USB_R8A66597_HCD is not set
  4184. # CONFIG_USB_HCD_TEST_MODE is not set
  4185. #
  4186. # USB Device Class drivers
  4187. #
  4188. # CONFIG_USB_ACM is not set
  4189. # CONFIG_USB_PRINTER is not set
  4190. # CONFIG_USB_WDM is not set
  4191. # CONFIG_USB_TMC is not set
  4192. #
  4193. # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
  4194. #
  4195. #
  4196. # also be needed; see USB_STORAGE Help for more info
  4197. #
  4198. CONFIG_USB_STORAGE=y
  4199. # CONFIG_USB_STORAGE_DEBUG is not set
  4200. # CONFIG_USB_STORAGE_REALTEK is not set
  4201. # CONFIG_USB_STORAGE_DATAFAB is not set
  4202. # CONFIG_USB_STORAGE_FREECOM is not set
  4203. # CONFIG_USB_STORAGE_ISD200 is not set
  4204. # CONFIG_USB_STORAGE_USBAT is not set
  4205. # CONFIG_USB_STORAGE_SDDR09 is not set
  4206. # CONFIG_USB_STORAGE_SDDR55 is not set
  4207. # CONFIG_USB_STORAGE_JUMPSHOT is not set
  4208. # CONFIG_USB_STORAGE_ALAUDA is not set
  4209. # CONFIG_USB_STORAGE_ONETOUCH is not set
  4210. # CONFIG_USB_STORAGE_KARMA is not set
  4211. # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
  4212. # CONFIG_USB_STORAGE_ENE_UB6250 is not set
  4213. # CONFIG_USB_UAS is not set
  4214. #
  4215. # USB Imaging devices
  4216. #
  4217. # CONFIG_USB_MDC800 is not set
  4218. # CONFIG_USB_MICROTEK is not set
  4219. CONFIG_USBIP_CORE=y
  4220. # CONFIG_USBIP_VHCI_HCD is not set
  4221. CONFIG_USBIP_HOST=y
  4222. # CONFIG_USBIP_DEBUG is not set
  4223. # CONFIG_USB_CDNS_SUPPORT is not set
  4224. # CONFIG_USB_MUSB_HDRC is not set
  4225. # CONFIG_USB_DWC3 is not set
  4226. # CONFIG_USB_DWC2 is not set
  4227. # CONFIG_USB_CHIPIDEA is not set
  4228. # CONFIG_USB_ISP1760 is not set
  4229. #
  4230. # USB port drivers
  4231. #
  4232. CONFIG_USB_SERIAL=y
  4233. CONFIG_USB_SERIAL_CONSOLE=y
  4234. CONFIG_USB_SERIAL_GENERIC=y
  4235. # CONFIG_USB_SERIAL_SIMPLE is not set
  4236. # CONFIG_USB_SERIAL_AIRCABLE is not set
  4237. # CONFIG_USB_SERIAL_ARK3116 is not set
  4238. # CONFIG_USB_SERIAL_BELKIN is not set
  4239. # CONFIG_USB_SERIAL_CH341 is not set
  4240. # CONFIG_USB_SERIAL_WHITEHEAT is not set
  4241. # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
  4242. CONFIG_USB_SERIAL_CP210X=y
  4243. # CONFIG_USB_SERIAL_CYPRESS_M8 is not set
  4244. # CONFIG_USB_SERIAL_EMPEG is not set
  4245. CONFIG_USB_SERIAL_FTDI_SIO=y
  4246. # CONFIG_USB_SERIAL_VISOR is not set
  4247. # CONFIG_USB_SERIAL_IPAQ is not set
  4248. # CONFIG_USB_SERIAL_IR is not set
  4249. # CONFIG_USB_SERIAL_EDGEPORT is not set
  4250. # CONFIG_USB_SERIAL_EDGEPORT_TI is not set
  4251. # CONFIG_USB_SERIAL_F81232 is not set
  4252. # CONFIG_USB_SERIAL_F8153X is not set
  4253. # CONFIG_USB_SERIAL_GARMIN is not set
  4254. # CONFIG_USB_SERIAL_IPW is not set
  4255. # CONFIG_USB_SERIAL_IUU is not set
  4256. # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
  4257. # CONFIG_USB_SERIAL_KEYSPAN is not set
  4258. # CONFIG_USB_SERIAL_KLSI is not set
  4259. # CONFIG_USB_SERIAL_KOBIL_SCT is not set
  4260. # CONFIG_USB_SERIAL_MCT_U232 is not set
  4261. # CONFIG_USB_SERIAL_METRO is not set
  4262. # CONFIG_USB_SERIAL_MOS7720 is not set
  4263. # CONFIG_USB_SERIAL_MOS7840 is not set
  4264. # CONFIG_USB_SERIAL_MXUPORT is not set
  4265. # CONFIG_USB_SERIAL_NAVMAN is not set
  4266. # CONFIG_USB_SERIAL_PL2303 is not set
  4267. # CONFIG_USB_SERIAL_OTI6858 is not set
  4268. # CONFIG_USB_SERIAL_QCAUX is not set
  4269. # CONFIG_USB_SERIAL_QUALCOMM is not set
  4270. # CONFIG_USB_SERIAL_SPCP8X5 is not set
  4271. # CONFIG_USB_SERIAL_SAFE is not set
  4272. # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
  4273. # CONFIG_USB_SERIAL_SYMBOL is not set
  4274. # CONFIG_USB_SERIAL_TI is not set
  4275. # CONFIG_USB_SERIAL_CYBERJACK is not set
  4276. # CONFIG_USB_SERIAL_OPTION is not set
  4277. # CONFIG_USB_SERIAL_OMNINET is not set
  4278. # CONFIG_USB_SERIAL_OPTICON is not set
  4279. # CONFIG_USB_SERIAL_XSENS_MT is not set
  4280. # CONFIG_USB_SERIAL_WISHBONE is not set
  4281. # CONFIG_USB_SERIAL_SSU100 is not set
  4282. # CONFIG_USB_SERIAL_QT2 is not set
  4283. # CONFIG_USB_SERIAL_UPD78F0730 is not set
  4284. # CONFIG_USB_SERIAL_XR is not set
  4285. # CONFIG_USB_SERIAL_DEBUG is not set
  4286. #
  4287. # USB Miscellaneous drivers
  4288. #
  4289. # CONFIG_USB_EMI62 is not set
  4290. # CONFIG_USB_EMI26 is not set
  4291. # CONFIG_USB_ADUTUX is not set
  4292. # CONFIG_USB_SEVSEG is not set
  4293. # CONFIG_USB_LEGOTOWER is not set
  4294. # CONFIG_USB_LCD is not set
  4295. # CONFIG_USB_CYPRESS_CY7C63 is not set
  4296. # CONFIG_USB_CYTHERM is not set
  4297. # CONFIG_USB_IDMOUSE is not set
  4298. # CONFIG_USB_FTDI_ELAN is not set
  4299. # CONFIG_USB_APPLEDISPLAY is not set
  4300. # CONFIG_APPLE_MFI_FASTCHARGE is not set
  4301. # CONFIG_USB_SISUSBVGA is not set
  4302. # CONFIG_USB_LD is not set
  4303. # CONFIG_USB_TRANCEVIBRATOR is not set
  4304. # CONFIG_USB_IOWARRIOR is not set
  4305. # CONFIG_USB_TEST is not set
  4306. # CONFIG_USB_EHSET_TEST_FIXTURE is not set
  4307. # CONFIG_USB_ISIGHTFW is not set
  4308. # CONFIG_USB_YUREX is not set
  4309. # CONFIG_USB_EZUSB_FX2 is not set
  4310. # CONFIG_USB_HUB_USB251XB is not set
  4311. # CONFIG_USB_HSIC_USB3503 is not set
  4312. # CONFIG_USB_HSIC_USB4604 is not set
  4313. # CONFIG_USB_LINK_LAYER_TEST is not set
  4314. # CONFIG_USB_CHAOSKEY is not set
  4315. #
  4316. # USB Physical Layer drivers
  4317. #
  4318. # CONFIG_NOP_USB_XCEIV is not set
  4319. # CONFIG_USB_GPIO_VBUS is not set
  4320. # CONFIG_USB_ISP1301 is not set
  4321. # end of USB Physical Layer drivers
  4322. # CONFIG_USB_GADGET is not set
  4323. # CONFIG_TYPEC is not set
  4324. # CONFIG_USB_ROLE_SWITCH is not set
  4325. # CONFIG_MMC is not set
  4326. # CONFIG_MEMSTICK is not set
  4327. CONFIG_NEW_LEDS=y
  4328. CONFIG_LEDS_CLASS=y
  4329. # CONFIG_LEDS_CLASS_FLASH is not set
  4330. # CONFIG_LEDS_CLASS_MULTICOLOR is not set
  4331. CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
  4332. #
  4333. # LED drivers
  4334. #
  4335. # CONFIG_LEDS_88PM860X is not set
  4336. # CONFIG_LEDS_APU is not set
  4337. # CONFIG_LEDS_LM3530 is not set
  4338. # CONFIG_LEDS_LM3532 is not set
  4339. # CONFIG_LEDS_LM3642 is not set
  4340. # CONFIG_LEDS_PCA9532 is not set
  4341. # CONFIG_LEDS_GPIO is not set
  4342. # CONFIG_LEDS_LP3944 is not set
  4343. # CONFIG_LEDS_LP3952 is not set
  4344. # CONFIG_LEDS_LP50XX is not set
  4345. # CONFIG_LEDS_LP8788 is not set
  4346. # CONFIG_LEDS_CLEVO_MAIL is not set
  4347. # CONFIG_LEDS_PCA955X is not set
  4348. # CONFIG_LEDS_PCA963X is not set
  4349. # CONFIG_LEDS_WM831X_STATUS is not set
  4350. # CONFIG_LEDS_WM8350 is not set
  4351. # CONFIG_LEDS_DA903X is not set
  4352. # CONFIG_LEDS_DA9052 is not set
  4353. # CONFIG_LEDS_DAC124S085 is not set
  4354. # CONFIG_LEDS_PWM is not set
  4355. # CONFIG_LEDS_REGULATOR is not set
  4356. # CONFIG_LEDS_BD2802 is not set
  4357. # CONFIG_LEDS_INTEL_SS4200 is not set
  4358. # CONFIG_LEDS_ADP5520 is not set
  4359. # CONFIG_LEDS_TCA6507 is not set
  4360. # CONFIG_LEDS_TLC591XX is not set
  4361. # CONFIG_LEDS_MAX8997 is not set
  4362. # CONFIG_LEDS_LM355x is not set
  4363. #
  4364. # LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
  4365. #
  4366. # CONFIG_LEDS_BLINKM is not set
  4367. # CONFIG_LEDS_MLXCPLD is not set
  4368. # CONFIG_LEDS_MLXREG is not set
  4369. # CONFIG_LEDS_USER is not set
  4370. # CONFIG_LEDS_NIC78BX is not set
  4371. # CONFIG_LEDS_TI_LMU_COMMON is not set
  4372. #
  4373. # Flash and Torch LED drivers
  4374. #
  4375. #
  4376. # LED Triggers
  4377. #
  4378. CONFIG_LEDS_TRIGGERS=y
  4379. # CONFIG_LEDS_TRIGGER_TIMER is not set
  4380. # CONFIG_LEDS_TRIGGER_ONESHOT is not set
  4381. CONFIG_LEDS_TRIGGER_DISK=y
  4382. # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
  4383. # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
  4384. CONFIG_LEDS_TRIGGER_CPU=y
  4385. # CONFIG_LEDS_TRIGGER_ACTIVITY is not set
  4386. # CONFIG_LEDS_TRIGGER_GPIO is not set
  4387. # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
  4388. #
  4389. # iptables trigger is under Netfilter config (LED target)
  4390. #
  4391. # CONFIG_LEDS_TRIGGER_TRANSIENT is not set
  4392. # CONFIG_LEDS_TRIGGER_CAMERA is not set
  4393. CONFIG_LEDS_TRIGGER_PANIC=y
  4394. # CONFIG_LEDS_TRIGGER_NETDEV is not set
  4395. # CONFIG_LEDS_TRIGGER_PATTERN is not set
  4396. CONFIG_LEDS_TRIGGER_AUDIO=y
  4397. # CONFIG_LEDS_TRIGGER_TTY is not set
  4398. #
  4399. # LED Blink
  4400. #
  4401. # CONFIG_LEDS_BLINK is not set
  4402. CONFIG_ACCESSIBILITY=y
  4403. CONFIG_A11Y_BRAILLE_CONSOLE=y
  4404. #
  4405. # Speakup console speech
  4406. #
  4407. # CONFIG_SPEAKUP is not set
  4408. # end of Speakup console speech
  4409. # CONFIG_INFINIBAND is not set
  4410. CONFIG_EDAC_ATOMIC_SCRUB=y
  4411. CONFIG_EDAC_SUPPORT=y
  4412. CONFIG_EDAC=y
  4413. CONFIG_EDAC_LEGACY_SYSFS=y
  4414. # CONFIG_EDAC_DEBUG is not set
  4415. CONFIG_EDAC_DECODE_MCE=y
  4416. CONFIG_EDAC_GHES=y
  4417. # CONFIG_EDAC_AMD64 is not set
  4418. # CONFIG_EDAC_E752X is not set
  4419. # CONFIG_EDAC_I82975X is not set
  4420. # CONFIG_EDAC_I3000 is not set
  4421. # CONFIG_EDAC_I3200 is not set
  4422. # CONFIG_EDAC_IE31200 is not set
  4423. # CONFIG_EDAC_X38 is not set
  4424. # CONFIG_EDAC_I5400 is not set
  4425. # CONFIG_EDAC_I7CORE is not set
  4426. # CONFIG_EDAC_I5000 is not set
  4427. # CONFIG_EDAC_I5100 is not set
  4428. # CONFIG_EDAC_I7300 is not set
  4429. # CONFIG_EDAC_SBRIDGE is not set
  4430. # CONFIG_EDAC_SKX is not set
  4431. # CONFIG_EDAC_I10NM is not set
  4432. # CONFIG_EDAC_PND2 is not set
  4433. # CONFIG_EDAC_IGEN6 is not set
  4434. CONFIG_RTC_LIB=y
  4435. CONFIG_RTC_MC146818_LIB=y
  4436. CONFIG_RTC_CLASS=y
  4437. CONFIG_RTC_HCTOSYS=y
  4438. CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
  4439. CONFIG_RTC_SYSTOHC=y
  4440. CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
  4441. # CONFIG_RTC_DEBUG is not set
  4442. CONFIG_RTC_NVMEM=y
  4443. #
  4444. # RTC interfaces
  4445. #
  4446. CONFIG_RTC_INTF_SYSFS=y
  4447. CONFIG_RTC_INTF_PROC=y
  4448. CONFIG_RTC_INTF_DEV=y
  4449. CONFIG_RTC_INTF_DEV_UIE_EMUL=y
  4450. # CONFIG_RTC_DRV_TEST is not set
  4451. #
  4452. # I2C RTC drivers
  4453. #
  4454. # CONFIG_RTC_DRV_88PM860X is not set
  4455. # CONFIG_RTC_DRV_ABB5ZES3 is not set
  4456. # CONFIG_RTC_DRV_ABEOZ9 is not set
  4457. # CONFIG_RTC_DRV_ABX80X is not set
  4458. # CONFIG_RTC_DRV_DS1307 is not set
  4459. # CONFIG_RTC_DRV_DS1374 is not set
  4460. # CONFIG_RTC_DRV_DS1672 is not set
  4461. # CONFIG_RTC_DRV_LP8788 is not set
  4462. # CONFIG_RTC_DRV_MAX6900 is not set
  4463. # CONFIG_RTC_DRV_MAX8925 is not set
  4464. # CONFIG_RTC_DRV_MAX8998 is not set
  4465. # CONFIG_RTC_DRV_MAX8997 is not set
  4466. # CONFIG_RTC_DRV_RS5C372 is not set
  4467. # CONFIG_RTC_DRV_ISL1208 is not set
  4468. # CONFIG_RTC_DRV_ISL12022 is not set
  4469. # CONFIG_RTC_DRV_X1205 is not set
  4470. # CONFIG_RTC_DRV_PCF8523 is not set
  4471. # CONFIG_RTC_DRV_PCF85063 is not set
  4472. # CONFIG_RTC_DRV_PCF85363 is not set
  4473. # CONFIG_RTC_DRV_PCF8563 is not set
  4474. # CONFIG_RTC_DRV_PCF8583 is not set
  4475. # CONFIG_RTC_DRV_M41T80 is not set
  4476. # CONFIG_RTC_DRV_BQ32K is not set
  4477. # CONFIG_RTC_DRV_PALMAS is not set
  4478. # CONFIG_RTC_DRV_TPS6586X is not set
  4479. # CONFIG_RTC_DRV_TPS65910 is not set
  4480. # CONFIG_RTC_DRV_TPS80031 is not set
  4481. # CONFIG_RTC_DRV_RC5T583 is not set
  4482. # CONFIG_RTC_DRV_S35390A is not set
  4483. # CONFIG_RTC_DRV_FM3130 is not set
  4484. # CONFIG_RTC_DRV_RX8010 is not set
  4485. # CONFIG_RTC_DRV_RX8581 is not set
  4486. # CONFIG_RTC_DRV_RX8025 is not set
  4487. # CONFIG_RTC_DRV_EM3027 is not set
  4488. # CONFIG_RTC_DRV_RV3028 is not set
  4489. # CONFIG_RTC_DRV_RV3032 is not set
  4490. # CONFIG_RTC_DRV_RV8803 is not set
  4491. # CONFIG_RTC_DRV_S5M is not set
  4492. # CONFIG_RTC_DRV_SD3078 is not set
  4493. #
  4494. # SPI RTC drivers
  4495. #
  4496. # CONFIG_RTC_DRV_M41T93 is not set
  4497. # CONFIG_RTC_DRV_M41T94 is not set
  4498. # CONFIG_RTC_DRV_DS1302 is not set
  4499. # CONFIG_RTC_DRV_DS1305 is not set
  4500. # CONFIG_RTC_DRV_DS1343 is not set
  4501. # CONFIG_RTC_DRV_DS1347 is not set
  4502. # CONFIG_RTC_DRV_DS1390 is not set
  4503. # CONFIG_RTC_DRV_MAX6916 is not set
  4504. # CONFIG_RTC_DRV_R9701 is not set
  4505. # CONFIG_RTC_DRV_RX4581 is not set
  4506. # CONFIG_RTC_DRV_RS5C348 is not set
  4507. # CONFIG_RTC_DRV_MAX6902 is not set
  4508. # CONFIG_RTC_DRV_PCF2123 is not set
  4509. # CONFIG_RTC_DRV_MCP795 is not set
  4510. CONFIG_RTC_I2C_AND_SPI=y
  4511. #
  4512. # SPI and I2C RTC drivers
  4513. #
  4514. # CONFIG_RTC_DRV_DS3232 is not set
  4515. # CONFIG_RTC_DRV_PCF2127 is not set
  4516. # CONFIG_RTC_DRV_RV3029C2 is not set
  4517. # CONFIG_RTC_DRV_RX6110 is not set
  4518. #
  4519. # Platform RTC drivers
  4520. #
  4521. CONFIG_RTC_DRV_CMOS=y
  4522. # CONFIG_RTC_DRV_DS1286 is not set
  4523. # CONFIG_RTC_DRV_DS1511 is not set
  4524. # CONFIG_RTC_DRV_DS1553 is not set
  4525. # CONFIG_RTC_DRV_DS1685_FAMILY is not set
  4526. # CONFIG_RTC_DRV_DS1742 is not set
  4527. # CONFIG_RTC_DRV_DS2404 is not set
  4528. # CONFIG_RTC_DRV_DA9052 is not set
  4529. # CONFIG_RTC_DRV_DA9055 is not set
  4530. # CONFIG_RTC_DRV_STK17TA8 is not set
  4531. # CONFIG_RTC_DRV_M48T86 is not set
  4532. # CONFIG_RTC_DRV_M48T35 is not set
  4533. # CONFIG_RTC_DRV_M48T59 is not set
  4534. # CONFIG_RTC_DRV_MSM6242 is not set
  4535. # CONFIG_RTC_DRV_BQ4802 is not set
  4536. # CONFIG_RTC_DRV_RP5C01 is not set
  4537. # CONFIG_RTC_DRV_V3020 is not set
  4538. # CONFIG_RTC_DRV_WM831X is not set
  4539. # CONFIG_RTC_DRV_WM8350 is not set
  4540. #
  4541. # on-CPU RTC drivers
  4542. #
  4543. # CONFIG_RTC_DRV_FTRTC010 is not set
  4544. # CONFIG_RTC_DRV_PCAP is not set
  4545. #
  4546. # HID Sensor RTC drivers
  4547. #
  4548. CONFIG_DMADEVICES=y
  4549. # CONFIG_DMADEVICES_DEBUG is not set
  4550. #
  4551. # DMA Devices
  4552. #
  4553. CONFIG_DMA_ENGINE=y
  4554. CONFIG_DMA_VIRTUAL_CHANNELS=y
  4555. CONFIG_DMA_ACPI=y
  4556. # CONFIG_ALTERA_MSGDMA is not set
  4557. # CONFIG_INTEL_IDMA64 is not set
  4558. # CONFIG_INTEL_IDXD is not set
  4559. CONFIG_INTEL_IOATDMA=y
  4560. # CONFIG_PLX_DMA is not set
  4561. # CONFIG_XILINX_ZYNQMP_DPDMA is not set
  4562. # CONFIG_QCOM_HIDMA_MGMT is not set
  4563. # CONFIG_QCOM_HIDMA is not set
  4564. CONFIG_DW_DMAC_CORE=y
  4565. # CONFIG_DW_DMAC is not set
  4566. CONFIG_DW_DMAC_PCI=y
  4567. # CONFIG_DW_EDMA is not set
  4568. # CONFIG_DW_EDMA_PCIE is not set
  4569. CONFIG_HSU_DMA=y
  4570. # CONFIG_SF_PDMA is not set
  4571. # CONFIG_INTEL_LDMA is not set
  4572. #
  4573. # DMA Clients
  4574. #
  4575. CONFIG_ASYNC_TX_DMA=y
  4576. # CONFIG_DMATEST is not set
  4577. CONFIG_DMA_ENGINE_RAID=y
  4578. #
  4579. # DMABUF options
  4580. #
  4581. CONFIG_SYNC_FILE=y
  4582. # CONFIG_SW_SYNC is not set
  4583. CONFIG_UDMABUF=y
  4584. # CONFIG_DMABUF_MOVE_NOTIFY is not set
  4585. # CONFIG_DMABUF_DEBUG is not set
  4586. # CONFIG_DMABUF_SELFTESTS is not set
  4587. CONFIG_DMABUF_HEAPS=y
  4588. CONFIG_DMABUF_HEAPS_SYSTEM=y
  4589. CONFIG_DMABUF_HEAPS_CMA=y
  4590. # end of DMABUF options
  4591. CONFIG_DCA=y
  4592. CONFIG_AUXDISPLAY=y
  4593. # CONFIG_HD44780 is not set
  4594. # CONFIG_IMG_ASCII_LCD is not set
  4595. # CONFIG_LCD2S is not set
  4596. # CONFIG_CHARLCD_BL_OFF is not set
  4597. # CONFIG_CHARLCD_BL_ON is not set
  4598. CONFIG_CHARLCD_BL_FLASH=y
  4599. # CONFIG_UIO is not set
  4600. CONFIG_VFIO_IOMMU_TYPE1=y
  4601. CONFIG_VFIO_VIRQFD=y
  4602. CONFIG_VFIO=y
  4603. # CONFIG_VFIO_NOIOMMU is not set
  4604. CONFIG_VFIO_PCI=y
  4605. CONFIG_VFIO_PCI_VGA=y
  4606. CONFIG_VFIO_PCI_MMAP=y
  4607. CONFIG_VFIO_PCI_INTX=y
  4608. CONFIG_VFIO_PCI_IGD=y
  4609. # CONFIG_VFIO_MDEV is not set
  4610. CONFIG_IRQ_BYPASS_MANAGER=y
  4611. CONFIG_VIRT_DRIVERS=y
  4612. # CONFIG_VBOXGUEST is not set
  4613. # CONFIG_NITRO_ENCLAVES is not set
  4614. CONFIG_VIRTIO=y
  4615. CONFIG_VIRTIO_PCI_LIB=y
  4616. CONFIG_VIRTIO_MENU=y
  4617. CONFIG_VIRTIO_PCI=y
  4618. CONFIG_VIRTIO_PCI_LEGACY=y
  4619. # CONFIG_VIRTIO_PMEM is not set
  4620. CONFIG_VIRTIO_BALLOON=y
  4621. # CONFIG_VIRTIO_MEM is not set
  4622. # CONFIG_VIRTIO_INPUT is not set
  4623. # CONFIG_VIRTIO_MMIO is not set
  4624. # CONFIG_VDPA is not set
  4625. CONFIG_VHOST_IOTLB=y
  4626. CONFIG_VHOST=y
  4627. CONFIG_VHOST_MENU=y
  4628. CONFIG_VHOST_NET=y
  4629. # CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
  4630. #
  4631. # Microsoft Hyper-V guest support
  4632. #
  4633. # end of Microsoft Hyper-V guest support
  4634. # CONFIG_GREYBUS is not set
  4635. CONFIG_STAGING=y
  4636. # CONFIG_PRISM2_USB is not set
  4637. # CONFIG_COMEDI is not set
  4638. # CONFIG_R8712U is not set
  4639. # CONFIG_RTS5208 is not set
  4640. # CONFIG_FB_SM750 is not set
  4641. CONFIG_STAGING_MEDIA=y
  4642. #
  4643. # Android
  4644. #
  4645. # end of Android
  4646. # CONFIG_GS_FPGABOOT is not set
  4647. CONFIG_UNISYSSPAR=y
  4648. # CONFIG_FB_TFT is not set
  4649. # CONFIG_PI433 is not set
  4650. #
  4651. # Gasket devices
  4652. #
  4653. # CONFIG_STAGING_GASKET_FRAMEWORK is not set
  4654. # end of Gasket devices
  4655. # CONFIG_FIELDBUS_DEV is not set
  4656. # CONFIG_QLGE is not set
  4657. # CONFIG_WIMAX is not set
  4658. # CONFIG_WFX is not set
  4659. CONFIG_X86_PLATFORM_DEVICES=y
  4660. CONFIG_ACPI_WMI=y
  4661. CONFIG_WMI_BMOF=y
  4662. # CONFIG_HUAWEI_WMI is not set
  4663. # CONFIG_INTEL_WMI_SBL_FW_UPDATE is not set
  4664. # CONFIG_INTEL_WMI_THUNDERBOLT is not set
  4665. CONFIG_MXM_WMI=y
  4666. # CONFIG_PEAQ_WMI is not set
  4667. # CONFIG_XIAOMI_WMI is not set
  4668. # CONFIG_ACERHDF is not set
  4669. # CONFIG_ACER_WIRELESS is not set
  4670. # CONFIG_ACER_WMI is not set
  4671. # CONFIG_AMD_PMC is not set
  4672. # CONFIG_APPLE_GMUX is not set
  4673. # CONFIG_ASUS_LAPTOP is not set
  4674. # CONFIG_ASUS_WIRELESS is not set
  4675. CONFIG_ASUS_WMI=y
  4676. # CONFIG_ASUS_NB_WMI is not set
  4677. # CONFIG_EEEPC_LAPTOP is not set
  4678. CONFIG_EEEPC_WMI=y
  4679. # CONFIG_X86_PLATFORM_DRIVERS_DELL is not set
  4680. # CONFIG_AMILO_RFKILL is not set
  4681. # CONFIG_FUJITSU_LAPTOP is not set
  4682. # CONFIG_FUJITSU_TABLET is not set
  4683. # CONFIG_GPD_POCKET_FAN is not set
  4684. # CONFIG_HP_ACCEL is not set
  4685. # CONFIG_HP_WIRELESS is not set
  4686. # CONFIG_HP_WMI is not set
  4687. # CONFIG_IBM_RTL is not set
  4688. # CONFIG_IDEAPAD_LAPTOP is not set
  4689. # CONFIG_SENSORS_HDAPS is not set
  4690. # CONFIG_THINKPAD_ACPI is not set
  4691. # CONFIG_INTEL_ATOMISP2_PM is not set
  4692. # CONFIG_INTEL_HID_EVENT is not set
  4693. # CONFIG_INTEL_INT0002_VGPIO is not set
  4694. # CONFIG_INTEL_MENLOW is not set
  4695. # CONFIG_INTEL_OAKTRAIL is not set
  4696. # CONFIG_INTEL_VBTN is not set
  4697. # CONFIG_MSI_LAPTOP is not set
  4698. # CONFIG_MSI_WMI is not set
  4699. # CONFIG_PCENGINES_APU2 is not set
  4700. # CONFIG_SAMSUNG_LAPTOP is not set
  4701. # CONFIG_SAMSUNG_Q10 is not set
  4702. # CONFIG_TOSHIBA_BT_RFKILL is not set
  4703. # CONFIG_TOSHIBA_HAPS is not set
  4704. # CONFIG_TOSHIBA_WMI is not set
  4705. # CONFIG_ACPI_CMPC is not set
  4706. # CONFIG_COMPAL_LAPTOP is not set
  4707. # CONFIG_LG_LAPTOP is not set
  4708. # CONFIG_PANASONIC_LAPTOP is not set
  4709. # CONFIG_SONY_LAPTOP is not set
  4710. # CONFIG_SYSTEM76_ACPI is not set
  4711. # CONFIG_TOPSTAR_LAPTOP is not set
  4712. # CONFIG_I2C_MULTI_INSTANTIATE is not set
  4713. # CONFIG_MLX_PLATFORM is not set
  4714. # CONFIG_INTEL_IPS is not set
  4715. # CONFIG_INTEL_RST is not set
  4716. # CONFIG_INTEL_SMARTCONNECT is not set
  4717. #
  4718. # Intel Speed Select Technology interface support
  4719. #
  4720. # CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set
  4721. # end of Intel Speed Select Technology interface support
  4722. # CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set
  4723. CONFIG_INTEL_PMC_CORE=y
  4724. # CONFIG_INTEL_PUNIT_IPC is not set
  4725. CONFIG_INTEL_SCU_IPC=y
  4726. CONFIG_INTEL_SCU=y
  4727. CONFIG_INTEL_SCU_PCI=y
  4728. # CONFIG_INTEL_SCU_PLATFORM is not set
  4729. # CONFIG_INTEL_SCU_IPC_UTIL is not set
  4730. CONFIG_PMC_ATOM=y
  4731. CONFIG_CHROME_PLATFORMS=y
  4732. # CONFIG_CHROMEOS_LAPTOP is not set
  4733. # CONFIG_CHROMEOS_PSTORE is not set
  4734. # CONFIG_CHROMEOS_TBMC is not set
  4735. # CONFIG_CROS_EC is not set
  4736. # CONFIG_CROS_KBD_LED_BACKLIGHT is not set
  4737. CONFIG_MELLANOX_PLATFORM=y
  4738. # CONFIG_MLXREG_HOTPLUG is not set
  4739. # CONFIG_MLXREG_IO is not set
  4740. CONFIG_SURFACE_PLATFORMS=y
  4741. # CONFIG_SURFACE3_WMI is not set
  4742. # CONFIG_SURFACE_3_POWER_OPREGION is not set
  4743. # CONFIG_SURFACE_GPE is not set
  4744. # CONFIG_SURFACE_HOTPLUG is not set
  4745. # CONFIG_SURFACE_PRO3_BUTTON is not set
  4746. # CONFIG_SURFACE_AGGREGATOR is not set
  4747. CONFIG_HAVE_CLK=y
  4748. CONFIG_CLKDEV_LOOKUP=y
  4749. CONFIG_HAVE_CLK_PREPARE=y
  4750. CONFIG_COMMON_CLK=y
  4751. # CONFIG_COMMON_CLK_WM831X is not set
  4752. # CONFIG_COMMON_CLK_MAX9485 is not set
  4753. # CONFIG_COMMON_CLK_SI5341 is not set
  4754. # CONFIG_COMMON_CLK_SI5351 is not set
  4755. # CONFIG_COMMON_CLK_SI544 is not set
  4756. # CONFIG_COMMON_CLK_CDCE706 is not set
  4757. # CONFIG_COMMON_CLK_CS2000_CP is not set
  4758. # CONFIG_COMMON_CLK_S2MPS11 is not set
  4759. # CONFIG_CLK_TWL6040 is not set
  4760. # CONFIG_COMMON_CLK_PALMAS is not set
  4761. # CONFIG_COMMON_CLK_PWM is not set
  4762. # CONFIG_XILINX_VCU is not set
  4763. CONFIG_HWSPINLOCK=y
  4764. #
  4765. # Clock Source drivers
  4766. #
  4767. CONFIG_CLKEVT_I8253=y
  4768. CONFIG_I8253_LOCK=y
  4769. CONFIG_CLKBLD_I8253=y
  4770. # end of Clock Source drivers
  4771. CONFIG_MAILBOX=y
  4772. CONFIG_PCC=y
  4773. # CONFIG_ALTERA_MBOX is not set
  4774. CONFIG_IOMMU_IOVA=y
  4775. CONFIG_IOASID=y
  4776. CONFIG_IOMMU_API=y
  4777. CONFIG_IOMMU_SUPPORT=y
  4778. #
  4779. # Generic IOMMU Pagetable Support
  4780. #
  4781. CONFIG_IOMMU_IO_PGTABLE=y
  4782. # end of Generic IOMMU Pagetable Support
  4783. # CONFIG_IOMMU_DEBUGFS is not set
  4784. # CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set
  4785. CONFIG_IOMMU_DMA=y
  4786. CONFIG_AMD_IOMMU=y
  4787. CONFIG_AMD_IOMMU_V2=y
  4788. CONFIG_DMAR_TABLE=y
  4789. CONFIG_INTEL_IOMMU=y
  4790. CONFIG_INTEL_IOMMU_SVM=y
  4791. # CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
  4792. CONFIG_INTEL_IOMMU_FLOPPY_WA=y
  4793. CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON=y
  4794. CONFIG_IRQ_REMAP=y
  4795. #
  4796. # Remoteproc drivers
  4797. #
  4798. CONFIG_REMOTEPROC=y
  4799. CONFIG_REMOTEPROC_CDEV=y
  4800. # end of Remoteproc drivers
  4801. #
  4802. # Rpmsg drivers
  4803. #
  4804. # CONFIG_RPMSG_QCOM_GLINK_RPM is not set
  4805. # CONFIG_RPMSG_VIRTIO is not set
  4806. # end of Rpmsg drivers
  4807. CONFIG_SOUNDWIRE=y
  4808. #
  4809. # SoundWire Devices
  4810. #
  4811. CONFIG_SOUNDWIRE_CADENCE=y
  4812. CONFIG_SOUNDWIRE_INTEL=y
  4813. # CONFIG_SOUNDWIRE_QCOM is not set
  4814. CONFIG_SOUNDWIRE_GENERIC_ALLOCATION=y
  4815. #
  4816. # SOC (System On Chip) specific Drivers
  4817. #
  4818. #
  4819. # Amlogic SoC drivers
  4820. #
  4821. # end of Amlogic SoC drivers
  4822. #
  4823. # Broadcom SoC drivers
  4824. #
  4825. # end of Broadcom SoC drivers
  4826. #
  4827. # NXP/Freescale QorIQ SoC drivers
  4828. #
  4829. # end of NXP/Freescale QorIQ SoC drivers
  4830. #
  4831. # i.MX SoC drivers
  4832. #
  4833. # end of i.MX SoC drivers
  4834. #
  4835. # Enable LiteX SoC Builder specific drivers
  4836. #
  4837. # end of Enable LiteX SoC Builder specific drivers
  4838. #
  4839. # Qualcomm SoC drivers
  4840. #
  4841. # end of Qualcomm SoC drivers
  4842. CONFIG_SOC_TI=y
  4843. #
  4844. # Xilinx SoC drivers
  4845. #
  4846. # end of Xilinx SoC drivers
  4847. # end of SOC (System On Chip) specific Drivers
  4848. CONFIG_PM_DEVFREQ=y
  4849. #
  4850. # DEVFREQ Governors
  4851. #
  4852. # CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set
  4853. # CONFIG_DEVFREQ_GOV_PERFORMANCE is not set
  4854. # CONFIG_DEVFREQ_GOV_POWERSAVE is not set
  4855. # CONFIG_DEVFREQ_GOV_USERSPACE is not set
  4856. # CONFIG_DEVFREQ_GOV_PASSIVE is not set
  4857. #
  4858. # DEVFREQ Drivers
  4859. #
  4860. CONFIG_PM_DEVFREQ_EVENT=y
  4861. CONFIG_EXTCON=y
  4862. #
  4863. # Extcon Device Drivers
  4864. #
  4865. # CONFIG_EXTCON_FSA9480 is not set
  4866. # CONFIG_EXTCON_GPIO is not set
  4867. # CONFIG_EXTCON_INTEL_INT3496 is not set
  4868. # CONFIG_EXTCON_INTEL_CHT_WC is not set
  4869. # CONFIG_EXTCON_MAX3355 is not set
  4870. # CONFIG_EXTCON_MAX77843 is not set
  4871. # CONFIG_EXTCON_MAX8997 is not set
  4872. # CONFIG_EXTCON_PALMAS is not set
  4873. # CONFIG_EXTCON_PTN5150 is not set
  4874. # CONFIG_EXTCON_RT8973A is not set
  4875. # CONFIG_EXTCON_SM5502 is not set
  4876. # CONFIG_EXTCON_USB_GPIO is not set
  4877. # CONFIG_EXTCON_USBC_TUSB320 is not set
  4878. CONFIG_MEMORY=y
  4879. # CONFIG_IIO is not set
  4880. # CONFIG_NTB is not set
  4881. # CONFIG_VME_BUS is not set
  4882. CONFIG_PWM=y
  4883. CONFIG_PWM_SYSFS=y
  4884. # CONFIG_PWM_DEBUG is not set
  4885. CONFIG_PWM_CRC=y
  4886. # CONFIG_PWM_DWC is not set
  4887. # CONFIG_PWM_LPSS_PCI is not set
  4888. # CONFIG_PWM_LPSS_PLATFORM is not set
  4889. # CONFIG_PWM_PCA9685 is not set
  4890. # CONFIG_PWM_TWL is not set
  4891. # CONFIG_PWM_TWL_LED is not set
  4892. #
  4893. # IRQ chip support
  4894. #
  4895. # end of IRQ chip support
  4896. # CONFIG_IPACK_BUS is not set
  4897. CONFIG_RESET_CONTROLLER=y
  4898. CONFIG_RESET_BRCMSTB_RESCAL=y
  4899. # CONFIG_RESET_TI_SYSCON is not set
  4900. #
  4901. # PHY Subsystem
  4902. #
  4903. CONFIG_GENERIC_PHY=y
  4904. # CONFIG_USB_LGM_PHY is not set
  4905. # CONFIG_BCM_KONA_USB2_PHY is not set
  4906. # CONFIG_PHY_PXA_28NM_HSIC is not set
  4907. # CONFIG_PHY_PXA_28NM_USB2 is not set
  4908. # CONFIG_PHY_INTEL_LGM_EMMC is not set
  4909. # end of PHY Subsystem
  4910. CONFIG_POWERCAP=y
  4911. CONFIG_INTEL_RAPL_CORE=y
  4912. CONFIG_INTEL_RAPL=y
  4913. CONFIG_IDLE_INJECT=y
  4914. # CONFIG_DTPM is not set
  4915. # CONFIG_MCB is not set
  4916. #
  4917. # Performance monitor support
  4918. #
  4919. # end of Performance monitor support
  4920. CONFIG_RAS=y
  4921. CONFIG_RAS_CEC=y
  4922. # CONFIG_RAS_CEC_DEBUG is not set
  4923. # CONFIG_USB4 is not set
  4924. #
  4925. # Android
  4926. #
  4927. # CONFIG_ANDROID is not set
  4928. # end of Android
  4929. CONFIG_LIBNVDIMM=y
  4930. # CONFIG_BLK_DEV_PMEM is not set
  4931. # CONFIG_ND_BLK is not set
  4932. CONFIG_ND_CLAIM=y
  4933. CONFIG_BTT=y
  4934. CONFIG_NVDIMM_PFN=y
  4935. CONFIG_NVDIMM_DAX=y
  4936. CONFIG_NVDIMM_KEYS=y
  4937. CONFIG_DAX=y
  4938. # CONFIG_DEV_DAX is not set
  4939. # CONFIG_DEV_DAX_HMEM is not set
  4940. CONFIG_NVMEM=y
  4941. CONFIG_NVMEM_SYSFS=y
  4942. # CONFIG_NVMEM_RMEM is not set
  4943. #
  4944. # HW tracing support
  4945. #
  4946. # CONFIG_STM is not set
  4947. # CONFIG_INTEL_TH is not set
  4948. # end of HW tracing support
  4949. # CONFIG_FPGA is not set
  4950. # CONFIG_TEE is not set
  4951. CONFIG_PM_OPP=y
  4952. # CONFIG_UNISYS_VISORBUS is not set
  4953. # CONFIG_SIOX is not set
  4954. # CONFIG_SLIMBUS is not set
  4955. CONFIG_INTERCONNECT=y
  4956. # CONFIG_COUNTER is not set
  4957. # CONFIG_MOST is not set
  4958. # end of Device Drivers
  4959. #
  4960. # File systems
  4961. #
  4962. CONFIG_DCACHE_WORD_ACCESS=y
  4963. CONFIG_VALIDATE_FS_PARSER=y
  4964. CONFIG_FS_IOMAP=y
  4965. # CONFIG_EXT2_FS is not set
  4966. # CONFIG_EXT3_FS is not set
  4967. CONFIG_EXT4_FS=y
  4968. CONFIG_EXT4_USE_FOR_EXT2=y
  4969. CONFIG_EXT4_FS_POSIX_ACL=y
  4970. CONFIG_EXT4_FS_SECURITY=y
  4971. # CONFIG_EXT4_DEBUG is not set
  4972. CONFIG_JBD2=y
  4973. # CONFIG_JBD2_DEBUG is not set
  4974. CONFIG_FS_MBCACHE=y
  4975. # CONFIG_REISERFS_FS is not set
  4976. # CONFIG_JFS_FS is not set
  4977. CONFIG_XFS_FS=y
  4978. CONFIG_XFS_SUPPORT_V4=y
  4979. CONFIG_XFS_QUOTA=y
  4980. CONFIG_XFS_POSIX_ACL=y
  4981. CONFIG_XFS_RT=y
  4982. CONFIG_XFS_ONLINE_SCRUB=y
  4983. CONFIG_XFS_ONLINE_REPAIR=y
  4984. # CONFIG_XFS_WARN is not set
  4985. # CONFIG_XFS_DEBUG is not set
  4986. # CONFIG_GFS2_FS is not set
  4987. # CONFIG_OCFS2_FS is not set
  4988. CONFIG_BTRFS_FS=y
  4989. CONFIG_BTRFS_FS_POSIX_ACL=y
  4990. # CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
  4991. # CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
  4992. # CONFIG_BTRFS_DEBUG is not set
  4993. # CONFIG_BTRFS_ASSERT is not set
  4994. # CONFIG_BTRFS_FS_REF_VERIFY is not set
  4995. # CONFIG_NILFS2_FS is not set
  4996. # CONFIG_F2FS_FS is not set
  4997. # CONFIG_ZONEFS_FS is not set
  4998. CONFIG_FS_DAX=y
  4999. CONFIG_FS_DAX_PMD=y
  5000. CONFIG_FS_POSIX_ACL=y
  5001. CONFIG_EXPORTFS=y
  5002. CONFIG_EXPORTFS_BLOCK_OPS=y
  5003. CONFIG_FILE_LOCKING=y
  5004. # CONFIG_MANDATORY_FILE_LOCKING is not set
  5005. CONFIG_FS_ENCRYPTION=y
  5006. CONFIG_FS_ENCRYPTION_ALGS=y
  5007. CONFIG_FS_ENCRYPTION_INLINE_CRYPT=y
  5008. CONFIG_FS_VERITY=y
  5009. # CONFIG_FS_VERITY_DEBUG is not set
  5010. CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y
  5011. CONFIG_FSNOTIFY=y
  5012. CONFIG_DNOTIFY=y
  5013. CONFIG_INOTIFY_USER=y
  5014. CONFIG_FANOTIFY=y
  5015. CONFIG_QUOTA=y
  5016. CONFIG_QUOTA_NETLINK_INTERFACE=y
  5017. # CONFIG_PRINT_QUOTA_WARNING is not set
  5018. # CONFIG_QUOTA_DEBUG is not set
  5019. # CONFIG_QFMT_V1 is not set
  5020. # CONFIG_QFMT_V2 is not set
  5021. CONFIG_QUOTACTL=y
  5022. CONFIG_AUTOFS4_FS=y
  5023. CONFIG_AUTOFS_FS=y
  5024. CONFIG_FUSE_FS=y
  5025. # CONFIG_CUSE is not set
  5026. # CONFIG_VIRTIO_FS is not set
  5027. # CONFIG_OVERLAY_FS is not set
  5028. #
  5029. # Caches
  5030. #
  5031. # CONFIG_FSCACHE is not set
  5032. # end of Caches
  5033. #
  5034. # CD-ROM/DVD Filesystems
  5035. #
  5036. # CONFIG_ISO9660_FS is not set
  5037. # CONFIG_UDF_FS is not set
  5038. # end of CD-ROM/DVD Filesystems
  5039. #
  5040. # DOS/FAT/EXFAT/NT Filesystems
  5041. #
  5042. CONFIG_FAT_FS=y
  5043. # CONFIG_MSDOS_FS is not set
  5044. CONFIG_VFAT_FS=y
  5045. CONFIG_FAT_DEFAULT_CODEPAGE=437
  5046. CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
  5047. CONFIG_FAT_DEFAULT_UTF8=y
  5048. # CONFIG_EXFAT_FS is not set
  5049. # CONFIG_NTFS_FS is not set
  5050. # end of DOS/FAT/EXFAT/NT Filesystems
  5051. #
  5052. # Pseudo filesystems
  5053. #
  5054. CONFIG_PROC_FS=y
  5055. CONFIG_PROC_KCORE=y
  5056. CONFIG_PROC_SYSCTL=y
  5057. CONFIG_PROC_PAGE_MONITOR=y
  5058. CONFIG_PROC_CHILDREN=y
  5059. CONFIG_PROC_PID_ARCH_STATUS=y
  5060. CONFIG_PROC_CPU_RESCTRL=y
  5061. CONFIG_KERNFS=y
  5062. CONFIG_SYSFS=y
  5063. CONFIG_TMPFS=y
  5064. CONFIG_TMPFS_POSIX_ACL=y
  5065. CONFIG_TMPFS_XATTR=y
  5066. CONFIG_TMPFS_INODE64=y
  5067. CONFIG_HUGETLBFS=y
  5068. CONFIG_HUGETLB_PAGE=y
  5069. CONFIG_MEMFD_CREATE=y
  5070. CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
  5071. CONFIG_CONFIGFS_FS=y
  5072. CONFIG_EFIVAR_FS=y
  5073. # end of Pseudo filesystems
  5074. CONFIG_MISC_FILESYSTEMS=y
  5075. # CONFIG_ORANGEFS_FS is not set
  5076. # CONFIG_ADFS_FS is not set
  5077. # CONFIG_AFFS_FS is not set
  5078. # CONFIG_ECRYPT_FS is not set
  5079. # CONFIG_HFS_FS is not set
  5080. # CONFIG_HFSPLUS_FS is not set
  5081. # CONFIG_BEFS_FS is not set
  5082. # CONFIG_BFS_FS is not set
  5083. # CONFIG_EFS_FS is not set
  5084. # CONFIG_CRAMFS is not set
  5085. # CONFIG_SQUASHFS is not set
  5086. # CONFIG_VXFS_FS is not set
  5087. # CONFIG_MINIX_FS is not set
  5088. # CONFIG_OMFS_FS is not set
  5089. # CONFIG_HPFS_FS is not set
  5090. # CONFIG_QNX4FS_FS is not set
  5091. # CONFIG_QNX6FS_FS is not set
  5092. # CONFIG_ROMFS_FS is not set
  5093. CONFIG_PSTORE=y
  5094. CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240
  5095. # CONFIG_PSTORE_DEFLATE_COMPRESS is not set
  5096. # CONFIG_PSTORE_LZO_COMPRESS is not set
  5097. # CONFIG_PSTORE_LZ4_COMPRESS is not set
  5098. # CONFIG_PSTORE_LZ4HC_COMPRESS is not set
  5099. # CONFIG_PSTORE_842_COMPRESS is not set
  5100. CONFIG_PSTORE_ZSTD_COMPRESS=y
  5101. CONFIG_PSTORE_COMPRESS=y
  5102. CONFIG_PSTORE_ZSTD_COMPRESS_DEFAULT=y
  5103. CONFIG_PSTORE_COMPRESS_DEFAULT="zstd"
  5104. # CONFIG_PSTORE_CONSOLE is not set
  5105. # CONFIG_PSTORE_PMSG is not set
  5106. # CONFIG_PSTORE_RAM is not set
  5107. # CONFIG_PSTORE_BLK is not set
  5108. # CONFIG_SYSV_FS is not set
  5109. # CONFIG_UFS_FS is not set
  5110. # CONFIG_EROFS_FS is not set
  5111. CONFIG_NETWORK_FILESYSTEMS=y
  5112. CONFIG_NFS_FS=y
  5113. # CONFIG_NFS_V2 is not set
  5114. # CONFIG_NFS_V3 is not set
  5115. CONFIG_NFS_V4=y
  5116. CONFIG_NFS_V4_1=y
  5117. CONFIG_NFS_V4_2=y
  5118. CONFIG_PNFS_FILE_LAYOUT=y
  5119. CONFIG_PNFS_BLOCK=y
  5120. CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
  5121. CONFIG_NFS_V4_1_MIGRATION=y
  5122. # CONFIG_NFS_USE_LEGACY_DNS is not set
  5123. CONFIG_NFS_USE_KERNEL_DNS=y
  5124. CONFIG_NFS_DEBUG=y
  5125. # CONFIG_NFS_DISABLE_UDP_SUPPORT is not set
  5126. # CONFIG_NFS_V4_2_READ_PLUS is not set
  5127. CONFIG_NFSD=y
  5128. CONFIG_NFSD_V2_ACL=y
  5129. CONFIG_NFSD_V3=y
  5130. CONFIG_NFSD_V3_ACL=y
  5131. CONFIG_NFSD_V4=y
  5132. CONFIG_NFSD_PNFS=y
  5133. CONFIG_NFSD_BLOCKLAYOUT=y
  5134. CONFIG_NFSD_SCSILAYOUT=y
  5135. # CONFIG_NFSD_FLEXFILELAYOUT is not set
  5136. CONFIG_NFSD_V4_2_INTER_SSC=y
  5137. CONFIG_GRACE_PERIOD=y
  5138. CONFIG_LOCKD=y
  5139. CONFIG_LOCKD_V4=y
  5140. CONFIG_NFS_ACL_SUPPORT=y
  5141. CONFIG_NFS_COMMON=y
  5142. CONFIG_NFS_V4_2_SSC_HELPER=y
  5143. CONFIG_SUNRPC=y
  5144. CONFIG_SUNRPC_GSS=y
  5145. CONFIG_SUNRPC_BACKCHANNEL=y
  5146. CONFIG_RPCSEC_GSS_KRB5=y
  5147. CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y
  5148. CONFIG_SUNRPC_DEBUG=y
  5149. # CONFIG_CEPH_FS is not set
  5150. # CONFIG_CIFS is not set
  5151. # CONFIG_CODA_FS is not set
  5152. # CONFIG_AFS_FS is not set
  5153. CONFIG_NLS=y
  5154. CONFIG_NLS_DEFAULT="utf8"
  5155. CONFIG_NLS_CODEPAGE_437=y
  5156. # CONFIG_NLS_CODEPAGE_737 is not set
  5157. # CONFIG_NLS_CODEPAGE_775 is not set
  5158. # CONFIG_NLS_CODEPAGE_850 is not set
  5159. # CONFIG_NLS_CODEPAGE_852 is not set
  5160. # CONFIG_NLS_CODEPAGE_855 is not set
  5161. # CONFIG_NLS_CODEPAGE_857 is not set
  5162. # CONFIG_NLS_CODEPAGE_860 is not set
  5163. # CONFIG_NLS_CODEPAGE_861 is not set
  5164. # CONFIG_NLS_CODEPAGE_862 is not set
  5165. # CONFIG_NLS_CODEPAGE_863 is not set
  5166. # CONFIG_NLS_CODEPAGE_864 is not set
  5167. # CONFIG_NLS_CODEPAGE_865 is not set
  5168. # CONFIG_NLS_CODEPAGE_866 is not set
  5169. # CONFIG_NLS_CODEPAGE_869 is not set
  5170. # CONFIG_NLS_CODEPAGE_936 is not set
  5171. # CONFIG_NLS_CODEPAGE_950 is not set
  5172. # CONFIG_NLS_CODEPAGE_932 is not set
  5173. # CONFIG_NLS_CODEPAGE_949 is not set
  5174. # CONFIG_NLS_CODEPAGE_874 is not set
  5175. # CONFIG_NLS_ISO8859_8 is not set
  5176. # CONFIG_NLS_CODEPAGE_1250 is not set
  5177. # CONFIG_NLS_CODEPAGE_1251 is not set
  5178. CONFIG_NLS_ASCII=y
  5179. # CONFIG_NLS_ISO8859_1 is not set
  5180. # CONFIG_NLS_ISO8859_2 is not set
  5181. # CONFIG_NLS_ISO8859_3 is not set
  5182. # CONFIG_NLS_ISO8859_4 is not set
  5183. # CONFIG_NLS_ISO8859_5 is not set
  5184. # CONFIG_NLS_ISO8859_6 is not set
  5185. # CONFIG_NLS_ISO8859_7 is not set
  5186. # CONFIG_NLS_ISO8859_9 is not set
  5187. # CONFIG_NLS_ISO8859_13 is not set
  5188. # CONFIG_NLS_ISO8859_14 is not set
  5189. # CONFIG_NLS_ISO8859_15 is not set
  5190. # CONFIG_NLS_KOI8_R is not set
  5191. # CONFIG_NLS_KOI8_U is not set
  5192. # CONFIG_NLS_MAC_ROMAN is not set
  5193. # CONFIG_NLS_MAC_CELTIC is not set
  5194. # CONFIG_NLS_MAC_CENTEURO is not set
  5195. # CONFIG_NLS_MAC_CROATIAN is not set
  5196. # CONFIG_NLS_MAC_CYRILLIC is not set
  5197. # CONFIG_NLS_MAC_GAELIC is not set
  5198. # CONFIG_NLS_MAC_GREEK is not set
  5199. # CONFIG_NLS_MAC_ICELAND is not set
  5200. # CONFIG_NLS_MAC_INUIT is not set
  5201. # CONFIG_NLS_MAC_ROMANIAN is not set
  5202. # CONFIG_NLS_MAC_TURKISH is not set
  5203. # CONFIG_NLS_UTF8 is not set
  5204. # CONFIG_DLM is not set
  5205. CONFIG_UNICODE=y
  5206. # CONFIG_UNICODE_NORMALIZATION_SELFTEST is not set
  5207. CONFIG_IO_WQ=y
  5208. # end of File systems
  5209. #
  5210. # Security options
  5211. #
  5212. CONFIG_KEYS=y
  5213. CONFIG_KEYS_REQUEST_CACHE=y
  5214. CONFIG_PERSISTENT_KEYRINGS=y
  5215. CONFIG_TRUSTED_KEYS=y
  5216. CONFIG_ENCRYPTED_KEYS=y
  5217. CONFIG_KEY_DH_OPERATIONS=y
  5218. CONFIG_KEY_NOTIFICATIONS=y
  5219. CONFIG_SECURITY_DMESG_RESTRICT=y
  5220. # CONFIG_SECURITY is not set
  5221. CONFIG_SECURITYFS=y
  5222. CONFIG_PAGE_TABLE_ISOLATION=y
  5223. # CONFIG_INTEL_TXT is not set
  5224. CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
  5225. # CONFIG_HARDENED_USERCOPY is not set
  5226. CONFIG_FORTIFY_SOURCE=y
  5227. # CONFIG_STATIC_USERMODEHELPER is not set
  5228. # CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set
  5229. CONFIG_DEFAULT_SECURITY_DAC=y
  5230. CONFIG_LSM="lockdown,yama,bpf"
  5231. #
  5232. # Kernel hardening options
  5233. #
  5234. #
  5235. # Memory initialization
  5236. #
  5237. CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN=y
  5238. CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO=y
  5239. CONFIG_INIT_STACK_NONE=y
  5240. # CONFIG_INIT_STACK_ALL_PATTERN is not set
  5241. # CONFIG_INIT_STACK_ALL_ZERO is not set
  5242. CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y
  5243. # CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
  5244. # end of Memory initialization
  5245. # end of Kernel hardening options
  5246. # end of Security options
  5247. CONFIG_XOR_BLOCKS=y
  5248. CONFIG_CRYPTO=y
  5249. #
  5250. # Crypto core or helper
  5251. #
  5252. CONFIG_CRYPTO_ALGAPI=y
  5253. CONFIG_CRYPTO_ALGAPI2=y
  5254. CONFIG_CRYPTO_AEAD=y
  5255. CONFIG_CRYPTO_AEAD2=y
  5256. CONFIG_CRYPTO_SKCIPHER=y
  5257. CONFIG_CRYPTO_SKCIPHER2=y
  5258. CONFIG_CRYPTO_HASH=y
  5259. CONFIG_CRYPTO_HASH2=y
  5260. CONFIG_CRYPTO_RNG=y
  5261. CONFIG_CRYPTO_RNG2=y
  5262. CONFIG_CRYPTO_RNG_DEFAULT=y
  5263. CONFIG_CRYPTO_AKCIPHER2=y
  5264. CONFIG_CRYPTO_AKCIPHER=y
  5265. CONFIG_CRYPTO_KPP2=y
  5266. CONFIG_CRYPTO_KPP=y
  5267. CONFIG_CRYPTO_ACOMP2=y
  5268. CONFIG_CRYPTO_MANAGER=y
  5269. CONFIG_CRYPTO_MANAGER2=y
  5270. CONFIG_CRYPTO_USER=y
  5271. CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
  5272. CONFIG_CRYPTO_GF128MUL=y
  5273. CONFIG_CRYPTO_NULL=y
  5274. CONFIG_CRYPTO_NULL2=y
  5275. # CONFIG_CRYPTO_PCRYPT is not set
  5276. CONFIG_CRYPTO_CRYPTD=y
  5277. CONFIG_CRYPTO_AUTHENC=y
  5278. # CONFIG_CRYPTO_TEST is not set
  5279. CONFIG_CRYPTO_SIMD=y
  5280. #
  5281. # Public-key cryptography
  5282. #
  5283. CONFIG_CRYPTO_RSA=y
  5284. CONFIG_CRYPTO_DH=y
  5285. CONFIG_CRYPTO_ECC=y
  5286. CONFIG_CRYPTO_ECDH=y
  5287. # CONFIG_CRYPTO_ECRDSA is not set
  5288. # CONFIG_CRYPTO_SM2 is not set
  5289. # CONFIG_CRYPTO_CURVE25519 is not set
  5290. # CONFIG_CRYPTO_CURVE25519_X86 is not set
  5291. #
  5292. # Authenticated Encryption with Associated Data
  5293. #
  5294. CONFIG_CRYPTO_CCM=y
  5295. CONFIG_CRYPTO_GCM=y
  5296. # CONFIG_CRYPTO_CHACHA20POLY1305 is not set
  5297. # CONFIG_CRYPTO_AEGIS128 is not set
  5298. # CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set
  5299. # CONFIG_CRYPTO_SEQIV is not set
  5300. # CONFIG_CRYPTO_ECHAINIV is not set
  5301. #
  5302. # Block modes
  5303. #
  5304. CONFIG_CRYPTO_CBC=y
  5305. # CONFIG_CRYPTO_CFB is not set
  5306. CONFIG_CRYPTO_CTR=y
  5307. CONFIG_CRYPTO_CTS=y
  5308. CONFIG_CRYPTO_ECB=y
  5309. # CONFIG_CRYPTO_LRW is not set
  5310. # CONFIG_CRYPTO_OFB is not set
  5311. # CONFIG_CRYPTO_PCBC is not set
  5312. CONFIG_CRYPTO_XTS=y
  5313. # CONFIG_CRYPTO_KEYWRAP is not set
  5314. # CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set
  5315. # CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set
  5316. # CONFIG_CRYPTO_ADIANTUM is not set
  5317. CONFIG_CRYPTO_ESSIV=y
  5318. #
  5319. # Hash modes
  5320. #
  5321. CONFIG_CRYPTO_CMAC=y
  5322. CONFIG_CRYPTO_HMAC=y
  5323. # CONFIG_CRYPTO_XCBC is not set
  5324. # CONFIG_CRYPTO_VMAC is not set
  5325. #
  5326. # Digest
  5327. #
  5328. CONFIG_CRYPTO_CRC32C=y
  5329. CONFIG_CRYPTO_CRC32C_INTEL=y
  5330. # CONFIG_CRYPTO_CRC32 is not set
  5331. CONFIG_CRYPTO_CRC32_PCLMUL=y
  5332. CONFIG_CRYPTO_XXHASH=y
  5333. CONFIG_CRYPTO_BLAKE2B=y
  5334. # CONFIG_CRYPTO_BLAKE2S is not set
  5335. # CONFIG_CRYPTO_BLAKE2S_X86 is not set
  5336. CONFIG_CRYPTO_CRCT10DIF=y
  5337. CONFIG_CRYPTO_CRCT10DIF_PCLMUL=y
  5338. CONFIG_CRYPTO_GHASH=y
  5339. # CONFIG_CRYPTO_POLY1305 is not set
  5340. # CONFIG_CRYPTO_POLY1305_X86_64 is not set
  5341. CONFIG_CRYPTO_MD4=y
  5342. CONFIG_CRYPTO_MD5=y
  5343. # CONFIG_CRYPTO_MICHAEL_MIC is not set
  5344. # CONFIG_CRYPTO_RMD160 is not set
  5345. CONFIG_CRYPTO_SHA1=y
  5346. # CONFIG_CRYPTO_SHA1_SSSE3 is not set
  5347. # CONFIG_CRYPTO_SHA256_SSSE3 is not set
  5348. # CONFIG_CRYPTO_SHA512_SSSE3 is not set
  5349. CONFIG_CRYPTO_SHA256=y
  5350. CONFIG_CRYPTO_SHA512=y
  5351. # CONFIG_CRYPTO_SHA3 is not set
  5352. # CONFIG_CRYPTO_SM3 is not set
  5353. # CONFIG_CRYPTO_STREEBOG is not set
  5354. # CONFIG_CRYPTO_WP512 is not set
  5355. CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=y
  5356. #
  5357. # Ciphers
  5358. #
  5359. CONFIG_CRYPTO_AES=y
  5360. # CONFIG_CRYPTO_AES_TI is not set
  5361. CONFIG_CRYPTO_AES_NI_INTEL=y
  5362. # CONFIG_CRYPTO_BLOWFISH is not set
  5363. # CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
  5364. # CONFIG_CRYPTO_CAMELLIA is not set
  5365. # CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
  5366. # CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
  5367. # CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
  5368. # CONFIG_CRYPTO_CAST5 is not set
  5369. # CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
  5370. # CONFIG_CRYPTO_CAST6 is not set
  5371. # CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
  5372. CONFIG_CRYPTO_DES=y
  5373. # CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
  5374. # CONFIG_CRYPTO_FCRYPT is not set
  5375. # CONFIG_CRYPTO_CHACHA20 is not set
  5376. # CONFIG_CRYPTO_CHACHA20_X86_64 is not set
  5377. # CONFIG_CRYPTO_SERPENT is not set
  5378. # CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
  5379. # CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
  5380. # CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
  5381. # CONFIG_CRYPTO_SM4 is not set
  5382. # CONFIG_CRYPTO_TWOFISH is not set
  5383. # CONFIG_CRYPTO_TWOFISH_X86_64 is not set
  5384. # CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
  5385. # CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set
  5386. #
  5387. # Compression
  5388. #
  5389. # CONFIG_CRYPTO_DEFLATE is not set
  5390. # CONFIG_CRYPTO_LZO is not set
  5391. # CONFIG_CRYPTO_842 is not set
  5392. CONFIG_CRYPTO_LZ4=y
  5393. # CONFIG_CRYPTO_LZ4HC is not set
  5394. CONFIG_CRYPTO_ZSTD=y
  5395. #
  5396. # Random Number Generation
  5397. #
  5398. # CONFIG_CRYPTO_ANSI_CPRNG is not set
  5399. CONFIG_CRYPTO_DRBG_MENU=y
  5400. CONFIG_CRYPTO_DRBG_HMAC=y
  5401. CONFIG_CRYPTO_DRBG_HASH=y
  5402. CONFIG_CRYPTO_DRBG_CTR=y
  5403. CONFIG_CRYPTO_DRBG=y
  5404. CONFIG_CRYPTO_JITTERENTROPY=y
  5405. CONFIG_CRYPTO_USER_API=y
  5406. CONFIG_CRYPTO_USER_API_HASH=y
  5407. CONFIG_CRYPTO_USER_API_SKCIPHER=y
  5408. # CONFIG_CRYPTO_USER_API_RNG is not set
  5409. CONFIG_CRYPTO_USER_API_AEAD=y
  5410. # CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE is not set
  5411. CONFIG_CRYPTO_STATS=y
  5412. CONFIG_CRYPTO_HASH_INFO=y
  5413. #
  5414. # Crypto library routines
  5415. #
  5416. CONFIG_CRYPTO_LIB_AES=y
  5417. CONFIG_CRYPTO_LIB_ARC4=y
  5418. # CONFIG_CRYPTO_LIB_BLAKE2S is not set
  5419. # CONFIG_CRYPTO_LIB_CHACHA is not set
  5420. # CONFIG_CRYPTO_LIB_CURVE25519 is not set
  5421. CONFIG_CRYPTO_LIB_DES=y
  5422. CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
  5423. # CONFIG_CRYPTO_LIB_POLY1305 is not set
  5424. # CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
  5425. CONFIG_CRYPTO_LIB_SHA256=y
  5426. CONFIG_CRYPTO_HW=y
  5427. # CONFIG_CRYPTO_DEV_PADLOCK is not set
  5428. # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set
  5429. # CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
  5430. CONFIG_CRYPTO_DEV_CCP=y
  5431. CONFIG_CRYPTO_DEV_CCP_DD=y
  5432. CONFIG_CRYPTO_DEV_SP_CCP=y
  5433. # CONFIG_CRYPTO_DEV_CCP_CRYPTO is not set
  5434. CONFIG_CRYPTO_DEV_SP_PSP=y
  5435. CONFIG_CRYPTO_DEV_CCP_DEBUGFS=y
  5436. # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
  5437. # CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
  5438. # CONFIG_CRYPTO_DEV_QAT_C62X is not set
  5439. # CONFIG_CRYPTO_DEV_QAT_4XXX is not set
  5440. # CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
  5441. # CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
  5442. # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
  5443. # CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
  5444. # CONFIG_CRYPTO_DEV_VIRTIO is not set
  5445. # CONFIG_CRYPTO_DEV_SAFEXCEL is not set
  5446. # CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set
  5447. CONFIG_ASYMMETRIC_KEY_TYPE=y
  5448. CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
  5449. # CONFIG_ASYMMETRIC_TPM_KEY_SUBTYPE is not set
  5450. CONFIG_X509_CERTIFICATE_PARSER=y
  5451. CONFIG_PKCS8_PRIVATE_KEY_PARSER=y
  5452. CONFIG_PKCS7_MESSAGE_PARSER=y
  5453. # CONFIG_PKCS7_TEST_KEY is not set
  5454. CONFIG_SIGNED_PE_FILE_VERIFICATION=y
  5455. #
  5456. # Certificates for signature checking
  5457. #
  5458. CONFIG_SYSTEM_TRUSTED_KEYRING=y
  5459. CONFIG_SYSTEM_TRUSTED_KEYS=""
  5460. # CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
  5461. CONFIG_SECONDARY_TRUSTED_KEYRING=y
  5462. CONFIG_SYSTEM_BLACKLIST_KEYRING=y
  5463. CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
  5464. # end of Certificates for signature checking
  5465. #
  5466. # Library routines
  5467. #
  5468. CONFIG_RAID6_PQ=y
  5469. # CONFIG_RAID6_PQ_BENCHMARK is not set
  5470. CONFIG_LINEAR_RANGES=y
  5471. CONFIG_PACKING=y
  5472. CONFIG_BITREVERSE=y
  5473. CONFIG_GENERIC_STRNCPY_FROM_USER=y
  5474. CONFIG_GENERIC_STRNLEN_USER=y
  5475. CONFIG_GENERIC_NET_UTILS=y
  5476. CONFIG_GENERIC_FIND_FIRST_BIT=y
  5477. # CONFIG_CORDIC is not set
  5478. # CONFIG_PRIME_NUMBERS is not set
  5479. CONFIG_RATIONAL=y
  5480. CONFIG_GENERIC_PCI_IOMAP=y
  5481. CONFIG_GENERIC_IOMAP=y
  5482. CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
  5483. CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
  5484. CONFIG_ARCH_USE_SYM_ANNOTATIONS=y
  5485. CONFIG_CRC_CCITT=y
  5486. CONFIG_CRC16=y
  5487. CONFIG_CRC_T10DIF=y
  5488. # CONFIG_CRC_ITU_T is not set
  5489. CONFIG_CRC32=y
  5490. # CONFIG_CRC32_SELFTEST is not set
  5491. CONFIG_CRC32_SLICEBY8=y
  5492. # CONFIG_CRC32_SLICEBY4 is not set
  5493. # CONFIG_CRC32_SARWATE is not set
  5494. # CONFIG_CRC32_BIT is not set
  5495. # CONFIG_CRC64 is not set
  5496. # CONFIG_CRC4 is not set
  5497. # CONFIG_CRC7 is not set
  5498. CONFIG_LIBCRC32C=y
  5499. # CONFIG_CRC8 is not set
  5500. CONFIG_XXHASH=y
  5501. # CONFIG_RANDOM32_SELFTEST is not set
  5502. CONFIG_ZLIB_INFLATE=y
  5503. CONFIG_ZLIB_DEFLATE=y
  5504. CONFIG_LZO_COMPRESS=y
  5505. CONFIG_LZO_DECOMPRESS=y
  5506. CONFIG_LZ4_COMPRESS=y
  5507. CONFIG_LZ4_DECOMPRESS=y
  5508. CONFIG_ZSTD_COMPRESS=y
  5509. CONFIG_ZSTD_DECOMPRESS=y
  5510. CONFIG_XZ_DEC=y
  5511. CONFIG_XZ_DEC_X86=y
  5512. CONFIG_XZ_DEC_POWERPC=y
  5513. CONFIG_XZ_DEC_IA64=y
  5514. CONFIG_XZ_DEC_ARM=y
  5515. CONFIG_XZ_DEC_ARMTHUMB=y
  5516. CONFIG_XZ_DEC_SPARC=y
  5517. CONFIG_XZ_DEC_BCJ=y
  5518. # CONFIG_XZ_DEC_TEST is not set
  5519. CONFIG_DECOMPRESS_ZSTD=y
  5520. CONFIG_GENERIC_ALLOCATOR=y
  5521. CONFIG_INTERVAL_TREE=y
  5522. CONFIG_XARRAY_MULTI=y
  5523. CONFIG_ASSOCIATIVE_ARRAY=y
  5524. CONFIG_HAS_IOMEM=y
  5525. CONFIG_HAS_IOPORT_MAP=y
  5526. CONFIG_HAS_DMA=y
  5527. CONFIG_DMA_OPS=y
  5528. CONFIG_NEED_SG_DMA_LENGTH=y
  5529. CONFIG_NEED_DMA_MAP_STATE=y
  5530. CONFIG_ARCH_DMA_ADDR_T_64BIT=y
  5531. CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y
  5532. CONFIG_SWIOTLB=y
  5533. CONFIG_DMA_COHERENT_POOL=y
  5534. CONFIG_DMA_CMA=y
  5535. # CONFIG_DMA_PERNUMA_CMA is not set
  5536. #
  5537. # Default contiguous memory area size:
  5538. #
  5539. CONFIG_CMA_SIZE_MBYTES=0
  5540. CONFIG_CMA_SIZE_SEL_MBYTES=y
  5541. # CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
  5542. # CONFIG_CMA_SIZE_SEL_MIN is not set
  5543. # CONFIG_CMA_SIZE_SEL_MAX is not set
  5544. CONFIG_CMA_ALIGNMENT=8
  5545. # CONFIG_DMA_API_DEBUG is not set
  5546. # CONFIG_DMA_MAP_BENCHMARK is not set
  5547. CONFIG_SGL_ALLOC=y
  5548. CONFIG_CPU_RMAP=y
  5549. CONFIG_DQL=y
  5550. CONFIG_GLOB=y
  5551. # CONFIG_GLOB_SELFTEST is not set
  5552. CONFIG_NLATTR=y
  5553. CONFIG_CLZ_TAB=y
  5554. CONFIG_IRQ_POLL=y
  5555. CONFIG_MPILIB=y
  5556. CONFIG_OID_REGISTRY=y
  5557. CONFIG_UCS2_STRING=y
  5558. CONFIG_HAVE_GENERIC_VDSO=y
  5559. CONFIG_GENERIC_GETTIMEOFDAY=y
  5560. CONFIG_GENERIC_VDSO_TIME_NS=y
  5561. CONFIG_FONT_SUPPORT=y
  5562. CONFIG_FONTS=y
  5563. # CONFIG_FONT_8x8 is not set
  5564. CONFIG_FONT_8x16=y
  5565. # CONFIG_FONT_6x11 is not set
  5566. # CONFIG_FONT_7x14 is not set
  5567. # CONFIG_FONT_PEARL_8x8 is not set
  5568. # CONFIG_FONT_ACORN_8x8 is not set
  5569. # CONFIG_FONT_MINI_4x6 is not set
  5570. # CONFIG_FONT_6x10 is not set
  5571. # CONFIG_FONT_10x18 is not set
  5572. # CONFIG_FONT_SUN8x16 is not set
  5573. # CONFIG_FONT_SUN12x22 is not set
  5574. CONFIG_FONT_TER16x32=y
  5575. # CONFIG_FONT_6x8 is not set
  5576. CONFIG_SG_POOL=y
  5577. CONFIG_ARCH_HAS_PMEM_API=y
  5578. CONFIG_MEMREGION=y
  5579. CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
  5580. CONFIG_ARCH_HAS_COPY_MC=y
  5581. CONFIG_ARCH_STACKWALK=y
  5582. CONFIG_SBITMAP=y
  5583. # CONFIG_STRING_SELFTEST is not set
  5584. # end of Library routines
  5585. #
  5586. # Kernel hacking
  5587. #
  5588. #
  5589. # printk and dmesg options
  5590. #
  5591. CONFIG_PRINTK_TIME=y
  5592. # CONFIG_PRINTK_CALLER is not set
  5593. CONFIG_CONSOLE_LOGLEVEL_DEFAULT=4
  5594. CONFIG_CONSOLE_LOGLEVEL_QUIET=1
  5595. CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
  5596. # CONFIG_BOOT_PRINTK_DELAY is not set
  5597. CONFIG_DYNAMIC_DEBUG=y
  5598. CONFIG_DYNAMIC_DEBUG_CORE=y
  5599. CONFIG_SYMBOLIC_ERRNAME=y
  5600. CONFIG_DEBUG_BUGVERBOSE=y
  5601. # end of printk and dmesg options
  5602. #
  5603. # Compile-time checks and compiler options
  5604. #
  5605. # CONFIG_DEBUG_INFO is not set
  5606. CONFIG_FRAME_WARN=2048
  5607. CONFIG_STRIP_ASM_SYMS=y
  5608. # CONFIG_READABLE_ASM is not set
  5609. # CONFIG_HEADERS_INSTALL is not set
  5610. # CONFIG_DEBUG_SECTION_MISMATCH is not set
  5611. CONFIG_SECTION_MISMATCH_WARN_ONLY=y
  5612. # CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set
  5613. CONFIG_STACK_VALIDATION=y
  5614. # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
  5615. # end of Compile-time checks and compiler options
  5616. #
  5617. # Generic Kernel Debugging Instruments
  5618. #
  5619. CONFIG_MAGIC_SYSRQ=y
  5620. CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x0
  5621. CONFIG_MAGIC_SYSRQ_SERIAL=y
  5622. CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE=""
  5623. CONFIG_DEBUG_FS=y
  5624. CONFIG_DEBUG_FS_ALLOW_ALL=y
  5625. # CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set
  5626. # CONFIG_DEBUG_FS_ALLOW_NONE is not set
  5627. CONFIG_HAVE_ARCH_KGDB=y
  5628. # CONFIG_KGDB is not set
  5629. CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
  5630. # CONFIG_UBSAN is not set
  5631. CONFIG_HAVE_ARCH_KCSAN=y
  5632. CONFIG_HAVE_KCSAN_COMPILER=y
  5633. # CONFIG_KCSAN is not set
  5634. # end of Generic Kernel Debugging Instruments
  5635. CONFIG_DEBUG_KERNEL=y
  5636. CONFIG_DEBUG_MISC=y
  5637. #
  5638. # Memory Debugging
  5639. #
  5640. # CONFIG_PAGE_EXTENSION is not set
  5641. # CONFIG_DEBUG_PAGEALLOC is not set
  5642. # CONFIG_PAGE_OWNER is not set
  5643. CONFIG_PAGE_POISONING=y
  5644. CONFIG_DEBUG_RODATA_TEST=y
  5645. CONFIG_ARCH_HAS_DEBUG_WX=y
  5646. CONFIG_DEBUG_WX=y
  5647. CONFIG_GENERIC_PTDUMP=y
  5648. CONFIG_PTDUMP_CORE=y
  5649. # CONFIG_PTDUMP_DEBUGFS is not set
  5650. # CONFIG_DEBUG_OBJECTS is not set
  5651. # CONFIG_SLUB_DEBUG_ON is not set
  5652. # CONFIG_SLUB_STATS is not set
  5653. CONFIG_HAVE_DEBUG_KMEMLEAK=y
  5654. # CONFIG_DEBUG_KMEMLEAK is not set
  5655. # CONFIG_DEBUG_STACK_USAGE is not set
  5656. # CONFIG_SCHED_STACK_END_CHECK is not set
  5657. CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y
  5658. # CONFIG_DEBUG_VM is not set
  5659. # CONFIG_DEBUG_VM_PGTABLE is not set
  5660. CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
  5661. # CONFIG_DEBUG_VIRTUAL is not set
  5662. CONFIG_DEBUG_MEMORY_INIT=y
  5663. # CONFIG_DEBUG_PER_CPU_MAPS is not set
  5664. CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y
  5665. # CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set
  5666. CONFIG_HAVE_ARCH_KASAN=y
  5667. CONFIG_HAVE_ARCH_KASAN_VMALLOC=y
  5668. CONFIG_CC_HAS_KASAN_GENERIC=y
  5669. CONFIG_CC_HAS_KASAN_SW_TAGS=y
  5670. CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
  5671. # CONFIG_KASAN is not set
  5672. CONFIG_HAVE_ARCH_KFENCE=y
  5673. CONFIG_KFENCE=y
  5674. CONFIG_KFENCE_STATIC_KEYS=y
  5675. CONFIG_KFENCE_SAMPLE_INTERVAL=100
  5676. CONFIG_KFENCE_NUM_OBJECTS=255
  5677. CONFIG_KFENCE_STRESS_TEST_FAULTS=0
  5678. # end of Memory Debugging
  5679. # CONFIG_DEBUG_SHIRQ is not set
  5680. #
  5681. # Debug Oops, Lockups and Hangs
  5682. #
  5683. # CONFIG_PANIC_ON_OOPS is not set
  5684. CONFIG_PANIC_ON_OOPS_VALUE=0
  5685. CONFIG_PANIC_TIMEOUT=0
  5686. # CONFIG_SOFTLOCKUP_DETECTOR is not set
  5687. CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
  5688. # CONFIG_HARDLOCKUP_DETECTOR is not set
  5689. # CONFIG_DETECT_HUNG_TASK is not set
  5690. # CONFIG_WQ_WATCHDOG is not set
  5691. # end of Debug Oops, Lockups and Hangs
  5692. #
  5693. # Scheduler Debugging
  5694. #
  5695. CONFIG_SCHED_DEBUG=y
  5696. CONFIG_SCHED_INFO=y
  5697. # CONFIG_SCHEDSTATS is not set
  5698. # end of Scheduler Debugging
  5699. # CONFIG_DEBUG_TIMEKEEPING is not set
  5700. CONFIG_DEBUG_PREEMPT=y
  5701. #
  5702. # Lock Debugging (spinlocks, mutexes, etc...)
  5703. #
  5704. CONFIG_LOCK_DEBUGGING_SUPPORT=y
  5705. # CONFIG_PROVE_LOCKING is not set
  5706. # CONFIG_LOCK_STAT is not set
  5707. # CONFIG_DEBUG_RT_MUTEXES is not set
  5708. # CONFIG_DEBUG_SPINLOCK is not set
  5709. # CONFIG_DEBUG_MUTEXES is not set
  5710. # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
  5711. # CONFIG_DEBUG_RWSEMS is not set
  5712. # CONFIG_DEBUG_LOCK_ALLOC is not set
  5713. # CONFIG_DEBUG_ATOMIC_SLEEP is not set
  5714. # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
  5715. # CONFIG_LOCK_TORTURE_TEST is not set
  5716. # CONFIG_WW_MUTEX_SELFTEST is not set
  5717. # CONFIG_SCF_TORTURE_TEST is not set
  5718. # CONFIG_CSD_LOCK_WAIT_DEBUG is not set
  5719. # end of Lock Debugging (spinlocks, mutexes, etc...)
  5720. # CONFIG_DEBUG_IRQFLAGS is not set
  5721. CONFIG_STACKTRACE=y
  5722. # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
  5723. # CONFIG_DEBUG_KOBJECT is not set
  5724. #
  5725. # Debug kernel data structures
  5726. #
  5727. # CONFIG_DEBUG_LIST is not set
  5728. # CONFIG_DEBUG_PLIST is not set
  5729. # CONFIG_DEBUG_SG is not set
  5730. # CONFIG_DEBUG_NOTIFIERS is not set
  5731. # CONFIG_BUG_ON_DATA_CORRUPTION is not set
  5732. # end of Debug kernel data structures
  5733. # CONFIG_DEBUG_CREDENTIALS is not set
  5734. #
  5735. # RCU Debugging
  5736. #
  5737. # CONFIG_RCU_SCALE_TEST is not set
  5738. # CONFIG_RCU_TORTURE_TEST is not set
  5739. # CONFIG_RCU_REF_SCALE_TEST is not set
  5740. CONFIG_RCU_CPU_STALL_TIMEOUT=60
  5741. CONFIG_RCU_TRACE=y
  5742. # CONFIG_RCU_EQS_DEBUG is not set
  5743. # CONFIG_RCU_STRICT_GRACE_PERIOD is not set
  5744. # end of RCU Debugging
  5745. # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
  5746. # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
  5747. # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
  5748. # CONFIG_LATENCYTOP is not set
  5749. CONFIG_USER_STACKTRACE_SUPPORT=y
  5750. CONFIG_HAVE_FUNCTION_TRACER=y
  5751. CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
  5752. CONFIG_HAVE_DYNAMIC_FTRACE=y
  5753. CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
  5754. CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y
  5755. CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y
  5756. CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
  5757. CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
  5758. CONFIG_HAVE_FENTRY=y
  5759. CONFIG_HAVE_OBJTOOL_MCOUNT=y
  5760. CONFIG_HAVE_C_RECORDMCOUNT=y
  5761. CONFIG_TRACE_CLOCK=y
  5762. CONFIG_TRACING_SUPPORT=y
  5763. # CONFIG_FTRACE is not set
  5764. # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
  5765. # CONFIG_SAMPLES is not set
  5766. CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
  5767. CONFIG_STRICT_DEVMEM=y
  5768. CONFIG_IO_STRICT_DEVMEM=y
  5769. #
  5770. # x86 Debugging
  5771. #
  5772. CONFIG_TRACE_IRQFLAGS_SUPPORT=y
  5773. CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y
  5774. CONFIG_EARLY_PRINTK_USB=y
  5775. # CONFIG_X86_VERBOSE_BOOTUP is not set
  5776. CONFIG_EARLY_PRINTK=y
  5777. CONFIG_EARLY_PRINTK_DBGP=y
  5778. CONFIG_EARLY_PRINTK_USB_XDBC=y
  5779. # CONFIG_EFI_PGT_DUMP is not set
  5780. # CONFIG_DEBUG_TLBFLUSH is not set
  5781. CONFIG_HAVE_MMIOTRACE_SUPPORT=y
  5782. # CONFIG_X86_DECODER_SELFTEST is not set
  5783. CONFIG_IO_DELAY_0X80=y
  5784. # CONFIG_IO_DELAY_0XED is not set
  5785. # CONFIG_IO_DELAY_UDELAY is not set
  5786. # CONFIG_IO_DELAY_NONE is not set
  5787. # CONFIG_DEBUG_BOOT_PARAMS is not set
  5788. # CONFIG_CPA_DEBUG is not set
  5789. # CONFIG_DEBUG_ENTRY is not set
  5790. # CONFIG_DEBUG_NMI_SELFTEST is not set
  5791. CONFIG_X86_DEBUG_FPU=y
  5792. # CONFIG_PUNIT_ATOM_DEBUG is not set
  5793. CONFIG_UNWINDER_ORC=y
  5794. # CONFIG_UNWINDER_FRAME_POINTER is not set
  5795. # CONFIG_UNWINDER_GUESS is not set
  5796. # end of x86 Debugging
  5797. #
  5798. # Kernel Testing and Coverage
  5799. #
  5800. # CONFIG_KUNIT is not set
  5801. # CONFIG_NOTIFIER_ERROR_INJECTION is not set
  5802. # CONFIG_FAULT_INJECTION is not set
  5803. CONFIG_ARCH_HAS_KCOV=y
  5804. CONFIG_CC_HAS_SANCOV_TRACE_PC=y
  5805. # CONFIG_KCOV is not set
  5806. CONFIG_RUNTIME_TESTING_MENU=y
  5807. # CONFIG_LKDTM is not set
  5808. # CONFIG_TEST_LIST_SORT is not set
  5809. # CONFIG_TEST_MIN_HEAP is not set
  5810. # CONFIG_TEST_SORT is not set
  5811. # CONFIG_BACKTRACE_SELF_TEST is not set
  5812. # CONFIG_RBTREE_TEST is not set
  5813. # CONFIG_REED_SOLOMON_TEST is not set
  5814. # CONFIG_INTERVAL_TREE_TEST is not set
  5815. CONFIG_ATOMIC64_SELFTEST=y
  5816. # CONFIG_TEST_HEXDUMP is not set
  5817. # CONFIG_TEST_STRING_HELPERS is not set
  5818. # CONFIG_TEST_STRSCPY is not set
  5819. CONFIG_TEST_KSTRTOX=y
  5820. # CONFIG_TEST_PRINTF is not set
  5821. # CONFIG_TEST_BITMAP is not set
  5822. # CONFIG_TEST_UUID is not set
  5823. # CONFIG_TEST_XARRAY is not set
  5824. # CONFIG_TEST_OVERFLOW is not set
  5825. # CONFIG_TEST_RHASHTABLE is not set
  5826. # CONFIG_TEST_HASH is not set
  5827. # CONFIG_TEST_IDA is not set
  5828. # CONFIG_FIND_BIT_BENCHMARK is not set
  5829. # CONFIG_TEST_FIRMWARE is not set
  5830. # CONFIG_TEST_SYSCTL is not set
  5831. # CONFIG_TEST_UDELAY is not set
  5832. # CONFIG_TEST_MEMCAT_P is not set
  5833. # CONFIG_TEST_STACKINIT is not set
  5834. # CONFIG_TEST_MEMINIT is not set
  5835. # CONFIG_TEST_HMM is not set
  5836. # CONFIG_TEST_FREE_PAGES is not set
  5837. # CONFIG_TEST_FPU is not set
  5838. # CONFIG_MEMTEST is not set
  5839. # end of Kernel Testing and Coverage
  5840. # end of Kernel hacking