test_external_bootlin.py 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021
  1. # This file was auto-generated by support/scripts/gen-bootlin-toolchains
  2. # Do not edit
  3. from tests.toolchain.test_external import TestExternalToolchain
  4. class TestExternalToolchainBootlinAarch64GlibcBleedingEdge(TestExternalToolchain):
  5. config = """
  6. BR2_aarch64=y
  7. BR2_TOOLCHAIN_EXTERNAL=y
  8. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  9. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_GLIBC_BLEEDING_EDGE=y
  10. # BR2_TARGET_ROOTFS_TAR is not set
  11. """
  12. toolchain_prefix = "aarch64-linux"
  13. def test_run(self):
  14. TestExternalToolchain.common_check(self)
  15. class TestExternalToolchainBootlinAarch64GlibcStable(TestExternalToolchain):
  16. config = """
  17. BR2_aarch64=y
  18. BR2_TOOLCHAIN_EXTERNAL=y
  19. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  20. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_GLIBC_STABLE=y
  21. # BR2_TARGET_ROOTFS_TAR is not set
  22. """
  23. toolchain_prefix = "aarch64-linux"
  24. def test_run(self):
  25. TestExternalToolchain.common_check(self)
  26. class TestExternalToolchainBootlinAarch64MuslBleedingEdge(TestExternalToolchain):
  27. config = """
  28. BR2_aarch64=y
  29. BR2_TOOLCHAIN_EXTERNAL=y
  30. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  31. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_MUSL_BLEEDING_EDGE=y
  32. # BR2_TARGET_ROOTFS_TAR is not set
  33. """
  34. toolchain_prefix = "aarch64-linux"
  35. def test_run(self):
  36. TestExternalToolchain.common_check(self)
  37. class TestExternalToolchainBootlinAarch64MuslStable(TestExternalToolchain):
  38. config = """
  39. BR2_aarch64=y
  40. BR2_TOOLCHAIN_EXTERNAL=y
  41. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  42. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_MUSL_STABLE=y
  43. # BR2_TARGET_ROOTFS_TAR is not set
  44. """
  45. toolchain_prefix = "aarch64-linux"
  46. def test_run(self):
  47. TestExternalToolchain.common_check(self)
  48. class TestExternalToolchainBootlinAarch64UclibcBleedingEdge(TestExternalToolchain):
  49. config = """
  50. BR2_aarch64=y
  51. BR2_TOOLCHAIN_EXTERNAL=y
  52. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  53. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_UCLIBC_BLEEDING_EDGE=y
  54. # BR2_TARGET_ROOTFS_TAR is not set
  55. """
  56. toolchain_prefix = "aarch64-linux"
  57. def test_run(self):
  58. TestExternalToolchain.common_check(self)
  59. class TestExternalToolchainBootlinAarch64UclibcStable(TestExternalToolchain):
  60. config = """
  61. BR2_aarch64=y
  62. BR2_TOOLCHAIN_EXTERNAL=y
  63. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  64. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_UCLIBC_STABLE=y
  65. # BR2_TARGET_ROOTFS_TAR is not set
  66. """
  67. toolchain_prefix = "aarch64-linux"
  68. def test_run(self):
  69. TestExternalToolchain.common_check(self)
  70. class TestExternalToolchainBootlinAarch64beGlibcBleedingEdge(TestExternalToolchain):
  71. config = """
  72. BR2_aarch64_be=y
  73. BR2_TOOLCHAIN_EXTERNAL=y
  74. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  75. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_GLIBC_BLEEDING_EDGE=y
  76. # BR2_TARGET_ROOTFS_TAR is not set
  77. """
  78. toolchain_prefix = "aarch64_be-linux"
  79. def test_run(self):
  80. TestExternalToolchain.common_check(self)
  81. class TestExternalToolchainBootlinAarch64beGlibcStable(TestExternalToolchain):
  82. config = """
  83. BR2_aarch64_be=y
  84. BR2_TOOLCHAIN_EXTERNAL=y
  85. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  86. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_GLIBC_STABLE=y
  87. # BR2_TARGET_ROOTFS_TAR is not set
  88. """
  89. toolchain_prefix = "aarch64_be-linux"
  90. def test_run(self):
  91. TestExternalToolchain.common_check(self)
  92. class TestExternalToolchainBootlinAarch64beUclibcBleedingEdge(TestExternalToolchain):
  93. config = """
  94. BR2_aarch64_be=y
  95. BR2_TOOLCHAIN_EXTERNAL=y
  96. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  97. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_UCLIBC_BLEEDING_EDGE=y
  98. # BR2_TARGET_ROOTFS_TAR is not set
  99. """
  100. toolchain_prefix = "aarch64_be-linux"
  101. def test_run(self):
  102. TestExternalToolchain.common_check(self)
  103. class TestExternalToolchainBootlinAarch64beUclibcStable(TestExternalToolchain):
  104. config = """
  105. BR2_aarch64_be=y
  106. BR2_TOOLCHAIN_EXTERNAL=y
  107. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  108. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_UCLIBC_STABLE=y
  109. # BR2_TARGET_ROOTFS_TAR is not set
  110. """
  111. toolchain_prefix = "aarch64_be-linux"
  112. def test_run(self):
  113. TestExternalToolchain.common_check(self)
  114. class TestExternalToolchainBootlinArcle750dUclibcBleedingEdge(TestExternalToolchain):
  115. config = """
  116. BR2_arcle=y
  117. BR2_arc750d=y
  118. BR2_TOOLCHAIN_EXTERNAL=y
  119. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  120. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_750D_UCLIBC_BLEEDING_EDGE=y
  121. # BR2_TARGET_ROOTFS_TAR is not set
  122. """
  123. toolchain_prefix = "arc-linux"
  124. def test_run(self):
  125. TestExternalToolchain.common_check(self)
  126. class TestExternalToolchainBootlinArcle750dUclibcStable(TestExternalToolchain):
  127. config = """
  128. BR2_arcle=y
  129. BR2_arc750d=y
  130. BR2_TOOLCHAIN_EXTERNAL=y
  131. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  132. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_750D_UCLIBC_STABLE=y
  133. # BR2_TARGET_ROOTFS_TAR is not set
  134. """
  135. toolchain_prefix = "arc-linux"
  136. def test_run(self):
  137. TestExternalToolchain.common_check(self)
  138. class TestExternalToolchainBootlinArclehs38GlibcBleedingEdge(TestExternalToolchain):
  139. config = """
  140. BR2_arcle=y
  141. BR2_archs38=y
  142. BR2_TOOLCHAIN_EXTERNAL=y
  143. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  144. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_GLIBC_BLEEDING_EDGE=y
  145. # BR2_TARGET_ROOTFS_TAR is not set
  146. """
  147. toolchain_prefix = "arc-linux"
  148. def test_run(self):
  149. TestExternalToolchain.common_check(self)
  150. class TestExternalToolchainBootlinArclehs38GlibcStable(TestExternalToolchain):
  151. config = """
  152. BR2_arcle=y
  153. BR2_archs38=y
  154. BR2_TOOLCHAIN_EXTERNAL=y
  155. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  156. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_GLIBC_STABLE=y
  157. # BR2_TARGET_ROOTFS_TAR is not set
  158. """
  159. toolchain_prefix = "arc-linux"
  160. def test_run(self):
  161. TestExternalToolchain.common_check(self)
  162. class TestExternalToolchainBootlinArclehs38UclibcBleedingEdge(TestExternalToolchain):
  163. config = """
  164. BR2_arcle=y
  165. BR2_archs38=y
  166. BR2_TOOLCHAIN_EXTERNAL=y
  167. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  168. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_UCLIBC_BLEEDING_EDGE=y
  169. # BR2_TARGET_ROOTFS_TAR is not set
  170. """
  171. toolchain_prefix = "arc-linux"
  172. def test_run(self):
  173. TestExternalToolchain.common_check(self)
  174. class TestExternalToolchainBootlinArclehs38UclibcStable(TestExternalToolchain):
  175. config = """
  176. BR2_arcle=y
  177. BR2_archs38=y
  178. BR2_TOOLCHAIN_EXTERNAL=y
  179. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  180. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_UCLIBC_STABLE=y
  181. # BR2_TARGET_ROOTFS_TAR is not set
  182. """
  183. toolchain_prefix = "arc-linux"
  184. def test_run(self):
  185. TestExternalToolchain.common_check(self)
  186. class TestExternalToolchainBootlinArmv5eabiGlibcBleedingEdge(TestExternalToolchain):
  187. config = """
  188. BR2_arm=y
  189. BR2_arm926t=y
  190. BR2_ARM_EABI=y
  191. BR2_TOOLCHAIN_EXTERNAL=y
  192. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  193. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_GLIBC_BLEEDING_EDGE=y
  194. # BR2_TARGET_ROOTFS_TAR is not set
  195. """
  196. toolchain_prefix = "arm-linux"
  197. def test_run(self):
  198. TestExternalToolchain.common_check(self)
  199. class TestExternalToolchainBootlinArmv5eabiGlibcStable(TestExternalToolchain):
  200. config = """
  201. BR2_arm=y
  202. BR2_arm926t=y
  203. BR2_ARM_EABI=y
  204. BR2_TOOLCHAIN_EXTERNAL=y
  205. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  206. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_GLIBC_STABLE=y
  207. # BR2_TARGET_ROOTFS_TAR is not set
  208. """
  209. toolchain_prefix = "arm-linux"
  210. def test_run(self):
  211. TestExternalToolchain.common_check(self)
  212. class TestExternalToolchainBootlinArmv5eabiMuslBleedingEdge(TestExternalToolchain):
  213. config = """
  214. BR2_arm=y
  215. BR2_arm926t=y
  216. BR2_ARM_EABI=y
  217. BR2_TOOLCHAIN_EXTERNAL=y
  218. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  219. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_MUSL_BLEEDING_EDGE=y
  220. # BR2_TARGET_ROOTFS_TAR is not set
  221. """
  222. toolchain_prefix = "arm-linux"
  223. def test_run(self):
  224. TestExternalToolchain.common_check(self)
  225. class TestExternalToolchainBootlinArmv5eabiMuslStable(TestExternalToolchain):
  226. config = """
  227. BR2_arm=y
  228. BR2_arm926t=y
  229. BR2_ARM_EABI=y
  230. BR2_TOOLCHAIN_EXTERNAL=y
  231. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  232. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_MUSL_STABLE=y
  233. # BR2_TARGET_ROOTFS_TAR is not set
  234. """
  235. toolchain_prefix = "arm-linux"
  236. def test_run(self):
  237. TestExternalToolchain.common_check(self)
  238. class TestExternalToolchainBootlinArmv5eabiUclibcBleedingEdge(TestExternalToolchain):
  239. config = """
  240. BR2_arm=y
  241. BR2_arm926t=y
  242. BR2_ARM_EABI=y
  243. BR2_TOOLCHAIN_EXTERNAL=y
  244. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  245. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_UCLIBC_BLEEDING_EDGE=y
  246. # BR2_TARGET_ROOTFS_TAR is not set
  247. """
  248. toolchain_prefix = "arm-linux"
  249. def test_run(self):
  250. TestExternalToolchain.common_check(self)
  251. class TestExternalToolchainBootlinArmv5eabiUclibcStable(TestExternalToolchain):
  252. config = """
  253. BR2_arm=y
  254. BR2_arm926t=y
  255. BR2_ARM_EABI=y
  256. BR2_TOOLCHAIN_EXTERNAL=y
  257. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  258. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_UCLIBC_STABLE=y
  259. # BR2_TARGET_ROOTFS_TAR is not set
  260. """
  261. toolchain_prefix = "arm-linux"
  262. def test_run(self):
  263. TestExternalToolchain.common_check(self)
  264. class TestExternalToolchainBootlinArmv6eabihfGlibcBleedingEdge(TestExternalToolchain):
  265. config = """
  266. BR2_arm=y
  267. BR2_arm1176jzf_s=y
  268. BR2_ARM_EABIHF=y
  269. BR2_TOOLCHAIN_EXTERNAL=y
  270. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  271. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_GLIBC_BLEEDING_EDGE=y
  272. # BR2_TARGET_ROOTFS_TAR is not set
  273. """
  274. toolchain_prefix = "arm-linux"
  275. def test_run(self):
  276. TestExternalToolchain.common_check(self)
  277. class TestExternalToolchainBootlinArmv6eabihfGlibcStable(TestExternalToolchain):
  278. config = """
  279. BR2_arm=y
  280. BR2_arm1176jzf_s=y
  281. BR2_ARM_EABIHF=y
  282. BR2_TOOLCHAIN_EXTERNAL=y
  283. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  284. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_GLIBC_STABLE=y
  285. # BR2_TARGET_ROOTFS_TAR is not set
  286. """
  287. toolchain_prefix = "arm-linux"
  288. def test_run(self):
  289. TestExternalToolchain.common_check(self)
  290. class TestExternalToolchainBootlinArmv6eabihfMuslBleedingEdge(TestExternalToolchain):
  291. config = """
  292. BR2_arm=y
  293. BR2_arm1176jzf_s=y
  294. BR2_ARM_EABIHF=y
  295. BR2_TOOLCHAIN_EXTERNAL=y
  296. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  297. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_MUSL_BLEEDING_EDGE=y
  298. # BR2_TARGET_ROOTFS_TAR is not set
  299. """
  300. toolchain_prefix = "arm-linux"
  301. def test_run(self):
  302. TestExternalToolchain.common_check(self)
  303. class TestExternalToolchainBootlinArmv6eabihfMuslStable(TestExternalToolchain):
  304. config = """
  305. BR2_arm=y
  306. BR2_arm1176jzf_s=y
  307. BR2_ARM_EABIHF=y
  308. BR2_TOOLCHAIN_EXTERNAL=y
  309. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  310. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_MUSL_STABLE=y
  311. # BR2_TARGET_ROOTFS_TAR is not set
  312. """
  313. toolchain_prefix = "arm-linux"
  314. def test_run(self):
  315. TestExternalToolchain.common_check(self)
  316. class TestExternalToolchainBootlinArmv6eabihfUclibcBleedingEdge(TestExternalToolchain):
  317. config = """
  318. BR2_arm=y
  319. BR2_arm1176jzf_s=y
  320. BR2_ARM_EABIHF=y
  321. BR2_TOOLCHAIN_EXTERNAL=y
  322. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  323. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_UCLIBC_BLEEDING_EDGE=y
  324. # BR2_TARGET_ROOTFS_TAR is not set
  325. """
  326. toolchain_prefix = "arm-linux"
  327. def test_run(self):
  328. TestExternalToolchain.common_check(self)
  329. class TestExternalToolchainBootlinArmv6eabihfUclibcStable(TestExternalToolchain):
  330. config = """
  331. BR2_arm=y
  332. BR2_arm1176jzf_s=y
  333. BR2_ARM_EABIHF=y
  334. BR2_TOOLCHAIN_EXTERNAL=y
  335. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  336. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_UCLIBC_STABLE=y
  337. # BR2_TARGET_ROOTFS_TAR is not set
  338. """
  339. toolchain_prefix = "arm-linux"
  340. def test_run(self):
  341. TestExternalToolchain.common_check(self)
  342. class TestExternalToolchainBootlinArmv7eabihfGlibcBleedingEdge(TestExternalToolchain):
  343. config = """
  344. BR2_arm=y
  345. BR2_cortex_a8=y
  346. BR2_ARM_EABIHF=y
  347. BR2_TOOLCHAIN_EXTERNAL=y
  348. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  349. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_GLIBC_BLEEDING_EDGE=y
  350. # BR2_TARGET_ROOTFS_TAR is not set
  351. """
  352. toolchain_prefix = "arm-linux"
  353. def test_run(self):
  354. TestExternalToolchain.common_check(self)
  355. class TestExternalToolchainBootlinArmv7eabihfGlibcStable(TestExternalToolchain):
  356. config = """
  357. BR2_arm=y
  358. BR2_cortex_a8=y
  359. BR2_ARM_EABIHF=y
  360. BR2_TOOLCHAIN_EXTERNAL=y
  361. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  362. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_GLIBC_STABLE=y
  363. # BR2_TARGET_ROOTFS_TAR is not set
  364. """
  365. toolchain_prefix = "arm-linux"
  366. def test_run(self):
  367. TestExternalToolchain.common_check(self)
  368. class TestExternalToolchainBootlinArmv7eabihfMuslBleedingEdge(TestExternalToolchain):
  369. config = """
  370. BR2_arm=y
  371. BR2_cortex_a8=y
  372. BR2_ARM_EABIHF=y
  373. BR2_TOOLCHAIN_EXTERNAL=y
  374. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  375. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_MUSL_BLEEDING_EDGE=y
  376. # BR2_TARGET_ROOTFS_TAR is not set
  377. """
  378. toolchain_prefix = "arm-linux"
  379. def test_run(self):
  380. TestExternalToolchain.common_check(self)
  381. class TestExternalToolchainBootlinArmv7eabihfMuslStable(TestExternalToolchain):
  382. config = """
  383. BR2_arm=y
  384. BR2_cortex_a8=y
  385. BR2_ARM_EABIHF=y
  386. BR2_TOOLCHAIN_EXTERNAL=y
  387. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  388. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_MUSL_STABLE=y
  389. # BR2_TARGET_ROOTFS_TAR is not set
  390. """
  391. toolchain_prefix = "arm-linux"
  392. def test_run(self):
  393. TestExternalToolchain.common_check(self)
  394. class TestExternalToolchainBootlinArmv7eabihfUclibcBleedingEdge(TestExternalToolchain):
  395. config = """
  396. BR2_arm=y
  397. BR2_cortex_a8=y
  398. BR2_ARM_EABIHF=y
  399. BR2_TOOLCHAIN_EXTERNAL=y
  400. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  401. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_UCLIBC_BLEEDING_EDGE=y
  402. # BR2_TARGET_ROOTFS_TAR is not set
  403. """
  404. toolchain_prefix = "arm-linux"
  405. def test_run(self):
  406. TestExternalToolchain.common_check(self)
  407. class TestExternalToolchainBootlinArmv7eabihfUclibcStable(TestExternalToolchain):
  408. config = """
  409. BR2_arm=y
  410. BR2_cortex_a8=y
  411. BR2_ARM_EABIHF=y
  412. BR2_TOOLCHAIN_EXTERNAL=y
  413. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  414. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_UCLIBC_STABLE=y
  415. # BR2_TARGET_ROOTFS_TAR is not set
  416. """
  417. toolchain_prefix = "arm-linux"
  418. def test_run(self):
  419. TestExternalToolchain.common_check(self)
  420. class TestExternalToolchainBootlinArmebv7eabihfGlibcBleedingEdge(TestExternalToolchain):
  421. config = """
  422. BR2_armeb=y
  423. BR2_cortex_a8=y
  424. BR2_ARM_EABIHF=y
  425. BR2_TOOLCHAIN_EXTERNAL=y
  426. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  427. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMEBV7_EABIHF_GLIBC_BLEEDING_EDGE=y
  428. # BR2_TARGET_ROOTFS_TAR is not set
  429. """
  430. toolchain_prefix = "armeb-linux"
  431. def test_run(self):
  432. TestExternalToolchain.common_check(self)
  433. class TestExternalToolchainBootlinArmebv7eabihfGlibcStable(TestExternalToolchain):
  434. config = """
  435. BR2_armeb=y
  436. BR2_cortex_a8=y
  437. BR2_ARM_EABIHF=y
  438. BR2_TOOLCHAIN_EXTERNAL=y
  439. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  440. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMEBV7_EABIHF_GLIBC_STABLE=y
  441. # BR2_TARGET_ROOTFS_TAR is not set
  442. """
  443. toolchain_prefix = "armeb-linux"
  444. def test_run(self):
  445. TestExternalToolchain.common_check(self)
  446. class TestExternalToolchainBootlinArmebv7eabihfMuslBleedingEdge(TestExternalToolchain):
  447. config = """
  448. BR2_armeb=y
  449. BR2_cortex_a8=y
  450. BR2_ARM_EABIHF=y
  451. BR2_TOOLCHAIN_EXTERNAL=y
  452. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  453. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMEBV7_EABIHF_MUSL_BLEEDING_EDGE=y
  454. # BR2_TARGET_ROOTFS_TAR is not set
  455. """
  456. toolchain_prefix = "armeb-linux"
  457. def test_run(self):
  458. TestExternalToolchain.common_check(self)
  459. class TestExternalToolchainBootlinArmebv7eabihfMuslStable(TestExternalToolchain):
  460. config = """
  461. BR2_armeb=y
  462. BR2_cortex_a8=y
  463. BR2_ARM_EABIHF=y
  464. BR2_TOOLCHAIN_EXTERNAL=y
  465. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  466. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMEBV7_EABIHF_MUSL_STABLE=y
  467. # BR2_TARGET_ROOTFS_TAR is not set
  468. """
  469. toolchain_prefix = "armeb-linux"
  470. def test_run(self):
  471. TestExternalToolchain.common_check(self)
  472. class TestExternalToolchainBootlinArmebv7eabihfUclibcBleedingEdge(TestExternalToolchain):
  473. config = """
  474. BR2_armeb=y
  475. BR2_cortex_a8=y
  476. BR2_ARM_EABIHF=y
  477. BR2_TOOLCHAIN_EXTERNAL=y
  478. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  479. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMEBV7_EABIHF_UCLIBC_BLEEDING_EDGE=y
  480. # BR2_TARGET_ROOTFS_TAR is not set
  481. """
  482. toolchain_prefix = "armeb-linux"
  483. def test_run(self):
  484. TestExternalToolchain.common_check(self)
  485. class TestExternalToolchainBootlinArmebv7eabihfUclibcStable(TestExternalToolchain):
  486. config = """
  487. BR2_armeb=y
  488. BR2_cortex_a8=y
  489. BR2_ARM_EABIHF=y
  490. BR2_TOOLCHAIN_EXTERNAL=y
  491. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  492. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMEBV7_EABIHF_UCLIBC_STABLE=y
  493. # BR2_TARGET_ROOTFS_TAR is not set
  494. """
  495. toolchain_prefix = "armeb-linux"
  496. def test_run(self):
  497. TestExternalToolchain.common_check(self)
  498. class TestExternalToolchainBootlinArmv7mUclibcBleedingEdge(TestExternalToolchain):
  499. config = """
  500. BR2_arm=y
  501. BR2_cortex_m4=y
  502. BR2_TOOLCHAIN_EXTERNAL=y
  503. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  504. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7M_UCLIBC_BLEEDING_EDGE=y
  505. # BR2_TARGET_ROOTFS_TAR is not set
  506. """
  507. toolchain_prefix = "arm-linux"
  508. def test_run(self):
  509. TestExternalToolchain.common_check(self)
  510. class TestExternalToolchainBootlinArmv7mUclibcStable(TestExternalToolchain):
  511. config = """
  512. BR2_arm=y
  513. BR2_cortex_m4=y
  514. BR2_TOOLCHAIN_EXTERNAL=y
  515. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  516. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7M_UCLIBC_STABLE=y
  517. # BR2_TARGET_ROOTFS_TAR is not set
  518. """
  519. toolchain_prefix = "arm-linux"
  520. def test_run(self):
  521. TestExternalToolchain.common_check(self)
  522. class TestExternalToolchainBootlinM68k68xxxUclibcBleedingEdge(TestExternalToolchain):
  523. config = """
  524. BR2_m68k=y
  525. BR2_m68k_68040=y
  526. BR2_TOOLCHAIN_EXTERNAL=y
  527. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  528. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_68XXX_UCLIBC_BLEEDING_EDGE=y
  529. # BR2_TARGET_ROOTFS_TAR is not set
  530. """
  531. toolchain_prefix = "m68k-linux"
  532. def test_run(self):
  533. TestExternalToolchain.common_check(self)
  534. class TestExternalToolchainBootlinM68k68xxxUclibcStable(TestExternalToolchain):
  535. config = """
  536. BR2_m68k=y
  537. BR2_m68k_68040=y
  538. BR2_TOOLCHAIN_EXTERNAL=y
  539. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  540. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_68XXX_UCLIBC_STABLE=y
  541. # BR2_TARGET_ROOTFS_TAR is not set
  542. """
  543. toolchain_prefix = "m68k-linux"
  544. def test_run(self):
  545. TestExternalToolchain.common_check(self)
  546. class TestExternalToolchainBootlinM68kcoldfireUclibcBleedingEdge(TestExternalToolchain):
  547. config = """
  548. BR2_m68k=y
  549. BR2_m68k_cf5208=y
  550. BR2_TOOLCHAIN_EXTERNAL=y
  551. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  552. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_COLDFIRE_UCLIBC_BLEEDING_EDGE=y
  553. # BR2_TARGET_ROOTFS_TAR is not set
  554. """
  555. toolchain_prefix = "m68k-linux"
  556. def test_run(self):
  557. TestExternalToolchain.common_check(self)
  558. class TestExternalToolchainBootlinM68kcoldfireUclibcStable(TestExternalToolchain):
  559. config = """
  560. BR2_m68k=y
  561. BR2_m68k_cf5208=y
  562. BR2_TOOLCHAIN_EXTERNAL=y
  563. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  564. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_COLDFIRE_UCLIBC_STABLE=y
  565. # BR2_TARGET_ROOTFS_TAR is not set
  566. """
  567. toolchain_prefix = "m68k-linux"
  568. def test_run(self):
  569. TestExternalToolchain.common_check(self)
  570. class TestExternalToolchainBootlinMicroblazebeGlibcBleedingEdge(TestExternalToolchain):
  571. config = """
  572. BR2_microblazebe=y
  573. BR2_TOOLCHAIN_EXTERNAL=y
  574. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  575. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_GLIBC_BLEEDING_EDGE=y
  576. # BR2_TARGET_ROOTFS_TAR is not set
  577. """
  578. toolchain_prefix = "microblaze-linux"
  579. def test_run(self):
  580. TestExternalToolchain.common_check(self)
  581. class TestExternalToolchainBootlinMicroblazebeGlibcStable(TestExternalToolchain):
  582. config = """
  583. BR2_microblazebe=y
  584. BR2_TOOLCHAIN_EXTERNAL=y
  585. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  586. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_GLIBC_STABLE=y
  587. # BR2_TARGET_ROOTFS_TAR is not set
  588. """
  589. toolchain_prefix = "microblaze-linux"
  590. def test_run(self):
  591. TestExternalToolchain.common_check(self)
  592. class TestExternalToolchainBootlinMicroblazebeMuslBleedingEdge(TestExternalToolchain):
  593. config = """
  594. BR2_microblazebe=y
  595. BR2_TOOLCHAIN_EXTERNAL=y
  596. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  597. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_MUSL_BLEEDING_EDGE=y
  598. # BR2_TARGET_ROOTFS_TAR is not set
  599. """
  600. toolchain_prefix = "microblaze-linux"
  601. def test_run(self):
  602. TestExternalToolchain.common_check(self)
  603. class TestExternalToolchainBootlinMicroblazebeMuslStable(TestExternalToolchain):
  604. config = """
  605. BR2_microblazebe=y
  606. BR2_TOOLCHAIN_EXTERNAL=y
  607. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  608. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_MUSL_STABLE=y
  609. # BR2_TARGET_ROOTFS_TAR is not set
  610. """
  611. toolchain_prefix = "microblaze-linux"
  612. def test_run(self):
  613. TestExternalToolchain.common_check(self)
  614. class TestExternalToolchainBootlinMicroblazebeUclibcBleedingEdge(TestExternalToolchain):
  615. config = """
  616. BR2_microblazebe=y
  617. BR2_TOOLCHAIN_EXTERNAL=y
  618. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  619. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_UCLIBC_BLEEDING_EDGE=y
  620. # BR2_TARGET_ROOTFS_TAR is not set
  621. """
  622. toolchain_prefix = "microblaze-linux"
  623. def test_run(self):
  624. TestExternalToolchain.common_check(self)
  625. class TestExternalToolchainBootlinMicroblazebeUclibcStable(TestExternalToolchain):
  626. config = """
  627. BR2_microblazebe=y
  628. BR2_TOOLCHAIN_EXTERNAL=y
  629. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  630. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_UCLIBC_STABLE=y
  631. # BR2_TARGET_ROOTFS_TAR is not set
  632. """
  633. toolchain_prefix = "microblaze-linux"
  634. def test_run(self):
  635. TestExternalToolchain.common_check(self)
  636. class TestExternalToolchainBootlinMicroblazeelGlibcBleedingEdge(TestExternalToolchain):
  637. config = """
  638. BR2_microblazeel=y
  639. BR2_TOOLCHAIN_EXTERNAL=y
  640. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  641. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_GLIBC_BLEEDING_EDGE=y
  642. # BR2_TARGET_ROOTFS_TAR is not set
  643. """
  644. toolchain_prefix = "microblazeel-linux"
  645. def test_run(self):
  646. TestExternalToolchain.common_check(self)
  647. class TestExternalToolchainBootlinMicroblazeelGlibcStable(TestExternalToolchain):
  648. config = """
  649. BR2_microblazeel=y
  650. BR2_TOOLCHAIN_EXTERNAL=y
  651. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  652. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_GLIBC_STABLE=y
  653. # BR2_TARGET_ROOTFS_TAR is not set
  654. """
  655. toolchain_prefix = "microblazeel-linux"
  656. def test_run(self):
  657. TestExternalToolchain.common_check(self)
  658. class TestExternalToolchainBootlinMicroblazeelMuslBleedingEdge(TestExternalToolchain):
  659. config = """
  660. BR2_microblazeel=y
  661. BR2_TOOLCHAIN_EXTERNAL=y
  662. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  663. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_MUSL_BLEEDING_EDGE=y
  664. # BR2_TARGET_ROOTFS_TAR is not set
  665. """
  666. toolchain_prefix = "microblazeel-linux"
  667. def test_run(self):
  668. TestExternalToolchain.common_check(self)
  669. class TestExternalToolchainBootlinMicroblazeelMuslStable(TestExternalToolchain):
  670. config = """
  671. BR2_microblazeel=y
  672. BR2_TOOLCHAIN_EXTERNAL=y
  673. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  674. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_MUSL_STABLE=y
  675. # BR2_TARGET_ROOTFS_TAR is not set
  676. """
  677. toolchain_prefix = "microblazeel-linux"
  678. def test_run(self):
  679. TestExternalToolchain.common_check(self)
  680. class TestExternalToolchainBootlinMicroblazeelUclibcBleedingEdge(TestExternalToolchain):
  681. config = """
  682. BR2_microblazeel=y
  683. BR2_TOOLCHAIN_EXTERNAL=y
  684. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  685. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_UCLIBC_BLEEDING_EDGE=y
  686. # BR2_TARGET_ROOTFS_TAR is not set
  687. """
  688. toolchain_prefix = "microblazeel-linux"
  689. def test_run(self):
  690. TestExternalToolchain.common_check(self)
  691. class TestExternalToolchainBootlinMicroblazeelUclibcStable(TestExternalToolchain):
  692. config = """
  693. BR2_microblazeel=y
  694. BR2_TOOLCHAIN_EXTERNAL=y
  695. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  696. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_UCLIBC_STABLE=y
  697. # BR2_TARGET_ROOTFS_TAR is not set
  698. """
  699. toolchain_prefix = "microblazeel-linux"
  700. def test_run(self):
  701. TestExternalToolchain.common_check(self)
  702. class TestExternalToolchainBootlinMips32GlibcBleedingEdge(TestExternalToolchain):
  703. config = """
  704. BR2_mips=y
  705. BR2_mips_32=y
  706. # BR2_MIPS_SOFT_FLOAT is not set
  707. BR2_TOOLCHAIN_EXTERNAL=y
  708. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  709. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_GLIBC_BLEEDING_EDGE=y
  710. # BR2_TARGET_ROOTFS_TAR is not set
  711. """
  712. toolchain_prefix = "mips-linux"
  713. def test_run(self):
  714. TestExternalToolchain.common_check(self)
  715. class TestExternalToolchainBootlinMips32GlibcStable(TestExternalToolchain):
  716. config = """
  717. BR2_mips=y
  718. BR2_mips_32=y
  719. # BR2_MIPS_SOFT_FLOAT is not set
  720. BR2_TOOLCHAIN_EXTERNAL=y
  721. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  722. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_GLIBC_STABLE=y
  723. # BR2_TARGET_ROOTFS_TAR is not set
  724. """
  725. toolchain_prefix = "mips-linux"
  726. def test_run(self):
  727. TestExternalToolchain.common_check(self)
  728. class TestExternalToolchainBootlinMips32MuslBleedingEdge(TestExternalToolchain):
  729. config = """
  730. BR2_mips=y
  731. BR2_mips_32=y
  732. # BR2_MIPS_SOFT_FLOAT is not set
  733. BR2_TOOLCHAIN_EXTERNAL=y
  734. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  735. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_MUSL_BLEEDING_EDGE=y
  736. # BR2_TARGET_ROOTFS_TAR is not set
  737. """
  738. toolchain_prefix = "mips-linux"
  739. def test_run(self):
  740. TestExternalToolchain.common_check(self)
  741. class TestExternalToolchainBootlinMips32MuslStable(TestExternalToolchain):
  742. config = """
  743. BR2_mips=y
  744. BR2_mips_32=y
  745. # BR2_MIPS_SOFT_FLOAT is not set
  746. BR2_TOOLCHAIN_EXTERNAL=y
  747. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  748. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_MUSL_STABLE=y
  749. # BR2_TARGET_ROOTFS_TAR is not set
  750. """
  751. toolchain_prefix = "mips-linux"
  752. def test_run(self):
  753. TestExternalToolchain.common_check(self)
  754. class TestExternalToolchainBootlinMips32UclibcBleedingEdge(TestExternalToolchain):
  755. config = """
  756. BR2_mips=y
  757. BR2_mips_32=y
  758. # BR2_MIPS_SOFT_FLOAT is not set
  759. BR2_TOOLCHAIN_EXTERNAL=y
  760. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  761. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_UCLIBC_BLEEDING_EDGE=y
  762. # BR2_TARGET_ROOTFS_TAR is not set
  763. """
  764. toolchain_prefix = "mips-linux"
  765. def test_run(self):
  766. TestExternalToolchain.common_check(self)
  767. class TestExternalToolchainBootlinMips32UclibcStable(TestExternalToolchain):
  768. config = """
  769. BR2_mips=y
  770. BR2_mips_32=y
  771. # BR2_MIPS_SOFT_FLOAT is not set
  772. BR2_TOOLCHAIN_EXTERNAL=y
  773. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  774. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_UCLIBC_STABLE=y
  775. # BR2_TARGET_ROOTFS_TAR is not set
  776. """
  777. toolchain_prefix = "mips-linux"
  778. def test_run(self):
  779. TestExternalToolchain.common_check(self)
  780. class TestExternalToolchainBootlinMips32elGlibcBleedingEdge(TestExternalToolchain):
  781. config = """
  782. BR2_mipsel=y
  783. BR2_mips_32=y
  784. # BR2_MIPS_SOFT_FLOAT is not set
  785. BR2_TOOLCHAIN_EXTERNAL=y
  786. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  787. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_GLIBC_BLEEDING_EDGE=y
  788. # BR2_TARGET_ROOTFS_TAR is not set
  789. """
  790. toolchain_prefix = "mipsel-linux"
  791. def test_run(self):
  792. TestExternalToolchain.common_check(self)
  793. class TestExternalToolchainBootlinMips32elGlibcStable(TestExternalToolchain):
  794. config = """
  795. BR2_mipsel=y
  796. BR2_mips_32=y
  797. # BR2_MIPS_SOFT_FLOAT is not set
  798. BR2_TOOLCHAIN_EXTERNAL=y
  799. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  800. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_GLIBC_STABLE=y
  801. # BR2_TARGET_ROOTFS_TAR is not set
  802. """
  803. toolchain_prefix = "mipsel-linux"
  804. def test_run(self):
  805. TestExternalToolchain.common_check(self)
  806. class TestExternalToolchainBootlinMips32elMuslBleedingEdge(TestExternalToolchain):
  807. config = """
  808. BR2_mipsel=y
  809. BR2_mips_32=y
  810. # BR2_MIPS_SOFT_FLOAT is not set
  811. BR2_TOOLCHAIN_EXTERNAL=y
  812. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  813. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_MUSL_BLEEDING_EDGE=y
  814. # BR2_TARGET_ROOTFS_TAR is not set
  815. """
  816. toolchain_prefix = "mipsel-linux"
  817. def test_run(self):
  818. TestExternalToolchain.common_check(self)
  819. class TestExternalToolchainBootlinMips32elMuslStable(TestExternalToolchain):
  820. config = """
  821. BR2_mipsel=y
  822. BR2_mips_32=y
  823. # BR2_MIPS_SOFT_FLOAT is not set
  824. BR2_TOOLCHAIN_EXTERNAL=y
  825. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  826. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_MUSL_STABLE=y
  827. # BR2_TARGET_ROOTFS_TAR is not set
  828. """
  829. toolchain_prefix = "mipsel-linux"
  830. def test_run(self):
  831. TestExternalToolchain.common_check(self)
  832. class TestExternalToolchainBootlinMips32elUclibcBleedingEdge(TestExternalToolchain):
  833. config = """
  834. BR2_mipsel=y
  835. BR2_mips_32=y
  836. # BR2_MIPS_SOFT_FLOAT is not set
  837. BR2_TOOLCHAIN_EXTERNAL=y
  838. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  839. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_UCLIBC_BLEEDING_EDGE=y
  840. # BR2_TARGET_ROOTFS_TAR is not set
  841. """
  842. toolchain_prefix = "mipsel-linux"
  843. def test_run(self):
  844. TestExternalToolchain.common_check(self)
  845. class TestExternalToolchainBootlinMips32elUclibcStable(TestExternalToolchain):
  846. config = """
  847. BR2_mipsel=y
  848. BR2_mips_32=y
  849. # BR2_MIPS_SOFT_FLOAT is not set
  850. BR2_TOOLCHAIN_EXTERNAL=y
  851. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  852. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_UCLIBC_STABLE=y
  853. # BR2_TARGET_ROOTFS_TAR is not set
  854. """
  855. toolchain_prefix = "mipsel-linux"
  856. def test_run(self):
  857. TestExternalToolchain.common_check(self)
  858. class TestExternalToolchainBootlinMips32r5elGlibcBleedingEdge(TestExternalToolchain):
  859. config = """
  860. BR2_mipsel=y
  861. BR2_mips_32r5=y
  862. # BR2_MIPS_SOFT_FLOAT is not set
  863. BR2_TOOLCHAIN_EXTERNAL=y
  864. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  865. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_GLIBC_BLEEDING_EDGE=y
  866. # BR2_TARGET_ROOTFS_TAR is not set
  867. """
  868. toolchain_prefix = "mipsel-linux"
  869. def test_run(self):
  870. TestExternalToolchain.common_check(self)
  871. class TestExternalToolchainBootlinMips32r5elGlibcStable(TestExternalToolchain):
  872. config = """
  873. BR2_mipsel=y
  874. BR2_mips_32r5=y
  875. # BR2_MIPS_SOFT_FLOAT is not set
  876. BR2_TOOLCHAIN_EXTERNAL=y
  877. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  878. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_GLIBC_STABLE=y
  879. # BR2_TARGET_ROOTFS_TAR is not set
  880. """
  881. toolchain_prefix = "mipsel-linux"
  882. def test_run(self):
  883. TestExternalToolchain.common_check(self)
  884. class TestExternalToolchainBootlinMips32r5elMuslBleedingEdge(TestExternalToolchain):
  885. config = """
  886. BR2_mipsel=y
  887. BR2_mips_32r5=y
  888. # BR2_MIPS_SOFT_FLOAT is not set
  889. BR2_TOOLCHAIN_EXTERNAL=y
  890. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  891. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_MUSL_BLEEDING_EDGE=y
  892. # BR2_TARGET_ROOTFS_TAR is not set
  893. """
  894. toolchain_prefix = "mipsel-linux"
  895. def test_run(self):
  896. TestExternalToolchain.common_check(self)
  897. class TestExternalToolchainBootlinMips32r5elMuslStable(TestExternalToolchain):
  898. config = """
  899. BR2_mipsel=y
  900. BR2_mips_32r5=y
  901. # BR2_MIPS_SOFT_FLOAT is not set
  902. BR2_TOOLCHAIN_EXTERNAL=y
  903. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  904. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_MUSL_STABLE=y
  905. # BR2_TARGET_ROOTFS_TAR is not set
  906. """
  907. toolchain_prefix = "mipsel-linux"
  908. def test_run(self):
  909. TestExternalToolchain.common_check(self)
  910. class TestExternalToolchainBootlinMips32r5elUclibcBleedingEdge(TestExternalToolchain):
  911. config = """
  912. BR2_mipsel=y
  913. BR2_mips_32r5=y
  914. # BR2_MIPS_SOFT_FLOAT is not set
  915. BR2_TOOLCHAIN_EXTERNAL=y
  916. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  917. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_UCLIBC_BLEEDING_EDGE=y
  918. # BR2_TARGET_ROOTFS_TAR is not set
  919. """
  920. toolchain_prefix = "mipsel-linux"
  921. def test_run(self):
  922. TestExternalToolchain.common_check(self)
  923. class TestExternalToolchainBootlinMips32r5elUclibcStable(TestExternalToolchain):
  924. config = """
  925. BR2_mipsel=y
  926. BR2_mips_32r5=y
  927. # BR2_MIPS_SOFT_FLOAT is not set
  928. BR2_TOOLCHAIN_EXTERNAL=y
  929. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  930. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_UCLIBC_STABLE=y
  931. # BR2_TARGET_ROOTFS_TAR is not set
  932. """
  933. toolchain_prefix = "mipsel-linux"
  934. def test_run(self):
  935. TestExternalToolchain.common_check(self)
  936. class TestExternalToolchainBootlinMips32r6elGlibcBleedingEdge(TestExternalToolchain):
  937. config = """
  938. BR2_mipsel=y
  939. BR2_mips_32r6=y
  940. # BR2_MIPS_SOFT_FLOAT is not set
  941. BR2_TOOLCHAIN_EXTERNAL=y
  942. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  943. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_GLIBC_BLEEDING_EDGE=y
  944. # BR2_TARGET_ROOTFS_TAR is not set
  945. """
  946. toolchain_prefix = "mipsel-linux"
  947. def test_run(self):
  948. TestExternalToolchain.common_check(self)
  949. class TestExternalToolchainBootlinMips32r6elGlibcStable(TestExternalToolchain):
  950. config = """
  951. BR2_mipsel=y
  952. BR2_mips_32r6=y
  953. # BR2_MIPS_SOFT_FLOAT is not set
  954. BR2_TOOLCHAIN_EXTERNAL=y
  955. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  956. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_GLIBC_STABLE=y
  957. # BR2_TARGET_ROOTFS_TAR is not set
  958. """
  959. toolchain_prefix = "mipsel-linux"
  960. def test_run(self):
  961. TestExternalToolchain.common_check(self)
  962. class TestExternalToolchainBootlinMips32r6elMuslBleedingEdge(TestExternalToolchain):
  963. config = """
  964. BR2_mipsel=y
  965. BR2_mips_32r6=y
  966. # BR2_MIPS_SOFT_FLOAT is not set
  967. BR2_TOOLCHAIN_EXTERNAL=y
  968. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  969. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_MUSL_BLEEDING_EDGE=y
  970. # BR2_TARGET_ROOTFS_TAR is not set
  971. """
  972. toolchain_prefix = "mipsel-linux"
  973. def test_run(self):
  974. TestExternalToolchain.common_check(self)
  975. class TestExternalToolchainBootlinMips32r6elMuslStable(TestExternalToolchain):
  976. config = """
  977. BR2_mipsel=y
  978. BR2_mips_32r6=y
  979. # BR2_MIPS_SOFT_FLOAT is not set
  980. BR2_TOOLCHAIN_EXTERNAL=y
  981. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  982. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_MUSL_STABLE=y
  983. # BR2_TARGET_ROOTFS_TAR is not set
  984. """
  985. toolchain_prefix = "mipsel-linux"
  986. def test_run(self):
  987. TestExternalToolchain.common_check(self)
  988. class TestExternalToolchainBootlinMips32r6elUclibcBleedingEdge(TestExternalToolchain):
  989. config = """
  990. BR2_mipsel=y
  991. BR2_mips_32r6=y
  992. # BR2_MIPS_SOFT_FLOAT is not set
  993. BR2_TOOLCHAIN_EXTERNAL=y
  994. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  995. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_UCLIBC_BLEEDING_EDGE=y
  996. # BR2_TARGET_ROOTFS_TAR is not set
  997. """
  998. toolchain_prefix = "mipsel-linux"
  999. def test_run(self):
  1000. TestExternalToolchain.common_check(self)
  1001. class TestExternalToolchainBootlinMips32r6elUclibcStable(TestExternalToolchain):
  1002. config = """
  1003. BR2_mipsel=y
  1004. BR2_mips_32r6=y
  1005. # BR2_MIPS_SOFT_FLOAT is not set
  1006. BR2_TOOLCHAIN_EXTERNAL=y
  1007. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1008. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_UCLIBC_STABLE=y
  1009. # BR2_TARGET_ROOTFS_TAR is not set
  1010. """
  1011. toolchain_prefix = "mipsel-linux"
  1012. def test_run(self):
  1013. TestExternalToolchain.common_check(self)
  1014. class TestExternalToolchainBootlinMips64n32GlibcBleedingEdge(TestExternalToolchain):
  1015. config = """
  1016. BR2_mips64=y
  1017. BR2_mips_64=y
  1018. BR2_MIPS_NABI32=y
  1019. # BR2_MIPS_SOFT_FLOAT is not set
  1020. BR2_TOOLCHAIN_EXTERNAL=y
  1021. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1022. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_GLIBC_BLEEDING_EDGE=y
  1023. # BR2_TARGET_ROOTFS_TAR is not set
  1024. """
  1025. toolchain_prefix = "mips64-linux"
  1026. def test_run(self):
  1027. TestExternalToolchain.common_check(self)
  1028. class TestExternalToolchainBootlinMips64n32GlibcStable(TestExternalToolchain):
  1029. config = """
  1030. BR2_mips64=y
  1031. BR2_mips_64=y
  1032. BR2_MIPS_NABI32=y
  1033. # BR2_MIPS_SOFT_FLOAT is not set
  1034. BR2_TOOLCHAIN_EXTERNAL=y
  1035. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1036. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_GLIBC_STABLE=y
  1037. # BR2_TARGET_ROOTFS_TAR is not set
  1038. """
  1039. toolchain_prefix = "mips64-linux"
  1040. def test_run(self):
  1041. TestExternalToolchain.common_check(self)
  1042. class TestExternalToolchainBootlinMips64n32MuslBleedingEdge(TestExternalToolchain):
  1043. config = """
  1044. BR2_mips64=y
  1045. BR2_mips_64=y
  1046. BR2_MIPS_NABI32=y
  1047. # BR2_MIPS_SOFT_FLOAT is not set
  1048. BR2_TOOLCHAIN_EXTERNAL=y
  1049. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1050. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_MUSL_BLEEDING_EDGE=y
  1051. # BR2_TARGET_ROOTFS_TAR is not set
  1052. """
  1053. toolchain_prefix = "mips64-linux"
  1054. def test_run(self):
  1055. TestExternalToolchain.common_check(self)
  1056. class TestExternalToolchainBootlinMips64n32MuslStable(TestExternalToolchain):
  1057. config = """
  1058. BR2_mips64=y
  1059. BR2_mips_64=y
  1060. BR2_MIPS_NABI32=y
  1061. # BR2_MIPS_SOFT_FLOAT is not set
  1062. BR2_TOOLCHAIN_EXTERNAL=y
  1063. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1064. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_MUSL_STABLE=y
  1065. # BR2_TARGET_ROOTFS_TAR is not set
  1066. """
  1067. toolchain_prefix = "mips64-linux"
  1068. def test_run(self):
  1069. TestExternalToolchain.common_check(self)
  1070. class TestExternalToolchainBootlinMips64n32UclibcBleedingEdge(TestExternalToolchain):
  1071. config = """
  1072. BR2_mips64=y
  1073. BR2_mips_64=y
  1074. BR2_MIPS_NABI32=y
  1075. # BR2_MIPS_SOFT_FLOAT is not set
  1076. BR2_TOOLCHAIN_EXTERNAL=y
  1077. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1078. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_UCLIBC_BLEEDING_EDGE=y
  1079. # BR2_TARGET_ROOTFS_TAR is not set
  1080. """
  1081. toolchain_prefix = "mips64-linux"
  1082. def test_run(self):
  1083. TestExternalToolchain.common_check(self)
  1084. class TestExternalToolchainBootlinMips64n32UclibcStable(TestExternalToolchain):
  1085. config = """
  1086. BR2_mips64=y
  1087. BR2_mips_64=y
  1088. BR2_MIPS_NABI32=y
  1089. # BR2_MIPS_SOFT_FLOAT is not set
  1090. BR2_TOOLCHAIN_EXTERNAL=y
  1091. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1092. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_UCLIBC_STABLE=y
  1093. # BR2_TARGET_ROOTFS_TAR is not set
  1094. """
  1095. toolchain_prefix = "mips64-linux"
  1096. def test_run(self):
  1097. TestExternalToolchain.common_check(self)
  1098. class TestExternalToolchainBootlinMips64eln32GlibcBleedingEdge(TestExternalToolchain):
  1099. config = """
  1100. BR2_mips64el=y
  1101. BR2_mips_64=y
  1102. BR2_MIPS_NABI32=y
  1103. # BR2_MIPS_SOFT_FLOAT is not set
  1104. BR2_TOOLCHAIN_EXTERNAL=y
  1105. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1106. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_GLIBC_BLEEDING_EDGE=y
  1107. # BR2_TARGET_ROOTFS_TAR is not set
  1108. """
  1109. toolchain_prefix = "mips64el-linux"
  1110. def test_run(self):
  1111. TestExternalToolchain.common_check(self)
  1112. class TestExternalToolchainBootlinMips64eln32GlibcStable(TestExternalToolchain):
  1113. config = """
  1114. BR2_mips64el=y
  1115. BR2_mips_64=y
  1116. BR2_MIPS_NABI32=y
  1117. # BR2_MIPS_SOFT_FLOAT is not set
  1118. BR2_TOOLCHAIN_EXTERNAL=y
  1119. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1120. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_GLIBC_STABLE=y
  1121. # BR2_TARGET_ROOTFS_TAR is not set
  1122. """
  1123. toolchain_prefix = "mips64el-linux"
  1124. def test_run(self):
  1125. TestExternalToolchain.common_check(self)
  1126. class TestExternalToolchainBootlinMips64eln32MuslBleedingEdge(TestExternalToolchain):
  1127. config = """
  1128. BR2_mips64el=y
  1129. BR2_mips_64=y
  1130. BR2_MIPS_NABI32=y
  1131. # BR2_MIPS_SOFT_FLOAT is not set
  1132. BR2_TOOLCHAIN_EXTERNAL=y
  1133. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1134. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_MUSL_BLEEDING_EDGE=y
  1135. # BR2_TARGET_ROOTFS_TAR is not set
  1136. """
  1137. toolchain_prefix = "mips64el-linux"
  1138. def test_run(self):
  1139. TestExternalToolchain.common_check(self)
  1140. class TestExternalToolchainBootlinMips64eln32MuslStable(TestExternalToolchain):
  1141. config = """
  1142. BR2_mips64el=y
  1143. BR2_mips_64=y
  1144. BR2_MIPS_NABI32=y
  1145. # BR2_MIPS_SOFT_FLOAT is not set
  1146. BR2_TOOLCHAIN_EXTERNAL=y
  1147. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1148. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_MUSL_STABLE=y
  1149. # BR2_TARGET_ROOTFS_TAR is not set
  1150. """
  1151. toolchain_prefix = "mips64el-linux"
  1152. def test_run(self):
  1153. TestExternalToolchain.common_check(self)
  1154. class TestExternalToolchainBootlinMips64eln32UclibcBleedingEdge(TestExternalToolchain):
  1155. config = """
  1156. BR2_mips64el=y
  1157. BR2_mips_64=y
  1158. BR2_MIPS_NABI32=y
  1159. # BR2_MIPS_SOFT_FLOAT is not set
  1160. BR2_TOOLCHAIN_EXTERNAL=y
  1161. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1162. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_UCLIBC_BLEEDING_EDGE=y
  1163. # BR2_TARGET_ROOTFS_TAR is not set
  1164. """
  1165. toolchain_prefix = "mips64el-linux"
  1166. def test_run(self):
  1167. TestExternalToolchain.common_check(self)
  1168. class TestExternalToolchainBootlinMips64eln32UclibcStable(TestExternalToolchain):
  1169. config = """
  1170. BR2_mips64el=y
  1171. BR2_mips_64=y
  1172. BR2_MIPS_NABI32=y
  1173. # BR2_MIPS_SOFT_FLOAT is not set
  1174. BR2_TOOLCHAIN_EXTERNAL=y
  1175. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1176. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_UCLIBC_STABLE=y
  1177. # BR2_TARGET_ROOTFS_TAR is not set
  1178. """
  1179. toolchain_prefix = "mips64el-linux"
  1180. def test_run(self):
  1181. TestExternalToolchain.common_check(self)
  1182. class TestExternalToolchainBootlinMips64r6eln32GlibcBleedingEdge(TestExternalToolchain):
  1183. config = """
  1184. BR2_mips64el=y
  1185. BR2_mips_64r6=y
  1186. BR2_MIPS_NABI32=y
  1187. # BR2_MIPS_SOFT_FLOAT is not set
  1188. BR2_TOOLCHAIN_EXTERNAL=y
  1189. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1190. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_GLIBC_BLEEDING_EDGE=y
  1191. # BR2_TARGET_ROOTFS_TAR is not set
  1192. """
  1193. toolchain_prefix = "mips64el-linux"
  1194. def test_run(self):
  1195. TestExternalToolchain.common_check(self)
  1196. class TestExternalToolchainBootlinMips64r6eln32GlibcStable(TestExternalToolchain):
  1197. config = """
  1198. BR2_mips64el=y
  1199. BR2_mips_64r6=y
  1200. BR2_MIPS_NABI32=y
  1201. # BR2_MIPS_SOFT_FLOAT is not set
  1202. BR2_TOOLCHAIN_EXTERNAL=y
  1203. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1204. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_GLIBC_STABLE=y
  1205. # BR2_TARGET_ROOTFS_TAR is not set
  1206. """
  1207. toolchain_prefix = "mips64el-linux"
  1208. def test_run(self):
  1209. TestExternalToolchain.common_check(self)
  1210. class TestExternalToolchainBootlinMips64r6eln32MuslBleedingEdge(TestExternalToolchain):
  1211. config = """
  1212. BR2_mips64el=y
  1213. BR2_mips_64r6=y
  1214. BR2_MIPS_NABI32=y
  1215. # BR2_MIPS_SOFT_FLOAT is not set
  1216. BR2_TOOLCHAIN_EXTERNAL=y
  1217. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1218. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_MUSL_BLEEDING_EDGE=y
  1219. # BR2_TARGET_ROOTFS_TAR is not set
  1220. """
  1221. toolchain_prefix = "mips64el-linux"
  1222. def test_run(self):
  1223. TestExternalToolchain.common_check(self)
  1224. class TestExternalToolchainBootlinMips64r6eln32MuslStable(TestExternalToolchain):
  1225. config = """
  1226. BR2_mips64el=y
  1227. BR2_mips_64r6=y
  1228. BR2_MIPS_NABI32=y
  1229. # BR2_MIPS_SOFT_FLOAT is not set
  1230. BR2_TOOLCHAIN_EXTERNAL=y
  1231. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1232. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_MUSL_STABLE=y
  1233. # BR2_TARGET_ROOTFS_TAR is not set
  1234. """
  1235. toolchain_prefix = "mips64el-linux"
  1236. def test_run(self):
  1237. TestExternalToolchain.common_check(self)
  1238. class TestExternalToolchainBootlinMips64r6eln32UclibcBleedingEdge(TestExternalToolchain):
  1239. config = """
  1240. BR2_mips64el=y
  1241. BR2_mips_64r6=y
  1242. BR2_MIPS_NABI32=y
  1243. # BR2_MIPS_SOFT_FLOAT is not set
  1244. BR2_TOOLCHAIN_EXTERNAL=y
  1245. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1246. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_UCLIBC_BLEEDING_EDGE=y
  1247. # BR2_TARGET_ROOTFS_TAR is not set
  1248. """
  1249. toolchain_prefix = "mips64el-linux"
  1250. def test_run(self):
  1251. TestExternalToolchain.common_check(self)
  1252. class TestExternalToolchainBootlinMips64r6eln32UclibcStable(TestExternalToolchain):
  1253. config = """
  1254. BR2_mips64el=y
  1255. BR2_mips_64r6=y
  1256. BR2_MIPS_NABI32=y
  1257. # BR2_MIPS_SOFT_FLOAT is not set
  1258. BR2_TOOLCHAIN_EXTERNAL=y
  1259. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1260. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_UCLIBC_STABLE=y
  1261. # BR2_TARGET_ROOTFS_TAR is not set
  1262. """
  1263. toolchain_prefix = "mips64el-linux"
  1264. def test_run(self):
  1265. TestExternalToolchain.common_check(self)
  1266. class TestExternalToolchainBootlinNios2GlibcBleedingEdge(TestExternalToolchain):
  1267. config = """
  1268. BR2_nios2=y
  1269. BR2_TOOLCHAIN_EXTERNAL=y
  1270. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1271. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_NIOS2_GLIBC_BLEEDING_EDGE=y
  1272. # BR2_TARGET_ROOTFS_TAR is not set
  1273. """
  1274. toolchain_prefix = "nios2-linux"
  1275. def test_run(self):
  1276. TestExternalToolchain.common_check(self)
  1277. class TestExternalToolchainBootlinNios2GlibcStable(TestExternalToolchain):
  1278. config = """
  1279. BR2_nios2=y
  1280. BR2_TOOLCHAIN_EXTERNAL=y
  1281. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1282. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_NIOS2_GLIBC_STABLE=y
  1283. # BR2_TARGET_ROOTFS_TAR is not set
  1284. """
  1285. toolchain_prefix = "nios2-linux"
  1286. def test_run(self):
  1287. TestExternalToolchain.common_check(self)
  1288. class TestExternalToolchainBootlinOpenriscMuslBleedingEdge(TestExternalToolchain):
  1289. config = """
  1290. BR2_or1k=y
  1291. BR2_TOOLCHAIN_EXTERNAL=y
  1292. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1293. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_MUSL_BLEEDING_EDGE=y
  1294. # BR2_TARGET_ROOTFS_TAR is not set
  1295. """
  1296. toolchain_prefix = "or1k-linux"
  1297. def test_run(self):
  1298. TestExternalToolchain.common_check(self)
  1299. class TestExternalToolchainBootlinOpenriscMuslStable(TestExternalToolchain):
  1300. config = """
  1301. BR2_or1k=y
  1302. BR2_TOOLCHAIN_EXTERNAL=y
  1303. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1304. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_MUSL_STABLE=y
  1305. # BR2_TARGET_ROOTFS_TAR is not set
  1306. """
  1307. toolchain_prefix = "or1k-linux"
  1308. def test_run(self):
  1309. TestExternalToolchain.common_check(self)
  1310. class TestExternalToolchainBootlinOpenriscUclibcBleedingEdge(TestExternalToolchain):
  1311. config = """
  1312. BR2_or1k=y
  1313. BR2_TOOLCHAIN_EXTERNAL=y
  1314. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1315. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_UCLIBC_BLEEDING_EDGE=y
  1316. # BR2_TARGET_ROOTFS_TAR is not set
  1317. """
  1318. toolchain_prefix = "or1k-linux"
  1319. def test_run(self):
  1320. TestExternalToolchain.common_check(self)
  1321. class TestExternalToolchainBootlinOpenriscUclibcStable(TestExternalToolchain):
  1322. config = """
  1323. BR2_or1k=y
  1324. BR2_TOOLCHAIN_EXTERNAL=y
  1325. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1326. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_UCLIBC_STABLE=y
  1327. # BR2_TARGET_ROOTFS_TAR is not set
  1328. """
  1329. toolchain_prefix = "or1k-linux"
  1330. def test_run(self):
  1331. TestExternalToolchain.common_check(self)
  1332. class TestExternalToolchainBootlinPowerpc440fpGlibcBleedingEdge(TestExternalToolchain):
  1333. config = """
  1334. BR2_powerpc=y
  1335. BR2_powerpc_440fp=y
  1336. BR2_TOOLCHAIN_EXTERNAL=y
  1337. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1338. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_GLIBC_BLEEDING_EDGE=y
  1339. # BR2_TARGET_ROOTFS_TAR is not set
  1340. """
  1341. toolchain_prefix = "powerpc-linux"
  1342. def test_run(self):
  1343. TestExternalToolchain.common_check(self)
  1344. class TestExternalToolchainBootlinPowerpc440fpGlibcStable(TestExternalToolchain):
  1345. config = """
  1346. BR2_powerpc=y
  1347. BR2_powerpc_440fp=y
  1348. BR2_TOOLCHAIN_EXTERNAL=y
  1349. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1350. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_GLIBC_STABLE=y
  1351. # BR2_TARGET_ROOTFS_TAR is not set
  1352. """
  1353. toolchain_prefix = "powerpc-linux"
  1354. def test_run(self):
  1355. TestExternalToolchain.common_check(self)
  1356. class TestExternalToolchainBootlinPowerpc440fpMuslBleedingEdge(TestExternalToolchain):
  1357. config = """
  1358. BR2_powerpc=y
  1359. BR2_powerpc_440fp=y
  1360. BR2_TOOLCHAIN_EXTERNAL=y
  1361. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1362. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_MUSL_BLEEDING_EDGE=y
  1363. # BR2_TARGET_ROOTFS_TAR is not set
  1364. """
  1365. toolchain_prefix = "powerpc-linux"
  1366. def test_run(self):
  1367. TestExternalToolchain.common_check(self)
  1368. class TestExternalToolchainBootlinPowerpc440fpMuslStable(TestExternalToolchain):
  1369. config = """
  1370. BR2_powerpc=y
  1371. BR2_powerpc_440fp=y
  1372. BR2_TOOLCHAIN_EXTERNAL=y
  1373. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1374. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_MUSL_STABLE=y
  1375. # BR2_TARGET_ROOTFS_TAR is not set
  1376. """
  1377. toolchain_prefix = "powerpc-linux"
  1378. def test_run(self):
  1379. TestExternalToolchain.common_check(self)
  1380. class TestExternalToolchainBootlinPowerpc440fpUclibcBleedingEdge(TestExternalToolchain):
  1381. config = """
  1382. BR2_powerpc=y
  1383. BR2_powerpc_440fp=y
  1384. BR2_TOOLCHAIN_EXTERNAL=y
  1385. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1386. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_UCLIBC_BLEEDING_EDGE=y
  1387. # BR2_TARGET_ROOTFS_TAR is not set
  1388. """
  1389. toolchain_prefix = "powerpc-linux"
  1390. def test_run(self):
  1391. TestExternalToolchain.common_check(self)
  1392. class TestExternalToolchainBootlinPowerpc440fpUclibcStable(TestExternalToolchain):
  1393. config = """
  1394. BR2_powerpc=y
  1395. BR2_powerpc_440fp=y
  1396. BR2_TOOLCHAIN_EXTERNAL=y
  1397. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1398. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_UCLIBC_STABLE=y
  1399. # BR2_TARGET_ROOTFS_TAR is not set
  1400. """
  1401. toolchain_prefix = "powerpc-linux"
  1402. def test_run(self):
  1403. TestExternalToolchain.common_check(self)
  1404. class TestExternalToolchainBootlinPowerpce300c3GlibcBleedingEdge(TestExternalToolchain):
  1405. config = """
  1406. BR2_powerpc=y
  1407. BR2_powerpc_e300c3=y
  1408. BR2_TOOLCHAIN_EXTERNAL=y
  1409. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1410. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_GLIBC_BLEEDING_EDGE=y
  1411. # BR2_TARGET_ROOTFS_TAR is not set
  1412. """
  1413. toolchain_prefix = "powerpc-linux"
  1414. def test_run(self):
  1415. TestExternalToolchain.common_check(self)
  1416. class TestExternalToolchainBootlinPowerpce300c3GlibcStable(TestExternalToolchain):
  1417. config = """
  1418. BR2_powerpc=y
  1419. BR2_powerpc_e300c3=y
  1420. BR2_TOOLCHAIN_EXTERNAL=y
  1421. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1422. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_GLIBC_STABLE=y
  1423. # BR2_TARGET_ROOTFS_TAR is not set
  1424. """
  1425. toolchain_prefix = "powerpc-linux"
  1426. def test_run(self):
  1427. TestExternalToolchain.common_check(self)
  1428. class TestExternalToolchainBootlinPowerpce300c3MuslBleedingEdge(TestExternalToolchain):
  1429. config = """
  1430. BR2_powerpc=y
  1431. BR2_powerpc_e300c3=y
  1432. BR2_TOOLCHAIN_EXTERNAL=y
  1433. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1434. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_MUSL_BLEEDING_EDGE=y
  1435. # BR2_TARGET_ROOTFS_TAR is not set
  1436. """
  1437. toolchain_prefix = "powerpc-linux"
  1438. def test_run(self):
  1439. TestExternalToolchain.common_check(self)
  1440. class TestExternalToolchainBootlinPowerpce300c3MuslStable(TestExternalToolchain):
  1441. config = """
  1442. BR2_powerpc=y
  1443. BR2_powerpc_e300c3=y
  1444. BR2_TOOLCHAIN_EXTERNAL=y
  1445. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1446. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_MUSL_STABLE=y
  1447. # BR2_TARGET_ROOTFS_TAR is not set
  1448. """
  1449. toolchain_prefix = "powerpc-linux"
  1450. def test_run(self):
  1451. TestExternalToolchain.common_check(self)
  1452. class TestExternalToolchainBootlinPowerpce300c3UclibcBleedingEdge(TestExternalToolchain):
  1453. config = """
  1454. BR2_powerpc=y
  1455. BR2_powerpc_e300c3=y
  1456. BR2_TOOLCHAIN_EXTERNAL=y
  1457. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1458. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_UCLIBC_BLEEDING_EDGE=y
  1459. # BR2_TARGET_ROOTFS_TAR is not set
  1460. """
  1461. toolchain_prefix = "powerpc-linux"
  1462. def test_run(self):
  1463. TestExternalToolchain.common_check(self)
  1464. class TestExternalToolchainBootlinPowerpce300c3UclibcStable(TestExternalToolchain):
  1465. config = """
  1466. BR2_powerpc=y
  1467. BR2_powerpc_e300c3=y
  1468. BR2_TOOLCHAIN_EXTERNAL=y
  1469. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1470. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_UCLIBC_STABLE=y
  1471. # BR2_TARGET_ROOTFS_TAR is not set
  1472. """
  1473. toolchain_prefix = "powerpc-linux"
  1474. def test_run(self):
  1475. TestExternalToolchain.common_check(self)
  1476. class TestExternalToolchainBootlinPowerpce500mcGlibcBleedingEdge(TestExternalToolchain):
  1477. config = """
  1478. BR2_powerpc=y
  1479. BR2_powerpc_e500mc=y
  1480. BR2_TOOLCHAIN_EXTERNAL=y
  1481. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1482. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_GLIBC_BLEEDING_EDGE=y
  1483. # BR2_TARGET_ROOTFS_TAR is not set
  1484. """
  1485. toolchain_prefix = "powerpc-linux"
  1486. def test_run(self):
  1487. TestExternalToolchain.common_check(self)
  1488. class TestExternalToolchainBootlinPowerpce500mcGlibcStable(TestExternalToolchain):
  1489. config = """
  1490. BR2_powerpc=y
  1491. BR2_powerpc_e500mc=y
  1492. BR2_TOOLCHAIN_EXTERNAL=y
  1493. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1494. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_GLIBC_STABLE=y
  1495. # BR2_TARGET_ROOTFS_TAR is not set
  1496. """
  1497. toolchain_prefix = "powerpc-linux"
  1498. def test_run(self):
  1499. TestExternalToolchain.common_check(self)
  1500. class TestExternalToolchainBootlinPowerpce500mcMuslBleedingEdge(TestExternalToolchain):
  1501. config = """
  1502. BR2_powerpc=y
  1503. BR2_powerpc_e500mc=y
  1504. BR2_TOOLCHAIN_EXTERNAL=y
  1505. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1506. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_MUSL_BLEEDING_EDGE=y
  1507. # BR2_TARGET_ROOTFS_TAR is not set
  1508. """
  1509. toolchain_prefix = "powerpc-linux"
  1510. def test_run(self):
  1511. TestExternalToolchain.common_check(self)
  1512. class TestExternalToolchainBootlinPowerpce500mcMuslStable(TestExternalToolchain):
  1513. config = """
  1514. BR2_powerpc=y
  1515. BR2_powerpc_e500mc=y
  1516. BR2_TOOLCHAIN_EXTERNAL=y
  1517. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1518. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_MUSL_STABLE=y
  1519. # BR2_TARGET_ROOTFS_TAR is not set
  1520. """
  1521. toolchain_prefix = "powerpc-linux"
  1522. def test_run(self):
  1523. TestExternalToolchain.common_check(self)
  1524. class TestExternalToolchainBootlinPowerpce500mcUclibcBleedingEdge(TestExternalToolchain):
  1525. config = """
  1526. BR2_powerpc=y
  1527. BR2_powerpc_e500mc=y
  1528. BR2_TOOLCHAIN_EXTERNAL=y
  1529. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1530. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_UCLIBC_BLEEDING_EDGE=y
  1531. # BR2_TARGET_ROOTFS_TAR is not set
  1532. """
  1533. toolchain_prefix = "powerpc-linux"
  1534. def test_run(self):
  1535. TestExternalToolchain.common_check(self)
  1536. class TestExternalToolchainBootlinPowerpce500mcUclibcStable(TestExternalToolchain):
  1537. config = """
  1538. BR2_powerpc=y
  1539. BR2_powerpc_e500mc=y
  1540. BR2_TOOLCHAIN_EXTERNAL=y
  1541. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1542. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_UCLIBC_STABLE=y
  1543. # BR2_TARGET_ROOTFS_TAR is not set
  1544. """
  1545. toolchain_prefix = "powerpc-linux"
  1546. def test_run(self):
  1547. TestExternalToolchain.common_check(self)
  1548. class TestExternalToolchainBootlinPowerpc64e5500GlibcBleedingEdge(TestExternalToolchain):
  1549. config = """
  1550. BR2_powerpc64=y
  1551. BR2_powerpc_e5500=y
  1552. BR2_TOOLCHAIN_EXTERNAL=y
  1553. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1554. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E5500_GLIBC_BLEEDING_EDGE=y
  1555. # BR2_TARGET_ROOTFS_TAR is not set
  1556. """
  1557. toolchain_prefix = "powerpc64-linux"
  1558. def test_run(self):
  1559. TestExternalToolchain.common_check(self)
  1560. class TestExternalToolchainBootlinPowerpc64e5500GlibcStable(TestExternalToolchain):
  1561. config = """
  1562. BR2_powerpc64=y
  1563. BR2_powerpc_e5500=y
  1564. BR2_TOOLCHAIN_EXTERNAL=y
  1565. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1566. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E5500_GLIBC_STABLE=y
  1567. # BR2_TARGET_ROOTFS_TAR is not set
  1568. """
  1569. toolchain_prefix = "powerpc64-linux"
  1570. def test_run(self):
  1571. TestExternalToolchain.common_check(self)
  1572. class TestExternalToolchainBootlinPowerpc64e6500GlibcBleedingEdge(TestExternalToolchain):
  1573. config = """
  1574. BR2_powerpc64=y
  1575. BR2_powerpc_e6500=y
  1576. BR2_TOOLCHAIN_EXTERNAL=y
  1577. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1578. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_GLIBC_BLEEDING_EDGE=y
  1579. # BR2_TARGET_ROOTFS_TAR is not set
  1580. """
  1581. toolchain_prefix = "powerpc64-linux"
  1582. def test_run(self):
  1583. TestExternalToolchain.common_check(self)
  1584. class TestExternalToolchainBootlinPowerpc64e6500GlibcStable(TestExternalToolchain):
  1585. config = """
  1586. BR2_powerpc64=y
  1587. BR2_powerpc_e6500=y
  1588. BR2_TOOLCHAIN_EXTERNAL=y
  1589. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1590. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_GLIBC_STABLE=y
  1591. # BR2_TARGET_ROOTFS_TAR is not set
  1592. """
  1593. toolchain_prefix = "powerpc64-linux"
  1594. def test_run(self):
  1595. TestExternalToolchain.common_check(self)
  1596. class TestExternalToolchainBootlinPowerpc64e6500MuslBleedingEdge(TestExternalToolchain):
  1597. config = """
  1598. BR2_powerpc64=y
  1599. BR2_powerpc_e6500=y
  1600. BR2_TOOLCHAIN_EXTERNAL=y
  1601. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1602. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_MUSL_BLEEDING_EDGE=y
  1603. # BR2_TARGET_ROOTFS_TAR is not set
  1604. """
  1605. toolchain_prefix = "powerpc64-linux"
  1606. def test_run(self):
  1607. TestExternalToolchain.common_check(self)
  1608. class TestExternalToolchainBootlinPowerpc64e6500MuslStable(TestExternalToolchain):
  1609. config = """
  1610. BR2_powerpc64=y
  1611. BR2_powerpc_e6500=y
  1612. BR2_TOOLCHAIN_EXTERNAL=y
  1613. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1614. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_MUSL_STABLE=y
  1615. # BR2_TARGET_ROOTFS_TAR is not set
  1616. """
  1617. toolchain_prefix = "powerpc64-linux"
  1618. def test_run(self):
  1619. TestExternalToolchain.common_check(self)
  1620. class TestExternalToolchainBootlinPowerpc64power8GlibcBleedingEdge(TestExternalToolchain):
  1621. config = """
  1622. BR2_powerpc64=y
  1623. BR2_powerpc_power8=y
  1624. BR2_TOOLCHAIN_EXTERNAL=y
  1625. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1626. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_GLIBC_BLEEDING_EDGE=y
  1627. # BR2_TARGET_ROOTFS_TAR is not set
  1628. """
  1629. toolchain_prefix = "powerpc64-linux"
  1630. def test_run(self):
  1631. TestExternalToolchain.common_check(self)
  1632. class TestExternalToolchainBootlinPowerpc64power8GlibcStable(TestExternalToolchain):
  1633. config = """
  1634. BR2_powerpc64=y
  1635. BR2_powerpc_power8=y
  1636. BR2_TOOLCHAIN_EXTERNAL=y
  1637. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1638. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_GLIBC_STABLE=y
  1639. # BR2_TARGET_ROOTFS_TAR is not set
  1640. """
  1641. toolchain_prefix = "powerpc64-linux"
  1642. def test_run(self):
  1643. TestExternalToolchain.common_check(self)
  1644. class TestExternalToolchainBootlinPowerpc64power8MuslBleedingEdge(TestExternalToolchain):
  1645. config = """
  1646. BR2_powerpc64=y
  1647. BR2_powerpc_power8=y
  1648. BR2_TOOLCHAIN_EXTERNAL=y
  1649. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1650. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_MUSL_BLEEDING_EDGE=y
  1651. # BR2_TARGET_ROOTFS_TAR is not set
  1652. """
  1653. toolchain_prefix = "powerpc64-linux"
  1654. def test_run(self):
  1655. TestExternalToolchain.common_check(self)
  1656. class TestExternalToolchainBootlinPowerpc64power8MuslStable(TestExternalToolchain):
  1657. config = """
  1658. BR2_powerpc64=y
  1659. BR2_powerpc_power8=y
  1660. BR2_TOOLCHAIN_EXTERNAL=y
  1661. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1662. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_MUSL_STABLE=y
  1663. # BR2_TARGET_ROOTFS_TAR is not set
  1664. """
  1665. toolchain_prefix = "powerpc64-linux"
  1666. def test_run(self):
  1667. TestExternalToolchain.common_check(self)
  1668. class TestExternalToolchainBootlinPowerpc64lepower8GlibcBleedingEdge(TestExternalToolchain):
  1669. config = """
  1670. BR2_powerpc64le=y
  1671. BR2_powerpc_power8=y
  1672. BR2_TOOLCHAIN_EXTERNAL=y
  1673. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1674. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_GLIBC_BLEEDING_EDGE=y
  1675. # BR2_TARGET_ROOTFS_TAR is not set
  1676. """
  1677. toolchain_prefix = "powerpc64le-linux"
  1678. def test_run(self):
  1679. TestExternalToolchain.common_check(self)
  1680. class TestExternalToolchainBootlinPowerpc64lepower8GlibcStable(TestExternalToolchain):
  1681. config = """
  1682. BR2_powerpc64le=y
  1683. BR2_powerpc_power8=y
  1684. BR2_TOOLCHAIN_EXTERNAL=y
  1685. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1686. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_GLIBC_STABLE=y
  1687. # BR2_TARGET_ROOTFS_TAR is not set
  1688. """
  1689. toolchain_prefix = "powerpc64le-linux"
  1690. def test_run(self):
  1691. TestExternalToolchain.common_check(self)
  1692. class TestExternalToolchainBootlinPowerpc64lepower8MuslBleedingEdge(TestExternalToolchain):
  1693. config = """
  1694. BR2_powerpc64le=y
  1695. BR2_powerpc_power8=y
  1696. BR2_TOOLCHAIN_EXTERNAL=y
  1697. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1698. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_MUSL_BLEEDING_EDGE=y
  1699. # BR2_TARGET_ROOTFS_TAR is not set
  1700. """
  1701. toolchain_prefix = "powerpc64le-linux"
  1702. def test_run(self):
  1703. TestExternalToolchain.common_check(self)
  1704. class TestExternalToolchainBootlinPowerpc64lepower8MuslStable(TestExternalToolchain):
  1705. config = """
  1706. BR2_powerpc64le=y
  1707. BR2_powerpc_power8=y
  1708. BR2_TOOLCHAIN_EXTERNAL=y
  1709. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1710. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_MUSL_STABLE=y
  1711. # BR2_TARGET_ROOTFS_TAR is not set
  1712. """
  1713. toolchain_prefix = "powerpc64le-linux"
  1714. def test_run(self):
  1715. TestExternalToolchain.common_check(self)
  1716. class TestExternalToolchainBootlinRiscv32ilp32dGlibcBleedingEdge(TestExternalToolchain):
  1717. config = """
  1718. BR2_riscv=y
  1719. BR2_riscv_g=y
  1720. BR2_RISCV_32=y
  1721. BR2_RISCV_ABI_ILP32D=y
  1722. BR2_TOOLCHAIN_EXTERNAL=y
  1723. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1724. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV32_ILP32D_GLIBC_BLEEDING_EDGE=y
  1725. # BR2_TARGET_ROOTFS_TAR is not set
  1726. """
  1727. toolchain_prefix = "riscv32-linux"
  1728. def test_run(self):
  1729. TestExternalToolchain.common_check(self)
  1730. class TestExternalToolchainBootlinRiscv64lp64dGlibcBleedingEdge(TestExternalToolchain):
  1731. config = """
  1732. BR2_riscv=y
  1733. BR2_riscv_g=y
  1734. BR2_RISCV_64=y
  1735. BR2_RISCV_ABI_LP64D=y
  1736. BR2_USE_MMU=y
  1737. BR2_TOOLCHAIN_EXTERNAL=y
  1738. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1739. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_LP64D_GLIBC_BLEEDING_EDGE=y
  1740. # BR2_TARGET_ROOTFS_TAR is not set
  1741. """
  1742. toolchain_prefix = "riscv64-linux"
  1743. def test_run(self):
  1744. TestExternalToolchain.common_check(self)
  1745. class TestExternalToolchainBootlinRiscv64lp64dGlibcStable(TestExternalToolchain):
  1746. config = """
  1747. BR2_riscv=y
  1748. BR2_riscv_g=y
  1749. BR2_RISCV_64=y
  1750. BR2_RISCV_ABI_LP64D=y
  1751. BR2_USE_MMU=y
  1752. BR2_TOOLCHAIN_EXTERNAL=y
  1753. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1754. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_LP64D_GLIBC_STABLE=y
  1755. # BR2_TARGET_ROOTFS_TAR is not set
  1756. """
  1757. toolchain_prefix = "riscv64-linux"
  1758. def test_run(self):
  1759. TestExternalToolchain.common_check(self)
  1760. class TestExternalToolchainBootlinRiscv64lp64dMuslBleedingEdge(TestExternalToolchain):
  1761. config = """
  1762. BR2_riscv=y
  1763. BR2_riscv_g=y
  1764. BR2_RISCV_64=y
  1765. BR2_RISCV_ABI_LP64D=y
  1766. BR2_USE_MMU=y
  1767. BR2_TOOLCHAIN_EXTERNAL=y
  1768. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1769. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_LP64D_MUSL_BLEEDING_EDGE=y
  1770. # BR2_TARGET_ROOTFS_TAR is not set
  1771. """
  1772. toolchain_prefix = "riscv64-linux"
  1773. def test_run(self):
  1774. TestExternalToolchain.common_check(self)
  1775. class TestExternalToolchainBootlinRiscv64lp64dMuslStable(TestExternalToolchain):
  1776. config = """
  1777. BR2_riscv=y
  1778. BR2_riscv_g=y
  1779. BR2_RISCV_64=y
  1780. BR2_RISCV_ABI_LP64D=y
  1781. BR2_USE_MMU=y
  1782. BR2_TOOLCHAIN_EXTERNAL=y
  1783. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1784. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_LP64D_MUSL_STABLE=y
  1785. # BR2_TARGET_ROOTFS_TAR is not set
  1786. """
  1787. toolchain_prefix = "riscv64-linux"
  1788. def test_run(self):
  1789. TestExternalToolchain.common_check(self)
  1790. class TestExternalToolchainBootlinRiscv64lp64dUclibcBleedingEdge(TestExternalToolchain):
  1791. config = """
  1792. BR2_riscv=y
  1793. BR2_riscv_g=y
  1794. BR2_RISCV_64=y
  1795. BR2_RISCV_ABI_LP64D=y
  1796. BR2_USE_MMU=y
  1797. BR2_TOOLCHAIN_EXTERNAL=y
  1798. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1799. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_LP64D_UCLIBC_BLEEDING_EDGE=y
  1800. # BR2_TARGET_ROOTFS_TAR is not set
  1801. """
  1802. toolchain_prefix = "riscv64-linux"
  1803. def test_run(self):
  1804. TestExternalToolchain.common_check(self)
  1805. class TestExternalToolchainBootlinRiscv64lp64dUclibcStable(TestExternalToolchain):
  1806. config = """
  1807. BR2_riscv=y
  1808. BR2_riscv_g=y
  1809. BR2_RISCV_64=y
  1810. BR2_RISCV_ABI_LP64D=y
  1811. BR2_USE_MMU=y
  1812. BR2_TOOLCHAIN_EXTERNAL=y
  1813. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1814. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_LP64D_UCLIBC_STABLE=y
  1815. # BR2_TARGET_ROOTFS_TAR is not set
  1816. """
  1817. toolchain_prefix = "riscv64-linux"
  1818. def test_run(self):
  1819. TestExternalToolchain.common_check(self)
  1820. class TestExternalToolchainBootlinS390xz13GlibcBleedingEdge(TestExternalToolchain):
  1821. config = """
  1822. BR2_s390x=y
  1823. BR2_s390x_z13=y
  1824. BR2_TOOLCHAIN_EXTERNAL=y
  1825. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1826. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_S390X_Z13_GLIBC_BLEEDING_EDGE=y
  1827. # BR2_TARGET_ROOTFS_TAR is not set
  1828. """
  1829. toolchain_prefix = "s390x-linux"
  1830. def test_run(self):
  1831. TestExternalToolchain.common_check(self)
  1832. class TestExternalToolchainBootlinS390xz13GlibcStable(TestExternalToolchain):
  1833. config = """
  1834. BR2_s390x=y
  1835. BR2_s390x_z13=y
  1836. BR2_TOOLCHAIN_EXTERNAL=y
  1837. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1838. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_S390X_Z13_GLIBC_STABLE=y
  1839. # BR2_TARGET_ROOTFS_TAR is not set
  1840. """
  1841. toolchain_prefix = "s390x-linux"
  1842. def test_run(self):
  1843. TestExternalToolchain.common_check(self)
  1844. class TestExternalToolchainBootlinShsh4GlibcBleedingEdge(TestExternalToolchain):
  1845. config = """
  1846. BR2_sh=y
  1847. BR2_sh4=y
  1848. BR2_TOOLCHAIN_EXTERNAL=y
  1849. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1850. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_GLIBC_BLEEDING_EDGE=y
  1851. # BR2_TARGET_ROOTFS_TAR is not set
  1852. """
  1853. toolchain_prefix = "sh4-linux"
  1854. def test_run(self):
  1855. TestExternalToolchain.common_check(self)
  1856. class TestExternalToolchainBootlinShsh4GlibcStable(TestExternalToolchain):
  1857. config = """
  1858. BR2_sh=y
  1859. BR2_sh4=y
  1860. BR2_TOOLCHAIN_EXTERNAL=y
  1861. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1862. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_GLIBC_STABLE=y
  1863. # BR2_TARGET_ROOTFS_TAR is not set
  1864. """
  1865. toolchain_prefix = "sh4-linux"
  1866. def test_run(self):
  1867. TestExternalToolchain.common_check(self)
  1868. class TestExternalToolchainBootlinShsh4MuslBleedingEdge(TestExternalToolchain):
  1869. config = """
  1870. BR2_sh=y
  1871. BR2_sh4=y
  1872. BR2_TOOLCHAIN_EXTERNAL=y
  1873. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1874. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_MUSL_BLEEDING_EDGE=y
  1875. # BR2_TARGET_ROOTFS_TAR is not set
  1876. """
  1877. toolchain_prefix = "sh4-linux"
  1878. def test_run(self):
  1879. TestExternalToolchain.common_check(self)
  1880. class TestExternalToolchainBootlinShsh4MuslStable(TestExternalToolchain):
  1881. config = """
  1882. BR2_sh=y
  1883. BR2_sh4=y
  1884. BR2_TOOLCHAIN_EXTERNAL=y
  1885. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1886. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_MUSL_STABLE=y
  1887. # BR2_TARGET_ROOTFS_TAR is not set
  1888. """
  1889. toolchain_prefix = "sh4-linux"
  1890. def test_run(self):
  1891. TestExternalToolchain.common_check(self)
  1892. class TestExternalToolchainBootlinShsh4UclibcBleedingEdge(TestExternalToolchain):
  1893. config = """
  1894. BR2_sh=y
  1895. BR2_sh4=y
  1896. BR2_TOOLCHAIN_EXTERNAL=y
  1897. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1898. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_UCLIBC_BLEEDING_EDGE=y
  1899. # BR2_TARGET_ROOTFS_TAR is not set
  1900. """
  1901. toolchain_prefix = "sh4-linux"
  1902. def test_run(self):
  1903. TestExternalToolchain.common_check(self)
  1904. class TestExternalToolchainBootlinShsh4UclibcStable(TestExternalToolchain):
  1905. config = """
  1906. BR2_sh=y
  1907. BR2_sh4=y
  1908. BR2_TOOLCHAIN_EXTERNAL=y
  1909. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1910. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_UCLIBC_STABLE=y
  1911. # BR2_TARGET_ROOTFS_TAR is not set
  1912. """
  1913. toolchain_prefix = "sh4-linux"
  1914. def test_run(self):
  1915. TestExternalToolchain.common_check(self)
  1916. class TestExternalToolchainBootlinShsh4aebGlibcBleedingEdge(TestExternalToolchain):
  1917. config = """
  1918. BR2_sh=y
  1919. BR2_sh4aeb=y
  1920. BR2_TOOLCHAIN_EXTERNAL=y
  1921. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1922. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_GLIBC_BLEEDING_EDGE=y
  1923. # BR2_TARGET_ROOTFS_TAR is not set
  1924. """
  1925. toolchain_prefix = "sh4aeb-linux"
  1926. def test_run(self):
  1927. TestExternalToolchain.common_check(self)
  1928. class TestExternalToolchainBootlinShsh4aebGlibcStable(TestExternalToolchain):
  1929. config = """
  1930. BR2_sh=y
  1931. BR2_sh4aeb=y
  1932. BR2_TOOLCHAIN_EXTERNAL=y
  1933. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1934. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_GLIBC_STABLE=y
  1935. # BR2_TARGET_ROOTFS_TAR is not set
  1936. """
  1937. toolchain_prefix = "sh4aeb-linux"
  1938. def test_run(self):
  1939. TestExternalToolchain.common_check(self)
  1940. class TestExternalToolchainBootlinShsh4aebMuslBleedingEdge(TestExternalToolchain):
  1941. config = """
  1942. BR2_sh=y
  1943. BR2_sh4aeb=y
  1944. BR2_TOOLCHAIN_EXTERNAL=y
  1945. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1946. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_MUSL_BLEEDING_EDGE=y
  1947. # BR2_TARGET_ROOTFS_TAR is not set
  1948. """
  1949. toolchain_prefix = "sh4aeb-linux"
  1950. def test_run(self):
  1951. TestExternalToolchain.common_check(self)
  1952. class TestExternalToolchainBootlinShsh4aebMuslStable(TestExternalToolchain):
  1953. config = """
  1954. BR2_sh=y
  1955. BR2_sh4aeb=y
  1956. BR2_TOOLCHAIN_EXTERNAL=y
  1957. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1958. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_MUSL_STABLE=y
  1959. # BR2_TARGET_ROOTFS_TAR is not set
  1960. """
  1961. toolchain_prefix = "sh4aeb-linux"
  1962. def test_run(self):
  1963. TestExternalToolchain.common_check(self)
  1964. class TestExternalToolchainBootlinSparc64GlibcBleedingEdge(TestExternalToolchain):
  1965. config = """
  1966. BR2_sparc64=y
  1967. BR2_sparc_v9=y
  1968. BR2_TOOLCHAIN_EXTERNAL=y
  1969. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1970. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARC64_GLIBC_BLEEDING_EDGE=y
  1971. # BR2_TARGET_ROOTFS_TAR is not set
  1972. """
  1973. toolchain_prefix = "sparc64-linux"
  1974. def test_run(self):
  1975. TestExternalToolchain.common_check(self)
  1976. class TestExternalToolchainBootlinSparc64GlibcStable(TestExternalToolchain):
  1977. config = """
  1978. BR2_sparc64=y
  1979. BR2_sparc_v9=y
  1980. BR2_TOOLCHAIN_EXTERNAL=y
  1981. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1982. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARC64_GLIBC_STABLE=y
  1983. # BR2_TARGET_ROOTFS_TAR is not set
  1984. """
  1985. toolchain_prefix = "sparc64-linux"
  1986. def test_run(self):
  1987. TestExternalToolchain.common_check(self)
  1988. class TestExternalToolchainBootlinSparcv8UclibcBleedingEdge(TestExternalToolchain):
  1989. config = """
  1990. BR2_sparc=y
  1991. BR2_sparc_v8=y
  1992. BR2_TOOLCHAIN_EXTERNAL=y
  1993. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  1994. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARCV8_UCLIBC_BLEEDING_EDGE=y
  1995. # BR2_TARGET_ROOTFS_TAR is not set
  1996. """
  1997. toolchain_prefix = "sparc-linux"
  1998. def test_run(self):
  1999. TestExternalToolchain.common_check(self)
  2000. class TestExternalToolchainBootlinSparcv8UclibcStable(TestExternalToolchain):
  2001. config = """
  2002. BR2_sparc=y
  2003. BR2_sparc_v8=y
  2004. BR2_TOOLCHAIN_EXTERNAL=y
  2005. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2006. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARCV8_UCLIBC_STABLE=y
  2007. # BR2_TARGET_ROOTFS_TAR is not set
  2008. """
  2009. toolchain_prefix = "sparc-linux"
  2010. def test_run(self):
  2011. TestExternalToolchain.common_check(self)
  2012. class TestExternalToolchainBootlinX8664GlibcBleedingEdge(TestExternalToolchain):
  2013. config = """
  2014. BR2_x86_64=y
  2015. BR2_x86_x86_64=y
  2016. BR2_TOOLCHAIN_EXTERNAL=y
  2017. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2018. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_GLIBC_BLEEDING_EDGE=y
  2019. # BR2_TARGET_ROOTFS_TAR is not set
  2020. """
  2021. toolchain_prefix = "x86_64-linux"
  2022. def test_run(self):
  2023. TestExternalToolchain.common_check(self)
  2024. class TestExternalToolchainBootlinX8664GlibcStable(TestExternalToolchain):
  2025. config = """
  2026. BR2_x86_64=y
  2027. BR2_x86_x86_64=y
  2028. BR2_TOOLCHAIN_EXTERNAL=y
  2029. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2030. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_GLIBC_STABLE=y
  2031. # BR2_TARGET_ROOTFS_TAR is not set
  2032. """
  2033. toolchain_prefix = "x86_64-linux"
  2034. def test_run(self):
  2035. TestExternalToolchain.common_check(self)
  2036. class TestExternalToolchainBootlinX8664MuslBleedingEdge(TestExternalToolchain):
  2037. config = """
  2038. BR2_x86_64=y
  2039. BR2_x86_x86_64=y
  2040. BR2_TOOLCHAIN_EXTERNAL=y
  2041. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2042. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_MUSL_BLEEDING_EDGE=y
  2043. # BR2_TARGET_ROOTFS_TAR is not set
  2044. """
  2045. toolchain_prefix = "x86_64-linux"
  2046. def test_run(self):
  2047. TestExternalToolchain.common_check(self)
  2048. class TestExternalToolchainBootlinX8664MuslStable(TestExternalToolchain):
  2049. config = """
  2050. BR2_x86_64=y
  2051. BR2_x86_x86_64=y
  2052. BR2_TOOLCHAIN_EXTERNAL=y
  2053. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2054. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_MUSL_STABLE=y
  2055. # BR2_TARGET_ROOTFS_TAR is not set
  2056. """
  2057. toolchain_prefix = "x86_64-linux"
  2058. def test_run(self):
  2059. TestExternalToolchain.common_check(self)
  2060. class TestExternalToolchainBootlinX8664UclibcBleedingEdge(TestExternalToolchain):
  2061. config = """
  2062. BR2_x86_64=y
  2063. BR2_x86_x86_64=y
  2064. BR2_TOOLCHAIN_EXTERNAL=y
  2065. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2066. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_UCLIBC_BLEEDING_EDGE=y
  2067. # BR2_TARGET_ROOTFS_TAR is not set
  2068. """
  2069. toolchain_prefix = "x86_64-linux"
  2070. def test_run(self):
  2071. TestExternalToolchain.common_check(self)
  2072. class TestExternalToolchainBootlinX8664UclibcStable(TestExternalToolchain):
  2073. config = """
  2074. BR2_x86_64=y
  2075. BR2_x86_x86_64=y
  2076. BR2_TOOLCHAIN_EXTERNAL=y
  2077. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2078. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_UCLIBC_STABLE=y
  2079. # BR2_TARGET_ROOTFS_TAR is not set
  2080. """
  2081. toolchain_prefix = "x86_64-linux"
  2082. def test_run(self):
  2083. TestExternalToolchain.common_check(self)
  2084. class TestExternalToolchainBootlinX8664v2GlibcBleedingEdge(TestExternalToolchain):
  2085. config = """
  2086. BR2_x86_64=y
  2087. BR2_x86_x86_64_v2=y
  2088. BR2_TOOLCHAIN_EXTERNAL=y
  2089. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2090. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V2_GLIBC_BLEEDING_EDGE=y
  2091. # BR2_TARGET_ROOTFS_TAR is not set
  2092. """
  2093. toolchain_prefix = "x86_64-linux"
  2094. def test_run(self):
  2095. TestExternalToolchain.common_check(self)
  2096. class TestExternalToolchainBootlinX8664v2MuslBleedingEdge(TestExternalToolchain):
  2097. config = """
  2098. BR2_x86_64=y
  2099. BR2_x86_x86_64_v2=y
  2100. BR2_TOOLCHAIN_EXTERNAL=y
  2101. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2102. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V2_MUSL_BLEEDING_EDGE=y
  2103. # BR2_TARGET_ROOTFS_TAR is not set
  2104. """
  2105. toolchain_prefix = "x86_64-linux"
  2106. def test_run(self):
  2107. TestExternalToolchain.common_check(self)
  2108. class TestExternalToolchainBootlinX8664v2UclibcBleedingEdge(TestExternalToolchain):
  2109. config = """
  2110. BR2_x86_64=y
  2111. BR2_x86_x86_64_v2=y
  2112. BR2_TOOLCHAIN_EXTERNAL=y
  2113. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2114. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V2_UCLIBC_BLEEDING_EDGE=y
  2115. # BR2_TARGET_ROOTFS_TAR is not set
  2116. """
  2117. toolchain_prefix = "x86_64-linux"
  2118. def test_run(self):
  2119. TestExternalToolchain.common_check(self)
  2120. class TestExternalToolchainBootlinX8664v3GlibcBleedingEdge(TestExternalToolchain):
  2121. config = """
  2122. BR2_x86_64=y
  2123. BR2_x86_x86_64_v3=y
  2124. BR2_TOOLCHAIN_EXTERNAL=y
  2125. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2126. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V3_GLIBC_BLEEDING_EDGE=y
  2127. # BR2_TARGET_ROOTFS_TAR is not set
  2128. """
  2129. toolchain_prefix = "x86_64-linux"
  2130. def test_run(self):
  2131. TestExternalToolchain.common_check(self)
  2132. class TestExternalToolchainBootlinX8664v3MuslBleedingEdge(TestExternalToolchain):
  2133. config = """
  2134. BR2_x86_64=y
  2135. BR2_x86_x86_64_v3=y
  2136. BR2_TOOLCHAIN_EXTERNAL=y
  2137. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2138. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V3_MUSL_BLEEDING_EDGE=y
  2139. # BR2_TARGET_ROOTFS_TAR is not set
  2140. """
  2141. toolchain_prefix = "x86_64-linux"
  2142. def test_run(self):
  2143. TestExternalToolchain.common_check(self)
  2144. class TestExternalToolchainBootlinX8664v3UclibcBleedingEdge(TestExternalToolchain):
  2145. config = """
  2146. BR2_x86_64=y
  2147. BR2_x86_x86_64_v3=y
  2148. BR2_TOOLCHAIN_EXTERNAL=y
  2149. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2150. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V3_UCLIBC_BLEEDING_EDGE=y
  2151. # BR2_TARGET_ROOTFS_TAR is not set
  2152. """
  2153. toolchain_prefix = "x86_64-linux"
  2154. def test_run(self):
  2155. TestExternalToolchain.common_check(self)
  2156. class TestExternalToolchainBootlinX8664v4GlibcBleedingEdge(TestExternalToolchain):
  2157. config = """
  2158. BR2_x86_64=y
  2159. BR2_x86_x86_64_v4=y
  2160. BR2_TOOLCHAIN_EXTERNAL=y
  2161. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2162. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V4_GLIBC_BLEEDING_EDGE=y
  2163. # BR2_TARGET_ROOTFS_TAR is not set
  2164. """
  2165. toolchain_prefix = "x86_64-linux"
  2166. def test_run(self):
  2167. TestExternalToolchain.common_check(self)
  2168. class TestExternalToolchainBootlinX8664v4MuslBleedingEdge(TestExternalToolchain):
  2169. config = """
  2170. BR2_x86_64=y
  2171. BR2_x86_x86_64_v4=y
  2172. BR2_TOOLCHAIN_EXTERNAL=y
  2173. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2174. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V4_MUSL_BLEEDING_EDGE=y
  2175. # BR2_TARGET_ROOTFS_TAR is not set
  2176. """
  2177. toolchain_prefix = "x86_64-linux"
  2178. def test_run(self):
  2179. TestExternalToolchain.common_check(self)
  2180. class TestExternalToolchainBootlinX8664v4UclibcBleedingEdge(TestExternalToolchain):
  2181. config = """
  2182. BR2_x86_64=y
  2183. BR2_x86_x86_64_v4=y
  2184. BR2_TOOLCHAIN_EXTERNAL=y
  2185. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2186. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_V4_UCLIBC_BLEEDING_EDGE=y
  2187. # BR2_TARGET_ROOTFS_TAR is not set
  2188. """
  2189. toolchain_prefix = "x86_64-linux"
  2190. def test_run(self):
  2191. TestExternalToolchain.common_check(self)
  2192. class TestExternalToolchainBootlinX8664corei7GlibcBleedingEdge(TestExternalToolchain):
  2193. config = """
  2194. BR2_x86_64=y
  2195. BR2_x86_corei7=y
  2196. BR2_TOOLCHAIN_EXTERNAL=y
  2197. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2198. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_GLIBC_BLEEDING_EDGE=y
  2199. # BR2_TARGET_ROOTFS_TAR is not set
  2200. """
  2201. toolchain_prefix = "x86_64-linux"
  2202. def test_run(self):
  2203. TestExternalToolchain.common_check(self)
  2204. class TestExternalToolchainBootlinX8664corei7GlibcStable(TestExternalToolchain):
  2205. config = """
  2206. BR2_x86_64=y
  2207. BR2_x86_corei7=y
  2208. BR2_TOOLCHAIN_EXTERNAL=y
  2209. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2210. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_GLIBC_STABLE=y
  2211. # BR2_TARGET_ROOTFS_TAR is not set
  2212. """
  2213. toolchain_prefix = "x86_64-linux"
  2214. def test_run(self):
  2215. TestExternalToolchain.common_check(self)
  2216. class TestExternalToolchainBootlinX8664corei7MuslBleedingEdge(TestExternalToolchain):
  2217. config = """
  2218. BR2_x86_64=y
  2219. BR2_x86_corei7=y
  2220. BR2_TOOLCHAIN_EXTERNAL=y
  2221. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2222. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_MUSL_BLEEDING_EDGE=y
  2223. # BR2_TARGET_ROOTFS_TAR is not set
  2224. """
  2225. toolchain_prefix = "x86_64-linux"
  2226. def test_run(self):
  2227. TestExternalToolchain.common_check(self)
  2228. class TestExternalToolchainBootlinX8664corei7MuslStable(TestExternalToolchain):
  2229. config = """
  2230. BR2_x86_64=y
  2231. BR2_x86_corei7=y
  2232. BR2_TOOLCHAIN_EXTERNAL=y
  2233. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2234. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_MUSL_STABLE=y
  2235. # BR2_TARGET_ROOTFS_TAR is not set
  2236. """
  2237. toolchain_prefix = "x86_64-linux"
  2238. def test_run(self):
  2239. TestExternalToolchain.common_check(self)
  2240. class TestExternalToolchainBootlinX8664corei7UclibcBleedingEdge(TestExternalToolchain):
  2241. config = """
  2242. BR2_x86_64=y
  2243. BR2_x86_corei7=y
  2244. BR2_TOOLCHAIN_EXTERNAL=y
  2245. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2246. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_UCLIBC_BLEEDING_EDGE=y
  2247. # BR2_TARGET_ROOTFS_TAR is not set
  2248. """
  2249. toolchain_prefix = "x86_64-linux"
  2250. def test_run(self):
  2251. TestExternalToolchain.common_check(self)
  2252. class TestExternalToolchainBootlinX8664corei7UclibcStable(TestExternalToolchain):
  2253. config = """
  2254. BR2_x86_64=y
  2255. BR2_x86_corei7=y
  2256. BR2_TOOLCHAIN_EXTERNAL=y
  2257. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2258. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_UCLIBC_STABLE=y
  2259. # BR2_TARGET_ROOTFS_TAR is not set
  2260. """
  2261. toolchain_prefix = "x86_64-linux"
  2262. def test_run(self):
  2263. TestExternalToolchain.common_check(self)
  2264. class TestExternalToolchainBootlinX86core2GlibcBleedingEdge(TestExternalToolchain):
  2265. config = """
  2266. BR2_i386=y
  2267. BR2_x86_core2=y
  2268. BR2_TOOLCHAIN_EXTERNAL=y
  2269. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2270. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_GLIBC_BLEEDING_EDGE=y
  2271. # BR2_TARGET_ROOTFS_TAR is not set
  2272. """
  2273. toolchain_prefix = "i686-linux"
  2274. def test_run(self):
  2275. TestExternalToolchain.common_check(self)
  2276. class TestExternalToolchainBootlinX86core2GlibcStable(TestExternalToolchain):
  2277. config = """
  2278. BR2_i386=y
  2279. BR2_x86_core2=y
  2280. BR2_TOOLCHAIN_EXTERNAL=y
  2281. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2282. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_GLIBC_STABLE=y
  2283. # BR2_TARGET_ROOTFS_TAR is not set
  2284. """
  2285. toolchain_prefix = "i686-linux"
  2286. def test_run(self):
  2287. TestExternalToolchain.common_check(self)
  2288. class TestExternalToolchainBootlinX86core2MuslBleedingEdge(TestExternalToolchain):
  2289. config = """
  2290. BR2_i386=y
  2291. BR2_x86_core2=y
  2292. BR2_TOOLCHAIN_EXTERNAL=y
  2293. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2294. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_MUSL_BLEEDING_EDGE=y
  2295. # BR2_TARGET_ROOTFS_TAR is not set
  2296. """
  2297. toolchain_prefix = "i686-linux"
  2298. def test_run(self):
  2299. TestExternalToolchain.common_check(self)
  2300. class TestExternalToolchainBootlinX86core2MuslStable(TestExternalToolchain):
  2301. config = """
  2302. BR2_i386=y
  2303. BR2_x86_core2=y
  2304. BR2_TOOLCHAIN_EXTERNAL=y
  2305. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2306. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_MUSL_STABLE=y
  2307. # BR2_TARGET_ROOTFS_TAR is not set
  2308. """
  2309. toolchain_prefix = "i686-linux"
  2310. def test_run(self):
  2311. TestExternalToolchain.common_check(self)
  2312. class TestExternalToolchainBootlinX86core2UclibcBleedingEdge(TestExternalToolchain):
  2313. config = """
  2314. BR2_i386=y
  2315. BR2_x86_core2=y
  2316. BR2_TOOLCHAIN_EXTERNAL=y
  2317. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2318. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_UCLIBC_BLEEDING_EDGE=y
  2319. # BR2_TARGET_ROOTFS_TAR is not set
  2320. """
  2321. toolchain_prefix = "i686-linux"
  2322. def test_run(self):
  2323. TestExternalToolchain.common_check(self)
  2324. class TestExternalToolchainBootlinX86core2UclibcStable(TestExternalToolchain):
  2325. config = """
  2326. BR2_i386=y
  2327. BR2_x86_core2=y
  2328. BR2_TOOLCHAIN_EXTERNAL=y
  2329. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2330. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_UCLIBC_STABLE=y
  2331. # BR2_TARGET_ROOTFS_TAR is not set
  2332. """
  2333. toolchain_prefix = "i686-linux"
  2334. def test_run(self):
  2335. TestExternalToolchain.common_check(self)
  2336. class TestExternalToolchainBootlinX86i686GlibcBleedingEdge(TestExternalToolchain):
  2337. config = """
  2338. BR2_i386=y
  2339. BR2_x86_i686=y
  2340. BR2_TOOLCHAIN_EXTERNAL=y
  2341. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2342. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_GLIBC_BLEEDING_EDGE=y
  2343. # BR2_TARGET_ROOTFS_TAR is not set
  2344. """
  2345. toolchain_prefix = "i686-linux"
  2346. def test_run(self):
  2347. TestExternalToolchain.common_check(self)
  2348. class TestExternalToolchainBootlinX86i686GlibcStable(TestExternalToolchain):
  2349. config = """
  2350. BR2_i386=y
  2351. BR2_x86_i686=y
  2352. BR2_TOOLCHAIN_EXTERNAL=y
  2353. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2354. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_GLIBC_STABLE=y
  2355. # BR2_TARGET_ROOTFS_TAR is not set
  2356. """
  2357. toolchain_prefix = "i686-linux"
  2358. def test_run(self):
  2359. TestExternalToolchain.common_check(self)
  2360. class TestExternalToolchainBootlinX86i686MuslBleedingEdge(TestExternalToolchain):
  2361. config = """
  2362. BR2_i386=y
  2363. BR2_x86_i686=y
  2364. BR2_TOOLCHAIN_EXTERNAL=y
  2365. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2366. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_MUSL_BLEEDING_EDGE=y
  2367. # BR2_TARGET_ROOTFS_TAR is not set
  2368. """
  2369. toolchain_prefix = "i686-linux"
  2370. def test_run(self):
  2371. TestExternalToolchain.common_check(self)
  2372. class TestExternalToolchainBootlinX86i686MuslStable(TestExternalToolchain):
  2373. config = """
  2374. BR2_i386=y
  2375. BR2_x86_i686=y
  2376. BR2_TOOLCHAIN_EXTERNAL=y
  2377. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2378. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_MUSL_STABLE=y
  2379. # BR2_TARGET_ROOTFS_TAR is not set
  2380. """
  2381. toolchain_prefix = "i686-linux"
  2382. def test_run(self):
  2383. TestExternalToolchain.common_check(self)
  2384. class TestExternalToolchainBootlinX86i686UclibcBleedingEdge(TestExternalToolchain):
  2385. config = """
  2386. BR2_i386=y
  2387. BR2_x86_i686=y
  2388. BR2_TOOLCHAIN_EXTERNAL=y
  2389. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2390. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_UCLIBC_BLEEDING_EDGE=y
  2391. # BR2_TARGET_ROOTFS_TAR is not set
  2392. """
  2393. toolchain_prefix = "i686-linux"
  2394. def test_run(self):
  2395. TestExternalToolchain.common_check(self)
  2396. class TestExternalToolchainBootlinX86i686UclibcStable(TestExternalToolchain):
  2397. config = """
  2398. BR2_i386=y
  2399. BR2_x86_i686=y
  2400. BR2_TOOLCHAIN_EXTERNAL=y
  2401. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2402. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_UCLIBC_STABLE=y
  2403. # BR2_TARGET_ROOTFS_TAR is not set
  2404. """
  2405. toolchain_prefix = "i686-linux"
  2406. def test_run(self):
  2407. TestExternalToolchain.common_check(self)
  2408. class TestExternalToolchainBootlinXtensalx60UclibcBleedingEdge(TestExternalToolchain):
  2409. config = """
  2410. BR2_xtensa=y
  2411. BR2_XTENSA_CUSTOM=y
  2412. BR2_XTENSA_LITTLE_ENDIAN=y
  2413. BR2_TOOLCHAIN_EXTERNAL=y
  2414. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2415. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_XTENSA_LX60_UCLIBC_BLEEDING_EDGE=y
  2416. # BR2_TARGET_ROOTFS_TAR is not set
  2417. """
  2418. toolchain_prefix = "xtensa-linux"
  2419. def test_run(self):
  2420. TestExternalToolchain.common_check(self)
  2421. class TestExternalToolchainBootlinXtensalx60UclibcStable(TestExternalToolchain):
  2422. config = """
  2423. BR2_xtensa=y
  2424. BR2_XTENSA_CUSTOM=y
  2425. BR2_XTENSA_LITTLE_ENDIAN=y
  2426. BR2_TOOLCHAIN_EXTERNAL=y
  2427. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
  2428. BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_XTENSA_LX60_UCLIBC_STABLE=y
  2429. # BR2_TARGET_ROOTFS_TAR is not set
  2430. """
  2431. toolchain_prefix = "xtensa-linux"
  2432. def test_run(self):
  2433. TestExternalToolchain.common_check(self)