CHANGES 240 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896
  1. 2017.08, Released September 1st, 2017
  2. Minor fixes.
  3. Toolchain: Don't allow internal toolchain builds for MIPS
  4. M6201/P6600, as support for these are not yet in mainline GCC.
  5. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  6. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  7. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  8. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  9. transmission, vde2, vim
  10. Updated/fixed defconfigs:
  11. Removed packages: simicfs.
  12. Issues resolved (http://bugs.buildroot.org):
  13. #10261: Grub2 fails to build for x86_64
  14. 2017.08-rc3, Released August 23rd, 2017
  15. Fixes all over the tree.
  16. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  17. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  18. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  19. libspatialindex, libunwind, linux, linux-headers, lua,
  20. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  21. whois, xen, zmqpp.
  22. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  23. toradex_apalis_imx6.
  24. Removed defconfig: Armadeus APF9328.
  25. skeleton-* packages introduced in -rc1 have been renamed to
  26. skeleton-init-* instead.
  27. Issues resolved (http://bugs.buildroot.org):
  28. #10141: Squashfs extended attribute failures
  29. 2017.08-rc2, Released August 11th, 2017
  30. Fixes all over the tree.
  31. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  32. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  33. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  34. swupdate, uclibc, valgrind, webkitgtk.
  35. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  36. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  37. qemu_sparc64.
  38. The cmake-package infrastructure for host packages has been
  39. fixed to not incorrectly detect target packages through
  40. pkg-config.
  41. Issues resolved (http://bugs.buildroot.org):
  42. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  43. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  44. #10026: lua-5.3.4: fix lua linker error in swupdate
  45. #10146: package/skeleton-common fix recursive variable
  46. #10156: glibc compilation fails for X86 32bits (i386)
  47. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  48. #10221: Buildroot Support
  49. 2017.08-rc1, Released August 2nd, 2017
  50. Infrastructure:
  51. - The skeleton package has been split into multiple packages:
  52. skeleton-sysv (when Busybox or SysV init are used),
  53. skeleton-systemd (when systemd is used), skeleton-none (when
  54. no init system is used) and skeleton-custom (when a custom
  55. skeleton is used). Those packages, except skeleton-custom,
  56. share common logic and data in a new package called
  57. skeleton-common. The skeleton package becomes a virtual
  58. package. This change allows to generate a filesystem that is
  59. compliant with systemd expectations.
  60. - Support for using a read-only filesystem with systemd has
  61. been fixed.
  62. - Major revamp of the gettext handling, with user-visible
  63. effect:
  64. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  65. package could decide to enable or not NLS support. When
  66. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  67. by passing --disable-nls to packages.
  68. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  69. controls whether NLS support should be enabled or not in
  70. packages. This option defaults to disabled, which means
  71. that now, NLS support is by default disabled in all
  72. packages.
  73. Therefore, if you need NLS support in packages, you must now
  74. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  75. - The host directory no longer has a usr/ component. This
  76. makes it much more natural to use that directory as an
  77. externally used toolchain. For compatibility with existing
  78. scripts, a usr -> . link is still added.
  79. - Hashes are now checked on tarballs by Buildroot when a
  80. package is sourced from a Git repository.
  81. - Patches are no longer being downloaded from Github, since
  82. auto-generated patches could change over time, and break
  83. hashes. All patches that were downloaded from Github are now
  84. stored in their respective package directories.
  85. - Hash files in packages can now contain hashes for the
  86. license files contained in the package source code. This
  87. allows to detect changes in such license files.
  88. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  89. RPATHs at the end of the build.
  90. - A new "make sdk" target prepares $(HOST_DIR) to be
  91. relocatable: turns RPATHs in host binaries into relocatable
  92. ones, removes bogus RPATHs from staging binaries/libraries,
  93. and provides a relocate-sdk script that can be executed to
  94. relocate the SDK after installation.
  95. - Addition of utils/genrandconfig which generates a random
  96. configuration based on a set of pre-defined toolchain
  97. configurations (support/config-fragments/autobuild/) and a
  98. random selection of packages. It is now used by the
  99. autobuilders to generate the random configurations.
  100. Filesystems:
  101. - ext2/3/4 filesystems are now generated using mkfs.ext from
  102. e2fsprogs instead of using genext2fs.
  103. Architecture:
  104. - Addition of support for ARM big.LITTLE variants
  105. - Improved MIPS support, with options to select NaN encoding
  106. and FP32 mode.
  107. Toolchain:
  108. - Switch to gcc 6.x as the default gcc version, add support
  109. for gcc 7.x, remove support for gcc 4.8
  110. - Switch to binutils 2.28 as the default binutils version, add
  111. support for binutils 2.29, remove support for binutils 2.26
  112. - Support added for gdb 8.0
  113. - uClibc-ng bumped to 1.0.26
  114. - CodeSourcery toolchains for x86 and SuperH have been
  115. removed, they were using a too old glibc version
  116. (2.17). External toolchains with glibc 2.17 or earlier are
  117. no longer supported.
  118. - The version selection in the glibc package has been
  119. removed. Like musl and uClibc-ng, we now use the latest
  120. glibc version.
  121. - Improved support for Xtensa toolchain overlays, which can
  122. now be downloaded.
  123. Tools:
  124. - Numerous improvements to the runtime test infrastructure
  125. - Tests are now executed by Gitlab CI on a regular basis
  126. - Tools that are directly useful to the user have been moved
  127. from support/scripts/ to utils/: brmake, check-package,
  128. get-developers, scancpan, scanpipy, size-stats-compare,
  129. test-pkg.
  130. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  131. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  132. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  133. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  134. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  135. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  136. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  137. libpwquality, libressl, libspatialindex, libva-utils,
  138. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  139. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  140. python-backports-shutil-get-terminal-size, python-bcrypt,
  141. python-cheroot, python-h2, python-hpack, python-hyperframe,
  142. python-hyperlink, python-ipython-genutils, python-pathlib2,
  143. python-pickleshare, python-priority, python-portend,
  144. python-scandir, python-systemd, python-tempora,
  145. python-traitlets, python-typepy, qt5virtualkeyboard,
  146. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  147. xr819-xradio, zstd
  148. Removed packages: cloog, input-tools, mke2img
  149. Issues resolved (http://bugs.buildroot.org):
  150. #7892: systemd-journald is broken
  151. #9341: avahi-utils does not compile with uClibc + libglib2
  152. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  153. BR2_ENABLE_DEBUG
  154. #9746: ext4 image generated by Buildroot is not working
  155. properly with U-Boot
  156. #9886: Build fails with "unexpected EOF while looking for
  157. matching `"'" if PATH contains a newline
  158. #9891: parted 3.1 => 3.2?
  159. #9911: qt5 does not build on sparc
  160. #9916: qt5 does not build on
  161. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  162. #9936: Host QEMU does not build with SDL support because of
  163. pkg-config
  164. #9941: nodejs option disappears for arm
  165. #9951: SCANCPAN failure
  166. #9966: util-linux-2.30/.stamp_built' failed
  167. #9976: License file for package 'rtl8821au' incorrect
  168. #9991: SGX Error implicit declaration of function
  169. ‘dmac_map_area’
  170. #10011: wget does not work from Buildroot
  171. #10036: Buildroot builds Raspbian Jessie headless image
  172. presenting incorrect prompt
  173. #10051: make: *** No rule to make target
  174. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  175. v2017.05.1
  176. #10056: No .config file was produced in /buildroot folder
  177. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  178. failure
  179. #10071: fakeroot: replace hard-coded paths in post install
  180. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  181. #10091: gcc7.1 does not build with graphite support due to old
  182. isl
  183. #10121: webkit without the multimedia option causes build
  184. error
  185. 2017.05.2, Released July 27th, 2017
  186. Important / security related fixes.
  187. Webkitgtk bumped to the 2.16.x series, fixing a large number
  188. of security issues.
  189. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  190. which default to PIE mode.
  191. Updated/fixed packages: aespipe, apache, bind, binutils,
  192. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  193. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  194. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  195. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  196. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  197. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  198. webkitgtk, x265, xserver_xorg-server, xvisor
  199. Issues resolved (http://bugs.buildroot.org):
  200. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  201. 2017.05.1, Released July 4th, 2017
  202. Important / security related fixes.
  203. Update support/scripts/scancpan to use METACPAN v1 API as v0
  204. has been shutdown.
  205. Update support/scripts/mkusers to handle setups where
  206. /etc/shadow is a symlink.
  207. External toolchain: Don't create musl dynamic loader symlink
  208. for static builds.
  209. Setlocalversion: Correct detection of mercurial revisions for
  210. non-tagged versions.
  211. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  212. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  213. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  214. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  215. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  216. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  217. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  218. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  219. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  220. Issues resolved (http://bugs.buildroot.org):
  221. #9976: License file for package 'rtl8821au' incorrect
  222. 2017.05, Released May 31st, 2017
  223. Minor fixes.
  224. External toolchain: musl dynamic linker symlink for mips-sf
  225. corrected.
  226. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  227. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  228. xen
  229. Issues resolved (http://bugs.buildroot.org):
  230. #9906: genimage: Disk full
  231. 2017.05-rc3, Released May 30th, 2017
  232. Fixes all over the tree.
  233. ARC toolchain bumped to 2017.03
  234. Runtime testing improvements and cleanups.
  235. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  236. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  237. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  238. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  239. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  240. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  241. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  242. xen
  243. Removed packages: firejail, ola
  244. Issues resolved (http://bugs.buildroot.org):
  245. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  246. #9876: aarch64 support with gcc 4.8 toolchain
  247. #9896: host-gcc-initial error downloading because incorrect URL
  248. 2017.05-rc2, Released May 17th, 2017
  249. Fixes all over the tree.
  250. ARC toolchain bumped to 2017.03-rc2
  251. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  252. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  253. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  254. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  255. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  256. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  257. vlc, x11vnc, xfsprogs
  258. Issues resolved (http://bugs.buildroot.org):
  259. #9796: source-check broken for Git downloads
  260. #9866: BASE_DIR usage
  261. 2017.05-rc1, Released May 8th, 2017
  262. Fixes all over the tree and new features.
  263. Infrastructure:
  264. - Installed binaries are now checked for correct architecture
  265. to catch natively built binaries or binaries built for other
  266. architecture variants.
  267. - Luarocks infrastructure improvements to extraction handling,
  268. support for upstream name != Buildroot package name.
  269. - 'make printvars' output format has changed to make it easier
  270. to use in scripts. It now has options to quote the variables
  271. and to show the expanded/unexpanded values.
  272. - Automatic ext2 rootfs size calculation has been removed. The
  273. logic was not working working reliable in all setups as it
  274. depends on the host filesystem behaviour, so instead now the
  275. size has to be specified explicitly (defaults to 60MB).
  276. - The git download infrastructure now ensures that GNU format
  277. tar files are created.
  278. - Fixed a variable clashing issue in the mkusers script with
  279. internal bash variables.
  280. - Fakeroot now links against libacl to fix issues on
  281. distributions using acls.
  282. - Correct permissions for /dev/pts/ptmx when systemd is used
  283. with recent glibc versions.
  284. - br2-external: Improve error reporting.
  285. - A wrapper script for genimage has been added in
  286. support/scripts/genimage.sh for easy use of genimage from
  287. post-image scripts.
  288. - A script to check for common style issues in new packages
  289. before submitting has been added in support/scripts/check-package
  290. - Defconfigs are now tested by gitlab-CI instead of Travis:
  291. https://gitlab.com/buildroot.org/buildroot
  292. - Infrastructure for runtime testing has been added to
  293. support/testing
  294. Toolchain:
  295. - External linaro toolchains updated to 2017.02, ARC toolchain
  296. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  297. - A number of fixes and improvements to the external toolchain
  298. handling, including C library detection, multilib and ld.so
  299. handling
  300. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  301. for uClibc-ng
  302. - Binutils 2.28 added and default changed to 2.27
  303. Architectures:
  304. - Support for the C-SKY architecture has been added.
  305. License handling:
  306. - The package license markings for legal info now uses the
  307. SPDX short identifiers for the license string where possible.
  308. - License info has been improved / added for a number of packages.
  309. Misc:
  310. - Cmake 3.7.x installed on the host is no longer ignored as a
  311. workaround for the RPATH issues has been implemented.
  312. - Docker-engine can now be built statically on an otherwise
  313. dynamic linked build for docker-in-docker setups.
  314. - U-Boot now supports out-of-tree device trees, similar to
  315. Linux
  316. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  317. been removed as this is now EOL upstream.
  318. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  319. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  320. defconfig for raspberry pi 3, stm32f429-disc1.
  321. The raspberry pi zero-w and rpi3 compute module are now also
  322. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  323. supported by the beaglebone defconfig.
  324. Removed defconfig: minnowboard, via imx6 vab820, altera
  325. socdk/sockit
  326. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  327. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  328. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  329. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  330. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  331. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  332. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  333. python-decorator, python-simplegeneric,
  334. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  335. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  336. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  337. uccp420wlan, wilink-bt-firmware
  338. Broken packages: ola
  339. Removed packages: cosmo, kodi-visualisation-fountain,
  340. polarssl, portmap, xdriver_xf86-video-glide,
  341. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  342. Issues resolved (http://bugs.buildroot.org):
  343. #8831: image generation fails on host ZFS due to "no free space"
  344. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  345. #9456: mkusers script bash errors
  346. #9496: mke2img fails during build on ntfs-3g host partition
  347. #9531: NPM fails to build embedded modules
  348. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  349. #9691: Wrong cryptsetup package include files location
  350. #9696: Wrong cryptsetup package include files location
  351. #9706: Can't download newer revisions of package from PyPI
  352. #9711: Recent libCEC version bump seems to break kodi package
  353. #9716: exit, shutdown, reboot from kodi
  354. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  355. #9726: Raspberry Pi version B - Problems with UART speed in..
  356. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  357. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  358. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  359. #9776: libubox build failed
  360. #9791: Python searches for packages in the user site directory
  361. #9806: libseccomp is not available when BR2_arm=y
  362. #9826: post-build scritp - symlinks created in post-build script..
  363. #9836: triggerhappy: systemd unit broken
  364. #9846: musl libc not installed correctly in target folder
  365. #9856: build libubox failed on ubuntu 17.04 64bit
  366. 2017.02.6, Released September 24th, 2017
  367. Important / security related fixes.
  368. Cmake: Ensure correct pkg-config is used when building host
  369. packages
  370. fs/iso9660: Ensure files from earlier builds are not included.
  371. Updated/fixed packages: apache, bcusdk, bind, binutils,
  372. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  373. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  374. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  375. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  376. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  377. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  378. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  379. postgresql, proxychains-ng, python-libconfig,
  380. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  381. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  382. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  383. xen, zmqpp
  384. Issues resolved (http://bugs.buildroot.org):
  385. #10141: Squashfs extended attribute failures
  386. #10261: Grub2 fails to build for x86_64
  387. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  388. 2017.02.5, Released July 27th, 2017
  389. Important / security related fixes.
  390. Webkitgtk bumped to the 2.16.x series, fixing a large number
  391. of security issues.
  392. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  393. which default to PIE mode.
  394. Updated/fixed packages: aespipe, apache, bind, binutils,
  395. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  396. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  397. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  398. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  399. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  400. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  401. xserver_xorg-server, xvisor
  402. Issues resolved (http://bugs.buildroot.org):
  403. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  404. 2017.02.4, Released July 4th, 2017
  405. Important / security related fixes.
  406. Update support/scripts/scancpan to use METACPAN v1 API as v0
  407. has been shutdown.
  408. Update support/scripts/mkusers to handle setups where
  409. /etc/shadow is a symlink.
  410. External toolchain: Don't create musl dynamic loader symlink
  411. for static builds.
  412. Setlocalversion: Correct detection of mercurial revisions for
  413. non-tagged versions.
  414. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  415. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  416. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  417. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  418. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  419. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  420. vlc, x264, xserver_xorg-server
  421. Issues resolved (http://bugs.buildroot.org):
  422. #9976: License file for package 'rtl8821au' incorrect
  423. 2017.02.3, Released June 2nd, 2017
  424. Important / security related fixes.
  425. Download: <pkg>-source-check fixed for packages from git.
  426. External toolchain: musl dynamic linker symlink for mips-sf
  427. corrected.
  428. Updated/fixed packages: armadillo, audiofile, bash,
  429. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  430. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  431. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  432. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  433. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  434. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  435. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  436. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  437. Issues resolved (http://bugs.buildroot.org):
  438. #9796: source-check broken for Git downloads
  439. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  440. 2017.02.2, Released May 1st, 2017
  441. Important / security related fixes.
  442. Use HTTPS for the Codesourcery external toolchains as the HTTP
  443. URLs no longer work.
  444. Updated/fixed packages: bind, busybox, dovecot, freetype,
  445. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  446. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  447. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  448. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  449. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  450. uboot, wireshark, xen
  451. Issues resolved (http://bugs.buildroot.org):
  452. #9791: Python searches for packages in the user site directory
  453. 2017.02.1, Released April 4th, 2017
  454. Important / security related fixes.
  455. Fix a variable clashing issue in the mkusers script with
  456. internal bash variables.
  457. Improve external toolchain version detection.
  458. Correct permissions for /dev/pts/ptmx when systemd is used
  459. with recent glibc versions.
  460. Fix python module name clash for graph-depends.
  461. Fakeroot now links against libacl to fix issues on
  462. distributions using acls.
  463. Ensure that the git download infrastructure creates GNU format
  464. tar files.
  465. br2-external: Improve error reporting.
  466. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  467. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  468. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  469. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  470. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  471. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  472. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  473. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  474. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  475. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  476. tcpreplay, tor, upmpdcli, wget, wireshark,
  477. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  478. Issues resolved (http://bugs.buildroot.org):
  479. #9456: mkusers script bash errors
  480. 2017.02, Released February 28th, 2017
  481. Minor fixes, mainly fixing autobuilder issues.
  482. Don't use cmake 3.7.x from the build host as it is also
  483. affected by the RPATH handling issues, and instead build our
  484. own if needed.
  485. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  486. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  487. vlc, xterm
  488. 2017.02-rc3, Released February 26th, 2017
  489. Fixes all over the tree.
  490. Cmake reverted to version 3.6.3 to workaround regressions
  491. related to RPATH handling.
  492. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  493. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  494. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  495. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  496. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  497. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  498. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  499. Issues resolved (http://bugs.buildroot.org):
  500. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  501. #9456: mkusers script bash errors
  502. #9506: Collectd 5.7.0 fails to build with libcrypt
  503. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  504. #9586: usbmount: usbmount slows down the system... to a state of...
  505. #9616: CMake host packages cannot provide CONF_ENV
  506. #9641: Need raptor package installed in staging
  507. #9671: stunnel build error
  508. 2017.02-rc2, Released February 20th, 2017
  509. Fixes all over the tree.
  510. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  511. older gcc versions for reproducible builds has been
  512. (temporarily) reverted because of licensing compatiblity
  513. concerns.
  514. Defconfigs: SD card generation fix for the Udoo Neo board
  515. Infrastructure to handle .lz compressed tarballs added, and
  516. affected packages updated to use it.
  517. Updated/fixed packages: bctoolbox, bind, canelloni,
  518. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  519. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  520. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  521. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  522. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  523. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  524. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  525. xserver_xorg-server
  526. Issues resolved (http://bugs.buildroot.org):
  527. #8941: Valgrind fails to build with stack protection turned on
  528. #9291: perl: SysV message queues not configured, even if available
  529. #9651: libxcb-1.12 built Error
  530. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  531. #9666: qt5quickcontrols install fails
  532. 2017.02-rc1, Released February 11th, 2017
  533. Fixes all over the tree and new features.
  534. Infrastructure:
  535. - numerous improvements to support reproducible builds
  536. - new waf-package package infrastructure to support packages
  537. that use the Waf build system. 6 packages converted to
  538. this infrastructure.
  539. - add option <pkg>_PREFER_INSTALLER to the perl package
  540. infrastructure
  541. Architecture:
  542. - add support for the OpenRISC CPU architecture
  543. - merge description of the ARM and ARM64 options, and add
  544. support for selecting a specific ARM64 core
  545. Toolchain:
  546. - major rework of the external toolchain support. It is now
  547. split into several packages, one per external toolchain,
  548. and a common infrastructure.
  549. - important fix for musl to prevent a conflict between musl
  550. and kernel headers (fixes the build of numerous packages
  551. with musl)
  552. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  553. for ARM64, mips32r6 and mips64r6
  554. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  555. - Linaro toolchains updated to 2016.11, ARC toolchain
  556. components updated to arc-2016.09, MIPS Codescape
  557. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  558. NIOS2 toolchains bumped
  559. - remove Analog Devices toolchain for the Blackfin
  560. architecture, remove pre-built musl toolchains from
  561. musl.codu.org
  562. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  563. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  564. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  565. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  566. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  567. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  568. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  569. pru-software-support, python-arrow, python-attrs,
  570. python-babel, python-bitstring, python-chardet,
  571. python-constantly, python-flask-babel, python-gunicorn,
  572. python-incremental, python-jsonschema, python-logbook,
  573. python-markdown2, python-mbstrdecoder, python-mutagen,
  574. python-pathpy, python-pudb, python-pyqrcode,
  575. python-pytablereader, python-setuptools-scm, python-sh,
  576. python-toml, python-vcversioner, python-whoosh,
  577. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  578. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  579. upower, ustream-ssl, waf, xlib_libXfont2
  580. Removed packages: perl-db-file, snowball-hdmiservice,
  581. snowball-init
  582. Tooling: addition of a test-pkg script to help contributors
  583. build test their package.
  584. Issues resolved (http://bugs.buildroot.org):
  585. #8946: Valgrind fails to build with stack protection turned on
  586. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  587. #9466: VIM_REMOVE_DOCS removes rgb.txt
  588. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  589. #9501: eudev fails to build with older kernel headers
  590. #9526: Embedded NPM fails to start with "no such file or directory" error
  591. #9541: Platform drivers autoloading from info in device tree does not work
  592. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  593. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  594. #9566: [kmod] Compilation fails with uclibc
  595. #9571: buildroot fails while building opencv for arm64 platform
  596. #9576: External tree with BR 2016.11 does not work anymore
  597. #9606: xorg-server cannot build for ARM target
  598. 2016.11.3, Released March 9th, 2017
  599. Important / security related fixes.
  600. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  601. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  602. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  603. 2016.11.2, Released January 25th, 2017
  604. Important / security related fixes.
  605. A fix for BR2_EXTERNAL trees referenced using relative paths,
  606. which broke in 2016.11.
  607. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  608. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  609. php-imagick, rabbitmq-server, runc, wireshark,
  610. Issues resolved (http://bugs.buildroot.org):
  611. #9576: External tree with BR 2016.11 does not work anymore
  612. 2016.11.1, Released December 29th, 2016
  613. Important / security related fixes.
  614. Updated/fixed packages: apache, cryptopp, docker-engine,
  615. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  616. nodejs, openssh, php, python, python-bottle, samba4, squid,
  617. uboot, vim, wireshark, xorg-server uboot
  618. Issues resolved (http://bugs.buildroot.org):
  619. #9466: VIM_REMOVE_DOCS removes rgb.txt
  620. 2016.11, Released November 30th, 2016
  621. Minor fixes.
  622. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  623. uboot, uclibc
  624. Issues resolved (http://bugs.buildroot.org):
  625. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  626. 2016.11-rc3, Released November 28th, 2016
  627. Fixes all over the tree, including a number of security fixes.
  628. The move from fakeroot to pseudo unfortunately brought a
  629. number of issues. The SELinux issue described in #9386 which
  630. triggered the move to pseudo has been investigated further and
  631. a workaround implemented and the pseudo changes reverted.
  632. Linux kernel: update default to 4.8.11.
  633. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  634. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  635. vdk, axs101, axs103 and hs38 smd vdk.
  636. Updated/fixed packages: autossh, chrony, dosfstools,
  637. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  638. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  639. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  640. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  641. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  642. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  643. xapp_xload, xenomai, xmlstarlet
  644. Issues resolved (http://bugs.buildroot.org):
  645. #9386: ubinize fails with or without custom config
  646. #9431: A misspelling
  647. #9446: make raspberrypi3_defconfig compilation failure
  648. 2016.11-rc2, Released November 13th, 2016
  649. Fixes all over the tree.
  650. Architecture: add support for MIPS XBurst cores; remove MIPS
  651. support for M5100 cores.
  652. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  653. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  654. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  655. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  656. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  657. strace, openjpeg, lcms2, quota.
  658. Linux kernel: update default to 4.8.7.
  659. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  660. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  661. of fakeroot; makedevs no longer breaks of the destination already
  662. exists and is of the correct type/major/minor.
  663. Defconfigs: a few legacy and broken defconfigs have been removed
  664. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  665. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  666. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  667. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  668. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  669. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  670. atmel_sama5d3xek.
  671. 2016.11-rc1, Released November 3rd, 2016
  672. Fixes all over the tree and new features.
  673. It is now possible to specify multiple BR2_EXTERNAL
  674. directories. The required files in a BR2_EXTERNAL directory
  675. have changed to accomodate this feature. Refer to the
  676. documentation for details of how to update them. External
  677. trees now have a name and a description. Also, it is possible
  678. to override a defconfig in the external tree.
  679. The default skeleton now uses UID 65534 for the "nobody"
  680. user instead of UID 99, like most distros do. See
  681. https://lwn.net/Articles/695478/ for a complete discussion.
  682. Programs and configuration files that explicitly refer to UID
  683. 99 will have to be updated.
  684. When the build environment already has a suitable cmake version
  685. (3.1 or later), that one will be used instead of building
  686. host-cmake. This can speed up the build significantly.
  687. The ExtUtils::MakeMaker perl module is now required in the
  688. build environment.
  689. An additional check is done during the build that files are
  690. not installed in the output directory within the output
  691. directory. This happens e.g. when the target directory is
  692. contained both in --prefix and in DESTDIR. The build will
  693. terminate with an error message that specifies which package
  694. and which file caused the failure.
  695. The concept of "deprecated packages" and the BR2_DEPRECATED
  696. option have been removed. Instead, packages are removed
  697. immediately. Packages are only removed when they don't work
  698. for some reason. If you still need a removed package and
  699. you have a solution for the problem(s) that caused the
  700. removal, please contribute it.
  701. Architecture: support for sh64 removed, improved support for
  702. MIPS core selection.
  703. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  704. toolchains, ARC toolchain components updates, gcc 6.x series
  705. bumped to 6.2.0, default binutils version switched to 2.26,
  706. default gcc version switched to gcc 5.x, Linaro toolchains
  707. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  708. with TLS support. Checking of unsafe compiler options (that
  709. point to host directories) has been extended with -isystem,
  710. -idirafter and -iquote.
  711. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  712. of <pkg>-show-rdepends to list reverse dependencies, and
  713. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  714. are now in a separate linux-tools package instead of in the
  715. kernel build. Fakeroot has been replaced by pseudo.
  716. CMake support: the toolchainfile.cmake file now provides a
  717. definition of the CMAKE_BUILD_TYPE variable. The
  718. toolchainfile.cmake also no longer forces the compiler/linker
  719. flags defined by Buildroot.
  720. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  721. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  722. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  723. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  724. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  725. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  726. python-crcmod, python-cssutils, python-docutils,
  727. python-futures, python-mwclient, python-mwscrape,
  728. python-mwscrape2slob, python-pyelftools, python-pyicu,
  729. python-pylru, python-pyqt5, python-requests-toolbelt,
  730. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  731. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  732. gpio linux tools.
  733. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  734. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  735. wvdial, wvstreams.
  736. Documentation: the list of packages that was present in the
  737. Buildroot manual has been removed.
  738. Legal info: the "licenses.txt" file that concatenates all
  739. license texts is no longer generated - it was not considered
  740. useful. The manifest.csv contains an empty cell instead of
  741. "not saved" when no license file is available.
  742. Other: addition of a DEVELOPERS file listing developers taking
  743. care of packages or architectures.
  744. Issues resolved (http://bugs.buildroot.org):
  745. #7802: host-python build hangs compiling getbuildinfo.o
  746. #8206: mplayer uses host xorg development files
  747. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  748. #8536: Building sudo with PAM results in unusable sudo
  749. #8646: check-host-rpath script returns false positives when rpath
  750. contains symlink
  751. #8696: xdriver_xf86-input-mouse install header files in target
  752. directory
  753. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  754. not necessarily TARGET
  755. #8846: Orphaned/missing toolchain borks eclipse plugin
  756. #8856: python tornado runtime wasn't met on buildroot 2016.02
  757. #8901: gcc failes to build if fortran is enabled
  758. #8916: LDFLAGS pass to openssh
  759. #8941: "ls" of an NFSv4 share only works when pumped through strace
  760. #8946: Valgrind fails to build with stack protection turned on
  761. #9021: Kodi - Broken: Illegal instruction (core dumped)
  762. #9096: rootfs.ubi not created
  763. #9111: glibc 2.23: libmvec.so not copied
  764. #9176: minnowboard : USB not mounted
  765. #9196: raspberry pi 3 default build seem broken
  766. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  767. Buildroot-2015.08.1
  768. #9216: log4cpp package build fails to build within install
  769. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  770. pressing buttons.
  771. #9229: Firefly boot fails with: "failed to find part:boot"
  772. #9256: [Config file] New device: Odroid-U2/U3
  773. #9296: Buildroot Fails on applying patches
  774. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  775. #9316: U-boot fails to build if libssl-dev is not installed
  776. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  777. flash utility (tegrarcm)
  778. #9326: Odroid-C2 build results in non-bootable image
  779. #9336: Improve iconv support for external toolchain based builds
  780. #9356: gdb package
  781. #9366: no link rootfs.ext4 -> rootfs.ext2
  782. #9371: openssl: download failes with "Only allow downloads from primary
  783. download site" + local server
  784. #9381: check-host-rpath issues
  785. #9386: ubinize fails with or without custom config
  786. 2016.08, Released September 1st, 2016
  787. Minor fixes.
  788. Toolchain: ARC tools updated to arc-2016.09-eng010.
  789. Updated/fixed packages: libshout, luajit, mpd, mplayer
  790. Issues resolved (http://bugs.buildroot.org):
  791. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  792. #8341: Getting EGL Error: Could not create the egl surface:..
  793. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  794. 2016.08-rc3, Released August 29th, 2016
  795. Fixes all over the tree.
  796. Toolchain: C++ support for the internal blackfin toolchain
  797. re-enabled.
  798. Architecture: Default to bf532 CPU variant for blackfin,
  799. Fix flat one memory region support for m68k and disable flat
  800. seperate data support because of compatibility issues.
  801. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  802. post-build scripts when systemd is used.
  803. Zynq microzed/zc706/zed: Fix u-booot configuration.
  804. netbsd-queue package extended and renamed to
  805. musl-compat-headers. With this, a number of musl compatibility
  806. patches are no longer needed.
  807. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  808. bcusdk, binutils, boa, busybox, connman, cpupower,
  809. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  810. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  811. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  812. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  813. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  814. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  815. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  816. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  817. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  818. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  819. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  820. webkitgtk, wireshark, xdriver_xf86-video-intel
  821. Issues resolved (http://bugs.buildroot.org):
  822. #9101: Error on support/download/git with system git older than 1.8.4
  823. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  824. 2016.08-rc2, Released August 17th, 2016
  825. Fixes all over the tree.
  826. Toolchain: disable broken C++ support for internal blackfin
  827. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  828. to fix various issues.
  829. System: Zoneinfo is available for the musl C library as well.
  830. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  831. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  832. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  833. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  834. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  835. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  836. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  837. sg3_utils, spidev_test, systemd-bootchart, thrift,
  838. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  839. xdriver_xf86-video-savage, xserver_xorg-server, xen
  840. Issues resolved (http://bugs.buildroot.org):
  841. #9136: make graph-size fails with "ValueError: too many values to..
  842. #9151: qt: fix build with ALSA >= 1.1.x
  843. #9156: qt: Fix missing runtime Qt3Support dependency
  844. #9161: modsetting patch not applied to xserver 1.18.4
  845. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  846. 2016.08-rc1, Released August 6th, 2016
  847. Fixes all over the tree and new features.
  848. Toolchain: Fortran support added. eglibc support removed, musl
  849. support no longer experimental. Blackfin and Microblaze
  850. support for internal uClibc-ng toolchain, m68k/coldfire
  851. improvements. The check for unsafe (build host) directories
  852. access (/usr/include and /usr/lib) is now enabled by default.
  853. Unused locales are now purged by default to save space (and
  854. the default list of locales shrunk). The option to control
  855. this has now moved from the toolchain menu to system
  856. configuration.
  857. Legal info improvements: sources are now hardlinked instead of
  858. copied if possible to save space. Patches and extra downloads
  859. are also saved.
  860. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  861. added to make the builds more reproducible (E.G. less
  862. differences in the binary output between builds of the same
  863. configuration). This is still work in progress.
  864. An option to execute a custom script inside the fakeroot
  865. environment used to the generate the filesystem (E.G. to tweak
  866. permissions or similar) has been added.
  867. Git support now supports git submodules if
  868. <pkg>_GIT_SUBMODULES is enabled.
  869. Hash files for integritry validation have been added for all
  870. packages.
  871. Scanpypi utility to help creating packages from the Python
  872. package index (pypi) has been added.
  873. The makedevs utility now has support for adding file
  874. capabilities using extended attributes.
  875. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  876. development configs, Blackfin GDB simulator, Linksprite
  877. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  878. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  879. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  880. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  881. demos. A number of defconfigs have been updated and extended
  882. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  883. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  884. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  885. circus, dante, docker-containerd, docker-engine, domoticz,
  886. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  887. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  888. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  889. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  890. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  891. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  892. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  893. p7zip, pdbg, python-argh, python-dataproperty,
  894. python-dateutil, python-dialog3, python-dicttoxml,
  895. python-dominate, python-engineio, python-flask-jsonrpc,
  896. python-flask-login, python-humanize, python-pathtools,
  897. python-pathvalidate, python-pillow, python-prompt-toolkit,
  898. python-pytablewriter, python-pytz, python-scapy3k,
  899. python-sdnotify, python-socketio, python-tomako,
  900. python-ubjson, python-u-msgpack, python-watchdog,
  901. python-wcwidth, python-xlrd, python-xlsxwriter,
  902. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  903. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  904. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  905. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  906. wiringpi, xen
  907. Deprecated packages: ipkg, sstrip
  908. Removed packages: sunxi-mali-prop
  909. Issues resolved (http://bugs.buildroot.org):
  910. #8931: segment fault when compile argp-help.c using aarch64-bu...
  911. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  912. #8971: build for beaglebone fails
  913. #8986: qt5imageformats fails to build on AArch64
  914. #8991: grub2 fails to compile
  915. #9001: Nodejs option not available
  916. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  917. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  918. #9066: 8139TOO - faulty behaviour
  919. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  920. #9091: U-Boot fails to boot with large ramdisk
  921. 2016.05, Released May 31st, 2016
  922. Minor fixes.
  923. External toolchain: Fix for symlink handling when copying
  924. links to target.
  925. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  926. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  927. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  928. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  929. xdriver_xf86-video-fbturbo, xserver_xorg-server
  930. 2016.05-rc3, Released May 26th, 2016
  931. Fixes all over the tree.
  932. Tweaks for SSP handling for external toolchains.
  933. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  934. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  935. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  936. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  937. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  938. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  939. postgresql, putty, python-service-identity, python-treq,
  940. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  941. ustr, valgrind, webkitgtk, libxml2, xorriso,
  942. xserver_xorg-server
  943. Issues resolved (http://bugs.uclibc.org):
  944. #8936: Aircrack-ng - Alot of missing dependencies
  945. 2016.05-rc2, Released May 17th, 2016
  946. Fixes all over the tree.
  947. Rootfs overlay handling now refuses to overwrite
  948. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  949. even if these directories are present in the overlay.
  950. External toolchain: Unbreak user provided libraries deployment
  951. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  952. QEMU coldfire: Fix for signal handling kernel issue, enable
  953. networking support.
  954. Updated/fixed packages: android-tools, assimp, boost, gcc,
  955. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  956. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  957. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  958. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  959. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  960. 2016.05-rc1, Released May 10th, 2016
  961. Fixes all over the tree and new features.
  962. Architectures: new ARM variants: Cortex A17 and M4, improved
  963. nonmmu (cortex-M) support, m68k has been re-enabled with
  964. support for ColdFire. For x86, support for the i386 variant
  965. has been dropped.
  966. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  967. deprecated. Go programming language support, Add Binutils 2.26
  968. support. Old Sourcery PowerPC external toolchains removed,
  969. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  970. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  971. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  972. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  973. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  974. added for m68k, eXtensa-nommu and ColdFire.
  975. Linux: use zImage by default on ARM, subversion repository
  976. support (for u-boot as well).
  977. New packages: aer-inject, android-tools, cannelloni,
  978. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  979. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  980. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  981. kodi-adsp-basic, kodi-adsp-freesurround,
  982. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  983. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  984. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  985. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  986. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  987. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  988. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  989. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  990. python-autobahn, python-characteristic, python-crossbar,
  991. python-cryptography, python-iniparse, python-iowait,
  992. python-lmdb, python-pexpect, python-ptyprocess,
  993. python-pyasn-modules, python-pygments, python-pymysql,
  994. python-pynacl, python-pyopenssl, python-pysocks,
  995. python-pytrie, python-rpi-gpio, python-service-identity,
  996. python-setproctitle, python-shutilwhich, python-treq,
  997. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  998. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  999. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  1000. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  1001. xdriver_xf86-video-amdgpu
  1002. Removed packages: foomatic-filters, python-m2crypto,
  1003. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  1004. Issues resolved (http://bugs.buildroot.org):
  1005. #6830: Qt5: no fonts are installed
  1006. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  1007. #7580: Invalid filesystem in Pandaboard defconfig
  1008. #8346: wf111 package removes all kernel module dependencies
  1009. #8436: xserver_xorg-server Segmentation fault
  1010. #8736: IPV6 forced on in busybox
  1011. #8746: At startup system stops with 'cannot set terminal proces..
  1012. #8751: make fail [fio does not build on sh]
  1013. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  1014. #8771: make savedefconfig modifies sources
  1015. #8781: Unable to build uboot for imx28evk
  1016. #8786: gdb fails to build with xz and expat support at the same
  1017. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  1018. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  1019. #8836: Can't select Vim in menuconfig
  1020. #8851: Make sure fio can compile with libaio support if it...
  1021. #8861: With buildroot 2016.02 trying to build for corei7-avx
  1022. fails while trying to build host-binutils
  1023. #8866: Making an USB flash bootable with extlinux build with
  1024. buildroot does not work
  1025. 2016.02, Released March 1st, 2016
  1026. Minor fixes, mostly security related.
  1027. Circular dependency issue with same-as-kernel linux-headers
  1028. option fixed.
  1029. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  1030. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  1031. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  1032. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  1033. 2016.02-rc3, Released February 27th, 2016
  1034. Fixes all over the tree.
  1035. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  1036. where VFP is optional (but present on the specific hw). Fix
  1037. ARM variant selection for freescale_imx31_3stack_defconfig.
  1038. Ensure tarballs of downloaded git trees do not contain a
  1039. timestamp.
  1040. Clarify license of patches in COPYING.
  1041. Updated/fixed package: avahi, binutils, cairo, can-festival,
  1042. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  1043. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  1044. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  1045. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  1046. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  1047. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  1048. omniorb, openipmi, openobex, patch, pax-utils, perf,
  1049. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  1050. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  1051. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  1052. wpa_supplicant, xerces, zsh
  1053. Issues resolved (http://bugs.uclibc.org):
  1054. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  1055. 2016.02-rc2, Released February 18th, 2016
  1056. Fixes all over the tree.
  1057. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  1058. crash, backport of Xtensa .init/.fini literals handling.
  1059. glibc security patches for CVE-2014-8121, CVE-2015-1781
  1060. and CVE-2015-7547.
  1061. Defconfigs for Acmesystems Arietta g25 added.
  1062. Updated/fixed packages: binutils, boost, chrony, dovecot,
  1063. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  1064. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  1065. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  1066. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  1067. Issues resolved (http://bugs.uclibc.org):
  1068. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  1069. #8606: Problem compiling on Arch Linux
  1070. #8681: kbd 2.0.3 does not build on rpi
  1071. 2016.02-rc1, Released February 10th, 2016
  1072. Fixes all over the tree and new features.
  1073. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  1074. arc-2015.12. Support for legacy uClibc dropped, default to
  1075. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  1076. for compatibility. Updated versions of Code sourcery and
  1077. Linaro toolchains. MIPS Codescape toolchains added. Version
  1078. selection for preconfigured external toolchains removed.
  1079. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  1080. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  1081. A number of defconfigs have been extended to generate complete
  1082. system images using genimage.
  1083. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  1084. which isn't compatible with modern perl versions, breaking the
  1085. build when building on recent (Fedora 23, Debian
  1086. Testing/Unstable, ..) distributions.
  1087. Makedevs utility now accepts textual (non-numerical) user and
  1088. group names.
  1089. Vagrant file to easily setup a working development environment
  1090. in a VM has been added.
  1091. Size-stats-compare script to compare rootfs sizes between
  1092. builds has been added.
  1093. Infozip package renamed to zip. EFL packages restructured.
  1094. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  1095. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  1096. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  1097. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  1098. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  1099. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  1100. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  1101. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  1102. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  1103. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  1104. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  1105. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  1106. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  1107. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  1108. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  1109. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  1110. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  1111. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  1112. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  1113. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  1114. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  1115. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  1116. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  1117. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  1118. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  1119. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  1120. jquery-sparkline, jquery-ui, jquery-ui-themes,
  1121. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  1122. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  1123. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  1124. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  1125. libedbus, libedit, libedje, libeet, libefreet, libeina,
  1126. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  1127. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  1128. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  1129. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  1130. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  1131. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  1132. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  1133. libraw, libraw1394, librsvg, libseccomp, libsecret,
  1134. libserialport, libsigc, libsigrok, libsigrokdecode,
  1135. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  1136. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  1137. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  1138. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  1139. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  1140. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  1141. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  1142. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  1143. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  1144. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  1145. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  1146. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  1147. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  1148. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  1149. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  1150. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  1151. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  1152. openldap, openntpd, openobex, openocd, openpgm,
  1153. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  1154. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  1155. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  1156. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  1157. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  1158. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  1159. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  1160. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  1161. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  1162. python-mako, python-msgpack, python-psutil, python-pyasn,
  1163. python-pycparser, python-pydal, python-pyftpdlib,
  1164. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  1165. python-serial, python-setuptools, python-six, python-spidev,
  1166. python-tornado, python-twisted, python-web2py, python-webpy,
  1167. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  1168. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  1169. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  1170. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  1171. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  1172. qt5webkit-examples, qt5websockets, qt5x11extras,
  1173. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  1174. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  1175. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  1176. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  1177. smack, snowball-init, socat, sp-oops-extract, sqlite,
  1178. squashfs, squeezelite, squid, sredird, sshfs,
  1179. start-stop-daemon, strace, strongswan, stunnel, subversion,
  1180. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  1181. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  1182. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  1183. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  1184. udpcast, unionfs, upmpdcli, usb_modeswitch,
  1185. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  1186. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  1187. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  1188. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  1189. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  1190. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  1191. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  1192. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  1193. xfont_encodings, xfont_font-adobe-100dpi,
  1194. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  1195. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  1196. xfont_font-alias, xfont_font-arabic-misc,
  1197. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  1198. xfont_font-bh-lucidatypewriter-100dpi,
  1199. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  1200. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  1201. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  1202. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  1203. xfont_font-daewoo-misc, xfont_font-dec-misc,
  1204. xfont_font-ibm-type1, xfont_font-isas-misc,
  1205. xfont_font-jis-misc, xfont_font-micro-misc,
  1206. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  1207. xfont_font-misc-meltho, xfont_font-misc-misc,
  1208. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  1209. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  1210. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  1211. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  1212. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  1213. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  1214. ympd, zeromq, zic, znc, zsh,
  1215. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  1216. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  1217. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  1218. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  1219. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  1220. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  1221. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  1222. obsidian-cursors, openal, openbox, pangomm,
  1223. python-backports-abc, python-beautifulsoup4, python-cbor,
  1224. python-click, python-cssselect, python-ecdsa, python-html5lib,
  1225. python-idna, python-ipaddress, python-mistune, python-netaddr,
  1226. python-paho-mqtt, python-paramiko, python-pyparted,
  1227. python-pysmb, python-pyudev, python-singledispatch,
  1228. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  1229. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  1230. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  1231. Removed packages: libungif, python-pyxml,
  1232. Issues resolved (http://bugs.uclibc.org):
  1233. #7886: gettext: link failure with locally-installed libxml2
  1234. #7892: systemd-journald is broken
  1235. #8066: nodejs crashes when built with gcc 4.9
  1236. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  1237. #8501: gunzip fails to uncompress files
  1238. #8541: fail to build host-fakeroot-1.20.2
  1239. #8546: build instructions for raspberry pi don't work
  1240. #8571: strace for ARC compile error
  1241. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  1242. #8616: Fail to build for raspberrypi_defconfig with big endian
  1243. #8621: sqlite package, properly enable readline
  1244. 2015.11, Released November 30th, 2015
  1245. Minor fixes.
  1246. Merged/seperate /usr handling is now also performed for
  1247. staging so cross-gdb / gdbserver can find the libraries.
  1248. Updated/fixed packages: autossh, conntrack-tools, dcron,
  1249. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  1250. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  1251. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  1252. zmqpp
  1253. Issues resolved (http://bugs.uclibc.org):
  1254. #8441: Invalid directory for X11 fonts in target (RPi2)
  1255. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  1256. 2015.11-rc3, Released November 26th, 2015
  1257. Fixes all over the tree.
  1258. We have a new modern website!
  1259. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  1260. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  1261. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  1262. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  1263. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  1264. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  1265. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  1266. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  1267. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  1268. yajl, zmqpp
  1269. Issues resolved (http://bugs.uclibc.org):
  1270. #6872: gpsd: disabled on microblaze
  1271. #8321: invalid opcode error with minidlna and ffmpeg
  1272. #8336: Default systemd configuration fails to boot correctly in 2015-08
  1273. #8446: rpi-userland failed to build with glibc 2.22
  1274. 2015.11-rc2, Released November 19th, 2015
  1275. Fixes all over the tree.
  1276. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  1277. their libraries, fixing issues on recent Fedora.
  1278. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  1279. with ${TARGET}-cc after the move to use a toolchain wrapper
  1280. for the internal toolchain.
  1281. Appy-patches.sh now correctly applies all files listed in
  1282. series files.
  1283. Fixes for merged /usr handling when a custom skeleton is used.
  1284. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  1285. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  1286. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  1287. libecore, libgudev, libnss, libpng, libserial, libssh2,
  1288. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  1289. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  1290. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  1291. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  1292. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  1293. ushare, wine, wpa_supplicant, x265,
  1294. xdriver_xf86-video-siliconmotion, zxing-cpp
  1295. Issues resolved (http://bugs.uclibc.org):
  1296. #4790: Running udhcpc on a system with NFS root kills NFS
  1297. #8456: Building host-pkgconf on Fedora 23 fails due to..
  1298. 2015.11-rc1, Released November, 7th 2015
  1299. Fixes all over the tree and new features.
  1300. Architectures:
  1301. - Support for sparc64 added (internal toolchain with glibc
  1302. only).
  1303. - Support for mips32r6 and mips64r6 added.
  1304. - Support for Intel Quark X1000 CPU.
  1305. - Switch to EABIhf by default on ARM when a VFP is available.
  1306. Toolchains:
  1307. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  1308. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  1309. - The toolchain wrapper which was used only for external
  1310. toolchains is now also used for Buildroot internal
  1311. toolchains. This allowed to fix the ccache support, prepare
  1312. the way for top-level parallel build support and remove gcc
  1313. patches used to detect header/library path poisoning.
  1314. - Remove Analog Devices Blackfin toolchain 2012R2.
  1315. - Fix several Xtensa build failures by switching from
  1316. text-section-literals to auto-litpools.
  1317. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  1318. rather than a specific fork.
  1319. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  1320. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  1321. x86_64 hosts.
  1322. Bootloaders:
  1323. - Fix ARM64 support in U-Boot.
  1324. Defconfigs:
  1325. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  1326. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  1327. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  1328. Synopsys AArch64 VDK virtual platform.
  1329. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  1330. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  1331. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  1332. raspberrypi2, riotboard, snps_axs10*, wandboard.
  1333. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  1334. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  1335. Infrastructure:
  1336. - Support for fetching from Mercurial tags fixed.
  1337. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  1338. module support to be enabled in the kernel when a package
  1339. builds out-of-tree kernel modules (through the
  1340. pkg-kernel-module infrastructure or on its own).
  1341. - Improve the perl package infrastructure to automatically add
  1342. the dependency to the perl interpreter to target perl module
  1343. packages.
  1344. - Remove trailing slashes in <pkg>_SITE and addition of a
  1345. check to ensure such trailing slashes are no longer added.
  1346. - Extend the legal infrastructure to allow packages to declare
  1347. their actual source code. This is useful for packages for
  1348. which <pkg>_SOURCE points to pre-built binaries (as is the
  1349. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  1350. variable allows to point to the source code in such cases.
  1351. - Improved ccache support, thanks to the usage of a toolchain
  1352. wrapper for internal toolchain. Now a single cache directory
  1353. can be shared between different Buildroot builds.
  1354. - Addition of a 'graph-size' make targets, which generates a
  1355. PDF graph of per-package size of the root filesystem.
  1356. - Addition of <pkg>_EXCLUDES so that packages can request
  1357. certain parts of the source code tarball to not be
  1358. extracted. This feature is currently used by gcc and
  1359. toolchain-external.
  1360. - Packages can now use the <pkg>_PKGDIR variable, provided by
  1361. the package infrastructure, to reference their package
  1362. directory, instead of explicitly using package/<pkg>/.
  1363. Filesystems:
  1364. - Add high lz4 compression to squashfs.
  1365. - Simplification of shell profile files in the default
  1366. skeleton.
  1367. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  1368. server packages create these when needed.
  1369. - Add support for /bin, /sbin and /lib to be symlinks to their
  1370. corresponding directories in /usr. This is enforced for
  1371. systemd configurations, and optional for other
  1372. configurations.
  1373. - Support for AXFS filesystem image generation added.
  1374. - New options to add extra space/inodes to ext2/3/4 images.
  1375. Updated/fixed packages:
  1376. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  1377. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  1378. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  1379. collectd, connman, conntrack-tools, coreutils, cpio,
  1380. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  1381. dhrystone, dillo, directfb, directfb-examples, dmraid,
  1382. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  1383. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  1384. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  1385. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  1386. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  1387. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  1388. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  1389. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  1390. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  1391. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  1392. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  1393. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  1394. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  1395. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  1396. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  1397. kodi-pvr-stalker, kodi-pvr-vbox,
  1398. kodi-visualisation-waveforhue, less, lftp, libbluray,
  1399. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  1400. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  1401. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  1402. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  1403. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  1404. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  1405. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  1406. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  1407. linux, linux-firmware, linux-fusion, linux-headers,
  1408. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  1409. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  1410. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  1411. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  1412. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  1413. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  1414. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  1415. perl-crypt-openssl-random, perl-http-message,
  1416. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  1417. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  1418. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  1419. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  1420. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  1421. python-networkmanager, python-numpy, python-pyparsing,
  1422. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  1423. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  1424. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  1425. samba4, sane-backends, sconeserver, sdl, sed, setools,
  1426. shairport-sync, shared-mime-info, sland, smartmontools,
  1427. softether, spice-protocol, sqlcipher, sqlite, squid,
  1428. strongswan, stunnel, subversion, sudo, sunxi-tools,
  1429. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  1430. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  1431. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  1432. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  1433. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  1434. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  1435. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  1436. xtables-addons, xterm, xz, zic, znc, zsh
  1437. New packages:
  1438. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  1439. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  1440. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  1441. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  1442. libg7221, libhttpparser, libilbc, libldns, libmng,
  1443. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  1444. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  1445. micropython, micropython-libs, python-pyratemp,
  1446. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  1447. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  1448. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  1449. Removed packages:
  1450. blackbox (was deprecated), divine (merged in directfb),
  1451. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  1452. sawman (merged in directfb), schifra (marked broken since a
  1453. long time), texinfo (host variant only, no longer used), zxing
  1454. (replaced by zxing-cpp),
  1455. Issues resolved (http://bugs.uclibc.org):
  1456. #4099: cut utility from GNU coreutils works incorrect
  1457. #7772: libxml-parser-perl build failure: missing dependency
  1458. ExtUtils/MakeMaker
  1459. #7931: Default configuration for Cubieboard v1 is outdated
  1460. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  1461. not coming up
  1462. #8246: X.org DRI2 build issue
  1463. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  1464. of the generated one
  1465. #8266: mplayer build issue
  1466. #8281: pyrexc fails to run when path is too long
  1467. #8316: lttng-tools and lttng-babeltrace executables contain
  1468. bad RPATH pointing to host machine
  1469. #8331: kexec wants shutdown in /sbin, but systemd installs it
  1470. in /usr/sbin
  1471. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  1472. busybox's version
  1473. #8366: libevent does not build
  1474. #8386: build failed with external toolchain
  1475. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  1476. #8396: CCACHE initialization
  1477. #8401: gpsd 3.15 NMEA support
  1478. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  1479. #8421: util-linux installs systemd files in output/target/home/
  1480. 2015.08, Released August 31st, 2015
  1481. Minor fixes.
  1482. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  1483. reintroduced as opencv.
  1484. Updated/fixed packages: bootutils, canfestival, cppcms,
  1485. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  1486. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  1487. ltrace, midori, network-manager, openssh, perl-file-listing,
  1488. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  1489. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  1490. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  1491. x264, xserver_xorg-server, zyre
  1492. 2015.08-rc2, Released August, 24th 2015
  1493. Fixes all over the tree.
  1494. Toolchain: fix gcc build on NIOS-II.
  1495. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  1496. hybrid ISO image generation.
  1497. Architectures: add arm1136j-s variant.
  1498. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  1499. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  1500. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  1501. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  1502. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  1503. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  1504. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  1505. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  1506. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  1507. postgresql, powertop, protobuf, protobuf-c, qt5base,
  1508. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  1509. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  1510. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  1511. Issues resolved (http://bugs.uclibc.org):
  1512. #8276: package/dropbear: symlink resolution incorrect
  1513. #8286: Error with buildroot
  1514. #8301: ldconfig parameter in Makefile
  1515. 2015.08-rc1, Released August, 5th 2015
  1516. Fixes all over the tree and new features.
  1517. Architectures:
  1518. - Refactor how the availability of an MMU is described.
  1519. - Minimal support for Cortex-M3
  1520. - Minimal support for AArch64 big-endian
  1521. Toolchains:
  1522. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  1523. - Use uClibc-ng as the default uClibc version, instead of the
  1524. official uClibc, which hasn't done any release since 3+
  1525. years
  1526. - eglibc is now marked as deprecated
  1527. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  1528. support for gcc 5.x added.
  1529. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  1530. bumped to 2.25.1, remove old Binutils 2.22.
  1531. - Update ARC toolchain components to 2015.06
  1532. - Add support for Fortran when building gcc
  1533. Bootloaders:
  1534. - Support for using the kconfig configuration system in
  1535. U-Boot
  1536. New Defconfigs:
  1537. - VIA VAB-820/AMOS-820
  1538. - OLimex OLinuxino A20 Lime
  1539. - Many new defconfigs for Atmel evaluation boards:
  1540. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  1541. Xplained Ultra, sama5d3 Xplained.
  1542. - ACME Systems Aria G25
  1543. - WarPboard
  1544. - Altera Cyclone 5 Development Board
  1545. - Xilinx zc706
  1546. - ARC AXS101 and AXS103 Software Development Platforms
  1547. - Significant updates to Raspberry Pi / Raspberry Pi 2
  1548. Infrastructure:
  1549. - Buildroot takes better care now of generating predictable
  1550. permissions in the target filesystem. However, existing
  1551. permissions on a custom skeleton or rootfs overlay will no
  1552. longer be preserved. Therefore, it is necessary to add a
  1553. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  1554. required permissions.
  1555. - Add support for kconfig fragments.
  1556. - No longer pass --{enable,disable}-debug to autotools
  1557. packages depending on the value of
  1558. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  1559. whether we build with -g or not.
  1560. - Support for extracting archives in .lzma in the generic
  1561. package infrastructure.
  1562. - Remove random-seed file from the default skeleton, since
  1563. seeding the entropy pool with a known seed makes more harm
  1564. than good.
  1565. - In the CVS download helper, add support to use a date as
  1566. the version.
  1567. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  1568. variable, which packages can use to specify how many path
  1569. components should be stripped when extracting the tarball.
  1570. - Addition of a 'kernel-module' package infrastructure, which
  1571. simplifies the packaging of external kernel modules. Many
  1572. existing packages are converted to use it.
  1573. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  1574. - Remove /etc/securetty from the default skeleton.
  1575. - Migration of sysV initscripts from the default skeleton to
  1576. a package called 'initscripts', installed only when Busbox
  1577. init or sysvinit are used.
  1578. - Migration of the skeleton logic to a proper 'skeleton'
  1579. package.
  1580. - Addition of a 'linux-tools' infrastructure in the 'linux'
  1581. package, to support building user-space tools bundled
  1582. within the Linux kernel sources, such as perf and cpupower.
  1583. - Usage of backticks instead of make $(shell ...) to execute
  1584. shell commands. This allows to delay the evaluation of such
  1585. commands when actually needed, and not when expanding the
  1586. variables. It is useful to make 'make printvars' less
  1587. noisy, and as a preparation to support top-level parallel
  1588. build.
  1589. - Libtool .la files are not mungled for all package types,
  1590. instead of being handled only for packages using the
  1591. autotools-package infrastructure.
  1592. - Add mechanism to allow packages to express a dependency on
  1593. gcc versions. This is needed for packages that use C++11 or
  1594. C11 support for example.
  1595. Important package updates:
  1596. - Complete rework of the matchbox packaging
  1597. - Lots of fixes in packages for compatibility with musl and
  1598. gcc 5.
  1599. - Hash files added to a large number of packages.
  1600. - Update a significant number of packages to use a new
  1601. hosting, after the announcement of Google Code and
  1602. Gitorious closing.
  1603. - Major packages needed for SELinux support have been merged,
  1604. but the support is not complete yet.
  1605. - Significant update of OpenCV to version 3.0, and addition
  1606. of lots of eatures.
  1607. - Significant update of all packages supporting the GPU and
  1608. VPU of i.MX ARM processors.
  1609. - Addition of systemd support in a significant number of
  1610. packages.
  1611. - Qt5 updated to 5.5.0
  1612. - Use modular X.org server by default instead of KDrive
  1613. Filesystems:
  1614. - Complete overhaul of the iso9660 support. Now allows to use
  1615. directly IS9660 as the root filesystem format and not only
  1616. an initrd, and supports Grub 2 and isolinux in addition to
  1617. Grub.
  1618. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  1619. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  1620. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  1621. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  1622. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  1623. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  1624. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  1625. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  1626. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  1627. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  1628. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  1629. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  1630. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  1631. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  1632. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  1633. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  1634. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  1635. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  1636. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  1637. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  1638. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  1639. libunistring, libupnp, libuv, libv4l, libva,
  1640. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  1641. linux-firmware, linux-headers, live555, ltrace, lua,
  1642. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  1643. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  1644. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  1645. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  1646. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  1647. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  1648. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  1649. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  1650. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  1651. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  1652. python-networkmanager, python-pyinotify, python-pypcap,
  1653. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  1654. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  1655. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  1656. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  1657. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  1658. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  1659. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  1660. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  1661. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  1662. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  1663. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  1664. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  1665. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  1666. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  1667. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  1668. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  1669. zic.
  1670. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  1671. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  1672. jquery-datetimepicker, kodi-audioencoder-modplug,
  1673. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  1674. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  1675. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  1676. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  1677. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  1678. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  1679. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  1680. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  1681. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  1682. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  1683. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  1684. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  1685. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  1686. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  1687. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  1688. libfm-extra, libplatform, librtas, libsodium, libsquish,
  1689. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  1690. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  1691. python-pycli, python-pydal, python-pyyaml, python-web2py,
  1692. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  1693. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  1694. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  1695. Deprecated packages: webkitgtk, libgail, eglibc support in
  1696. glibc package.
  1697. Issues resolved (http://bugs.uclibc.org):
  1698. #4291: Segmentation fault with all binaries that use threads
  1699. when compiled with gcc 4.6
  1700. #6944: building toolchain for sh4 fails
  1701. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  1702. #7628: Python SSL does not get built for Raspberry Pi
  1703. #7682: Missing dependencies for NFS
  1704. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  1705. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  1706. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  1707. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  1708. #7971: python-flask, python-werkzeug. No module named zlib
  1709. #7981: Target file system skeleton permissions hazard
  1710. #8006: rpcdebug in nfs-utils built for the host
  1711. #8036: alsa-lib headers problem that prevents to compile alsa
  1712. dependent projects
  1713. #8081: systemd init system: /tmp is not mode 1777
  1714. #8121: php opcache extension doesn't get installed
  1715. #8151: x86-64 make fails with ncurses 5.9
  1716. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  1717. #8161: default /bin/sh symlink to busybox is full path and not relative
  1718. #8171: glamor missing
  1719. #8191: Request update support for the cubieboard series
  1720. #8201: Important security upgrades for node.js
  1721. 2015.05, Released May 31st, 2015
  1722. Minor fixes.
  1723. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  1724. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  1725. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  1726. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  1727. python3, sconeserver, udpcast, upmpdcli
  1728. 2015.05-rc3, Released May 22nd, 2015
  1729. Several fixes, mainly related to static linking.
  1730. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  1731. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  1732. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  1733. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  1734. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  1735. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  1736. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  1737. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  1738. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  1739. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  1740. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  1741. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  1742. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  1743. wvstreams, xmlstarlet, zeromq, zmqpp
  1744. New packages: c-periphery
  1745. Issues resolved (http://bugs.uclibc.org):
  1746. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  1747. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  1748. #8126: exim lacks plaintext and cram-md5 auth
  1749. 2015.05-rc2, Released May 11th, 2015
  1750. Minor fixes.
  1751. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  1752. issues. Context functions enabled for uClibc snapshot /
  1753. uClibc-NG.
  1754. Architectures: Endian handling symbol for Xtensa, binutils
  1755. fixes.
  1756. Infrastructure: Fix for kernel module stripping when
  1757. localversion contains spaces.
  1758. Updated/fixed packages: at, autoconf-archive, binutils,
  1759. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  1760. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  1761. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  1762. xlib_libXfont
  1763. Issues resolved (http://bugs.uclibc.org):
  1764. #8086: Cannot select systemd as init with Linaro 2014.09...
  1765. 2015.05-rc1, Released May 4th, 2015
  1766. Fixes all over the tree and new features.
  1767. Architectures: Removed AVR32 support, deprecate SH64, added
  1768. support for steamroller, corei7-avx and core-avx2 x86
  1769. variants.
  1770. Toolchains: IPv6 and Largefile support now enforced for
  1771. uClibc. Corresponding Kconfig symbols removed.
  1772. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  1773. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  1774. external toolchains are now detected and blacklisted.
  1775. Internal toolchain support for Nios2 added, Blackfin
  1776. removed. Aarch64 and sh musl support. uClibc-ng support added.
  1777. Libatomic is now handled for internal and external
  1778. toolchains. Link time optimization (LTO) support.
  1779. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  1780. Auto, Raspberry Pi 2, RIoTboard,
  1781. Infrastructure: Hashes for a large number of packages have
  1782. been added. Missing hashes now stop the build unless
  1783. explicitly disabled.
  1784. Spaces and colons (:) are now supported in package
  1785. versions. Dependencies can now be listed for the patch step
  1786. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  1787. extensions infrastructure has been added.
  1788. Makedevs now has a recursive (r) option.
  1789. The variable containing the list of packages to build has been
  1790. renamed from TARGETS to PACKAGES.
  1791. Make external-deps / legal-info / source / source-check have
  1792. been reimplemented using the package infrastructure, so their
  1793. output/behaviour may differ from earlier (some packages were
  1794. not included in the past).
  1795. The old insecure DES password encoding is no longer supported.
  1796. U-Boot patch option now support direct references to patch
  1797. files and URLs in addition to directories of patches. The
  1798. i.MX28 SD format (u-boot.sd) is now supported.
  1799. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  1800. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  1801. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  1802. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  1803. canfestival, ccache, chrony, civetweb, clamav, cmake,
  1804. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  1805. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  1806. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  1807. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  1808. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  1809. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  1810. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  1811. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  1812. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  1813. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  1814. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  1815. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  1816. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  1817. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  1818. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  1819. kismet, kmod, kodi-audioencoder-flac,
  1820. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  1821. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  1822. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  1823. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  1824. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  1825. libinput, libiscsi, libksba, liblinear, libmatroska,
  1826. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  1827. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  1828. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  1829. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  1830. libusb, libuv, libva-intel-driver, libva, libvncserver,
  1831. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  1832. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  1833. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  1834. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  1835. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  1836. luarocks, lvm2, lxc, make,
  1837. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  1838. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  1839. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  1840. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  1841. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  1842. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  1843. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  1844. opencv, openldap, openntpd, openocd, openssh, openssl,
  1845. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  1846. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  1847. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  1848. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  1849. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  1850. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  1851. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  1852. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  1853. python-tornado, python-twisted, python-zope-interface, python,
  1854. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  1855. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  1856. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  1857. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  1858. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  1859. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  1860. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  1861. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  1862. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  1863. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  1864. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  1865. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  1866. webp, weston, wget, which, whois, wireless-regdb,
  1867. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  1868. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  1869. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  1870. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  1871. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  1872. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  1873. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  1874. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  1875. xdata_xcursor-themes,
  1876. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  1877. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  1878. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  1879. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  1880. xfont_font-util, xkeyboard-config,
  1881. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  1882. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  1883. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  1884. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  1885. New packages: apache, autoconf-archive, batctl,
  1886. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  1887. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  1888. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  1889. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  1890. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  1891. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  1892. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  1893. perl-db-file, perl-digest-{hmac,sha1},
  1894. perl-encode-{detect,locale}, perl-file-{listing,util},
  1895. perl-html-{parser,tagset}, perl-http-cookies,
  1896. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  1897. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  1898. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  1899. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  1900. perl-www-robotrules, powertop, pulseview,
  1901. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  1902. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  1903. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  1904. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  1905. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  1906. xproto_xproxymanagementprotocol
  1907. Removed packages: gtk2-theme-hicolor
  1908. Deprecated packages: samba
  1909. Issues resolved (http://bugs.uclibc.org):
  1910. #7478: Multiple chosen python modules are not built due to...
  1911. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  1912. #7676: Package procps-ng installs binaries to nonsensical folder
  1913. #7724: Startx is not installed in the target
  1914. #7760: botan: wrong prefix in botan-1.10.pc
  1915. #7826: Building of cdparanoia
  1916. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  1917. #7874: X.org configure error
  1918. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  1919. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  1920. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  1921. #7976: mkuser script fails with: user already exists with...
  1922. #8011: When building only busybox and strace, strace fails...
  1923. #8016: collectd fails to build, network.c:171:19: error:...
  1924. #8041: error on building libcurl7.42.0
  1925. 2015.02, Released March 1st, 2015
  1926. Minor fixes.
  1927. Updated/fixed packages: civetweb, ding-libs,
  1928. directfb-examples, glibc, gnupg, gnupg2, gpm,
  1929. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  1930. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  1931. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  1932. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  1933. xcb-util-keysyms
  1934. Removed packages: libgc
  1935. 2015.02-rc3, Released February 24th, 2015
  1936. Minor fixes.
  1937. Cmake and rebar (erlang) infrastructure fixes.
  1938. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  1939. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  1940. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  1941. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  1942. 2015.02-rc2, Released February 15th, 2015
  1943. Minor fixes.
  1944. raspberrypi: fix kernel sha1 for DT variant.
  1945. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  1946. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  1947. qt5base, qt5connectivity, xserver_xorg-server
  1948. 2015.02-rc1, Released February 8th, 2015
  1949. Fixes all over the tree and new features.
  1950. Static/shared library handling reworked. This is now a
  1951. tristate (shared only / shared and static / static
  1952. only). Default is now shared only to speed up the
  1953. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  1954. The toolchain (internal and external) will now warn when an
  1955. unsafe library or header path is used (such as /usr/include or
  1956. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  1957. under build options this instead becomes an error.
  1958. A installation path issue with the internal musl toolchain
  1959. support has been fixed so it is now possible to reuse it as an
  1960. external toolchain.
  1961. Architectures: Freescale E5500 and E6500 PowerPC support
  1962. added, deprecated MIPS 1/2/3/4 support removed.
  1963. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  1964. Raspberrypi with DT, UDOO Quad.
  1965. 'make <foo>_defconfig' now saves the path to the defconfig in
  1966. the .config, so a 'make savedefconfig' automatically updates
  1967. it.
  1968. Infrastructure for packages using the Erland rebar tool has
  1969. been added.
  1970. Hashes for a large number of packages have been added. Hashes
  1971. are now checked for both target and host packages.
  1972. The system menu now has an option to automatically configure a
  1973. network interface through DHCP at bootup.
  1974. The default filesystem skeleton now uses a separate tmpfs for
  1975. /run instead of a symlink to /tmp/ for security reasons / to
  1976. protect against conflicts with user generated temporary files.
  1977. BR2_EXTERNAL is now exported to post-build and post-image
  1978. scripts.
  1979. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  1980. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  1981. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  1982. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  1983. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  1984. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  1985. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  1986. janus-gateway, kodi, kodi-audioencoder-flac,
  1987. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  1988. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  1989. libselinux, libsemanage, libserialport, libsigro,
  1990. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  1991. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  1992. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  1993. openldap, python-alsaaudio, python-certifi, python-cheetah,
  1994. python-coherence, python-django, python-docopt, python-enum,
  1995. python-enum34, python-flask, python-gobject, python-httplib2,
  1996. python-ipaddr, python-itsdangerous, python-jinja,
  1997. python-markdown, python-markupsafe, python-networkmanager,
  1998. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  1999. python-pysendfile, python-pyxb, python-requests, python-six,
  2000. python-twisted, python-webpy, python-werkzeug,
  2001. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  2002. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  2003. xtables-addons
  2004. Removed packages (target): bison, distcc, gob2, m4
  2005. Issues resolved (http://bugs.uclibc.org):
  2006. #7556: make interactive CLI optional for nftables
  2007. #7730: Error while connecting Qt Cretaor to device
  2008. #7766: logrotate default gzip path is usually wrong
  2009. #7790: Invalid ext4 image generated by Buildroot
  2010. 2014.11, Released December 1st, 2014
  2011. Minor fixes.
  2012. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  2013. current working directory isn't searched.
  2014. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  2015. parted, shairport-sync, util-linux, xapp_bdftopcf,
  2016. xserver_xorg-server
  2017. 2014.11-rc3, Released November 28th, 2014
  2018. Fixes all over the tree.
  2019. System: File permissions of /etc/random-seed made more
  2020. restrictive.
  2021. Toolchain: Various fixes related to locale handling, a fix for
  2022. building the toolchain wrapper on MIPS.
  2023. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  2024. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  2025. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  2026. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  2027. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  2028. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  2029. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  2030. xl2tp, xserver_xorg-server
  2031. Issues resolved (http://bugs.uclibc.org):
  2032. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  2033. 2014.11-rc2, Released November 21st, 2014
  2034. Fixes all over the tree.
  2035. Inittab tweaks for shutdown handling (busybox and sysvinit).
  2036. Updated/fixed packages: aircrack-ng, botan, canfestival,
  2037. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  2038. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  2039. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  2040. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  2041. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  2042. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  2043. tstools, tzdata, wireshark, x264
  2044. Issues resolved (http://bugs.uclibc.org):
  2045. #7646: strftime on datetime not works on python3
  2046. 2014.11-rc1, Released November 12th, 2014
  2047. Fixes all over the tree and new features.
  2048. Toolchains: Use -mcpu / -march instead of -mtune. Support
  2049. additional ARC and sparc variants. Updated Code sourcery
  2050. and Linaro external toolchains.
  2051. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  2052. powerpc64 pseries added and a number of updates to the
  2053. existing configurations.
  2054. Infrastructure: Buildroot is now less noisy when built with
  2055. the silent option (make -s).
  2056. A number of package infrastructure variables have been renamed
  2057. from *_OPT to *_OPTS for constency. Buildroot will complain if
  2058. the old names are used to assist in updating out of tree
  2059. packages.
  2060. Fixes for host systems where bash isn't located in /bin, and
  2061. older systems not supporting mktemp --tmpdir.
  2062. Various cleanups of users/groups in the default skeleton.
  2063. There is now an option to choose what shell /bin/sh points to.
  2064. Documentation: Various updates to the user manual. The
  2065. asciidoc documentation handling has now been extended so it
  2066. can be used by (BR2_EXTERNAL) packages.
  2067. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  2068. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  2069. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  2070. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  2071. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  2072. bluez_utils, bmon, boost, bootutils, bridge-utils,
  2073. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  2074. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  2075. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  2076. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  2077. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  2078. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  2079. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  2080. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  2081. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  2082. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  2083. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  2084. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  2085. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  2086. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  2087. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  2088. fontconfig, foomatic-filters, freerdp, freescale-imx,
  2089. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  2090. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  2091. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  2092. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  2093. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  2094. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  2095. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  2096. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  2097. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  2098. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  2099. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  2100. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  2101. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  2102. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  2103. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  2104. jquery-ui-themes, jquery-validation, jsmin, json-c,
  2105. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  2106. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  2107. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  2108. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  2109. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  2110. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  2111. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  2112. libelementary, libelf, libenca, libethumb, libevas,
  2113. libevas-generic-loaders, libevent, libexif, libeXosip2,
  2114. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  2115. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  2116. libinput, libiscsi, libjson, libksba, liblockfile,
  2117. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  2118. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  2119. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  2120. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  2121. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  2122. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  2123. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  2124. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  2125. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  2126. libungif, liburcu, libusb, libuv, libv4l, libva,
  2127. libva-intel-driver, libvncserver, libvorbis, libvpx,
  2128. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  2129. libxslt, lighttpd, linenoise, linknx, links, linphone,
  2130. linux-firmware, linux-fusion, linux-headers, linux-pam,
  2131. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  2132. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  2133. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  2134. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  2135. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  2136. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  2137. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  2138. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  2139. lzma, m4, madplay, make, makedevs, Makefile.in,
  2140. matchbox-common, matchbox-desktop, matchbox-fakekey,
  2141. matchbox-keyboard, matchbox-lib, matchbox-panel,
  2142. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  2143. media-ctl, mediastreamer, memcached, memstat, memtester,
  2144. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  2145. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  2146. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  2147. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  2148. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  2149. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  2150. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  2151. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  2152. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  2153. openocd, openpowerlink, openssh, openssl, openswan,
  2154. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  2155. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  2156. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  2157. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  2158. perl-module-build, perl-mojolicious, perl-net-ssleay,
  2159. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  2160. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  2161. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  2162. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  2163. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  2164. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  2165. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  2166. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  2167. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  2168. python-dialog, python-ipy, python-keyring, python-mad,
  2169. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  2170. python-pyparsing, python-pyro, python-pyusb, python-serial,
  2171. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  2172. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  2173. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  2174. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  2175. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  2176. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  2177. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  2178. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  2179. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  2180. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  2181. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  2182. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  2183. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  2184. slang, slirp, smcroute, smstools3, snmppp,
  2185. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  2186. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  2187. squid, sredird, startup-notification, strace, stress,
  2188. strongswan, stunnel, subversion, sudo, sunxi-boards,
  2189. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  2190. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  2191. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  2192. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  2193. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  2194. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  2195. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  2196. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  2197. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  2198. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  2199. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  2200. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  2201. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  2202. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  2203. xdriver_xf86-video-vmware, xenomai, xerces,
  2204. xfont_font-adobe-{100,75}dpi,
  2205. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  2206. xfont_font-alias, xfont_font-arabic-misc,
  2207. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  2208. xfont_font-bh-lucidatypewriter-100dpi,
  2209. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  2210. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  2211. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  2212. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  2213. xfont_font-daewoo-misc, xfont_font-dec-misc,
  2214. xfont_font-ibm-type1, xfont_font-isas-misc,
  2215. xfont_font-jis-misc, xfont_font-micro-misc,
  2216. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  2217. xfont_font-misc-meltho, xfont_font-misc-misc,
  2218. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  2219. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  2220. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  2221. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  2222. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  2223. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  2224. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  2225. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  2226. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  2227. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  2228. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  2229. znc, zsh, zxing
  2230. New packages: adwaita-icon-theme, am335x-pru-package,
  2231. bcache-tools, biosdevname, botan, canfestival, clamav,
  2232. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  2233. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  2234. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  2235. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  2236. netcat-openbsd, nginx, odhcploc, openvmtools,
  2237. phidgetwebservice, pps-tools, pure-ftpd,
  2238. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  2239. qt5location, shairport-sync, spidev_test, targetcli-fb,
  2240. tinyalsa, trinity, x264, yaml-cpp, ympd
  2241. Removed packages: libelf
  2242. Issues resolved (http://bugs.uclibc.org):
  2243. #261: New package: wxWidgets
  2244. #325: New package: ratpoison
  2245. #405: New package: OpenVZ tools
  2246. #1309: New package: rdiff-backup
  2247. #3427: New package: nginx
  2248. #3655: New package: libav
  2249. #3991: New Package: open-vm-tools (Vmware Tools)
  2250. #6878: dmraid: disabled on ARC
  2251. #6950: Full unicode support in ncurses
  2252. #7010: jamvm builds and runs fine under mips (be)
  2253. #7088: elfutils on Blackfin doesn't build
  2254. #7142: ecryptfs needs getent to run
  2255. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  2256. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  2257. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  2258. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  2259. #7364: monit builds a static application, even though BR2_PREFER_...
  2260. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  2261. #7442: rootfs remount does not work as expected with sysvinit
  2262. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  2263. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  2264. #7574: quota-4.01 fails to build statically
  2265. 2014.08, Released September 1st, 2014
  2266. Minor manual fixes/additions.
  2267. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  2268. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  2269. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  2270. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  2271. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  2272. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  2273. xscreensaver, yajl
  2274. Issues resolved (http://bugs.uclibc.org):
  2275. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  2276. 2014.08-rc3, Released August 26th, 2014
  2277. Minor fixes.
  2278. User manual update / restructuring.
  2279. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  2280. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  2281. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  2282. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  2283. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  2284. Issues resolved (http://bugs.uclibc.org):
  2285. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  2286. #7322: libgomp dependency issue with imagemagick
  2287. #7328: Git dl of versions in x/y broken
  2288. 2014.08-rc2, Released August 18th, 2014
  2289. Fixes all over the tree.
  2290. User manual restructured / reworked.
  2291. Toolchain: Fix for C++ exceptions / pthread_exit() on
  2292. uClibc/glibc, C++-11 features with uClibc.
  2293. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  2294. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  2295. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  2296. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  2297. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  2298. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  2299. xapp_rstart, xbmc, xbmc-pvr-addons
  2300. Issues resolved (http://bugs.uclibc.org):
  2301. #7124: Use BR toolchain externally results a non-bootable...
  2302. #7208: Glibc C++ aplications crash if they use exceptions
  2303. #7250: Cannot build with -std=c++11
  2304. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  2305. #7286: systemd 215 doesn't build
  2306. 2014.08-rc1, Released August 8th, 2014
  2307. Fixes all over the tree and new features.
  2308. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  2309. Improved altivec / SPE /atomic instructions
  2310. handling. Additional PowerPC CPU variants added.
  2311. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  2312. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  2313. tweaks to existing ones. lpc32xx defconfigs removed.
  2314. Toolchain: Microblaze support for internal musl toolchain.
  2315. Default to GCC 4.8 for internal toolchain, remove deprecated
  2316. 4.3 and 4.6 versions.
  2317. External CodeSourcery / Linaro toolchain updates, option to
  2318. copy gconv libraries for external toolchains.
  2319. Infrastructure: graph-depends: misc fixes, transitive
  2320. dependencies are not drawn by default. Download handling is
  2321. now done using helper scripts. Integrity of downloads can now
  2322. be verified using sha* hashes. Subversion download now uses
  2323. peg revisions for robustness.
  2324. Legal-info: License info of local or overridden packages are
  2325. saved as well. Toolchain packages are also taken into account.
  2326. autotools: Static linking with libtool / v1.5 improvements.
  2327. Gettextize support, similar to autoreconf.
  2328. kconfig package infrastructure added.
  2329. Misc: Version selection for busybox dropped.
  2330. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  2331. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  2332. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  2333. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  2334. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  2335. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  2336. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  2337. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  2338. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  2339. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  2340. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  2341. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  2342. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  2343. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  2344. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  2345. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  2346. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  2347. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  2348. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  2349. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  2350. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  2351. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  2352. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  2353. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  2354. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  2355. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  2356. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  2357. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  2358. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  2359. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  2360. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  2361. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  2362. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  2363. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  2364. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  2365. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  2366. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  2367. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  2368. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  2369. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  2370. libxml2, libyaml, links, linux-firmware, linux-fusion,
  2371. linux-headers, linux-pam, lite, live555, lm-sensors,
  2372. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  2373. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  2374. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  2375. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  2376. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  2377. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  2378. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  2379. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  2380. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  2381. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  2382. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  2383. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  2384. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  2385. python,
  2386. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  2387. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  2388. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  2389. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  2390. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  2391. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  2392. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  2393. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  2394. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  2395. startup-notification, statserial, strongswan, stunnel,
  2396. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  2397. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  2398. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  2399. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  2400. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  2401. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  2402. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  2403. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  2404. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  2405. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  2406. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  2407. xz
  2408. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  2409. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  2410. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  2411. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  2412. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  2413. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  2414. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  2415. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  2416. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  2417. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  2418. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  2419. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  2420. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  2421. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  2422. Removed packages: procps
  2423. Issues resolved (http://bugs.uclibc.org):
  2424. #5750: Doing a Buildroot build from /usr doesn't work
  2425. #5900: config flags to the Xenomai build system
  2426. #6230: Cannot compile gcc without threads (uClibc-based)
  2427. #6626: procps Unknown HZ value! (XX) Assume 100
  2428. #7118: Package "thrift" requires atomic operations
  2429. #7154: Local uClibc config file gets overwritten using ...
  2430. #7160: host-xz not built
  2431. #7166: hostapd: segfault when using RT5370
  2432. #7172: Name collision of rpath token expansion and internal..
  2433. #7178: NTPd package cannot sync time without a proper ntp.conf
  2434. #7184: supervisord depends on libxml2 implicitly
  2435. #7196: Unable to build on UBUNTU13.10
  2436. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  2437. 2014.05, Released May 31st, 2014
  2438. Minor fixes.
  2439. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  2440. for the spl file.
  2441. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  2442. qt5base, qt5webkit, sysklogd, thrift, u-boot
  2443. 2014.05-rc3, Released May 28th, 2014
  2444. Minor fixes.
  2445. Updated/fixed packages: acl, attr, connman, dosfstools,
  2446. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  2447. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  2448. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  2449. samba4, slang, xbmc
  2450. Issues resolved (http://bugs.uclibc.org):
  2451. #7100: license info for package 'acl' missing
  2452. #7106: license info for package 'attr' missing
  2453. #7112: license info for package 'hwdata'
  2454. 2014.05-rc2, Released May 21st, 2014
  2455. Fixes all over the tree.
  2456. Stripping using sstrip has been deprecated.
  2457. BR2_EXTERNAL can now also be used to implement custom
  2458. filesystem types.
  2459. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  2460. the generated dependency graph has been renamed to
  2461. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  2462. the future.
  2463. The virtual package infrastructure will now error out early
  2464. if multiple packages providing the same virtual package has
  2465. been enabled (E.G. opengl). This change requires that the
  2466. packages explicitly declare what virtual package(s) they
  2467. provide.
  2468. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  2469. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  2470. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  2471. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  2472. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  2473. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  2474. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  2475. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  2476. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  2477. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  2478. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  2479. xlib_libXpm, xserver_xorg-server, zyre
  2480. Issues resolved (http://bugs.uclibc.org):
  2481. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  2482. #7016: Git issues in resulting buildroot tar
  2483. #7094: pciutils doesn't build on Blackfin
  2484. 2014.05-rc1, Released May 13th, 2014
  2485. Fixes all over the tree and new features.
  2486. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  2487. been removed. Building o32 ELF files for MIPS64 is an exotic
  2488. configuration that nobody should be using. If o32 is required,
  2489. then is better if it's built for MIPS 32-bit cores so only
  2490. 32-bit instructions will be used leading to a more efficient
  2491. o32 usage.
  2492. Support for the ARM A12 variant and Intel corei7.
  2493. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  2494. Bootloaders: Grub2 and gummiboot support, syslinux support
  2495. extended.
  2496. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  2497. library for internal and external toolchains. 4.8-R3 support
  2498. for ARC, Internal toolchain support for Aarch64 and
  2499. Microblaze. Environment variable to control debug output of
  2500. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  2501. other variables. Toolchain tuple vendor name can now be
  2502. customized. Updated external Linaro ARM/Aarch64
  2503. toolchains. Added external Linaro ARMEB toolchain.
  2504. A GDB gdbinit file is now generated for external toolchains to
  2505. automatically set the correct sysroot.
  2506. Kconfig handling for minimum kernel headers version required
  2507. for packages. Now packages needing specific kernel header
  2508. features can specify these requirements in Kconfig.
  2509. Infrastructure: Support for (but disabled as it leads to
  2510. unreproducible builds) toplevel parallel builds. See the
  2511. comment at the top of Makefile for details about how to enable
  2512. it and what the problems are if you want to test it.
  2513. Python package infrastructure extended to support Python 3.x
  2514. Perl and virtual package infrastructure support added.
  2515. PRE_*_HOOKS support for all build steps.
  2516. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  2517. barebox, bash, beecrypt, bellagio, binutils, boost,
  2518. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  2519. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  2520. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  2521. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  2522. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  2523. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  2524. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  2525. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  2526. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  2527. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  2528. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  2529. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  2530. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  2531. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  2532. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  2533. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  2534. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  2535. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  2536. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  2537. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  2538. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  2539. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  2540. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  2541. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  2542. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  2543. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  2544. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  2545. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  2546. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  2547. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  2548. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  2549. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  2550. luainterpreter, luajit, lua-msgpack-native, luaposix,
  2551. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  2552. memstat, mesa3d, metacity, minidlna, mmc-utils,
  2553. mobile-broadband-provider-info, modem-manager, mongrel2,
  2554. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  2555. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  2556. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  2557. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  2558. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  2559. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  2560. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  2561. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  2562. pulseaudio, python, python3, python-bottle, python-m2crypto,
  2563. python-netifaces, python-pyasn, python-pycrypto,
  2564. python-pygame, python-pysnmp, python-pysnmp-apps,
  2565. python-pysnmp-mibs, python-serial, python-setuptools,
  2566. qextserialport, qt, qt5, qt5base, qt5connectivity,
  2567. qt5declarative, qt5graphicaleffects, qt5imageformats,
  2568. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  2569. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  2570. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  2571. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  2572. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  2573. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  2574. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  2575. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  2576. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  2577. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  2578. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  2579. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  2580. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  2581. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  2582. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  2583. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  2584. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  2585. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  2586. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  2587. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  2588. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  2589. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  2590. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  2591. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  2592. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  2593. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  2594. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  2595. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  2596. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  2597. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  2598. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  2599. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  2600. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  2601. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  2602. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  2603. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  2604. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  2605. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  2606. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  2607. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  2608. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  2609. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  2610. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  2611. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  2612. xutil_util-macros, zeromq, zic, zmqpp, zyre
  2613. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  2614. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  2615. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  2616. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  2617. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  2618. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  2619. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  2620. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  2621. musl, nftables, opentyrian, opentyrian-data,
  2622. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  2623. php-zmq, postgresql, python-libconfig, python-pypcap,
  2624. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  2625. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  2626. yaffs2utils, zlog, znc
  2627. Removed packages: crosstool-ng, python-distutilscross, vala
  2628. Issues resolved (http://bugs.uclibc.org):
  2629. #6842: Checking external toolchain for eabihf
  2630. #6956: Packaging libsoxr
  2631. #6986: Make legal-info fails on uboot versions before 2014.01
  2632. #6992: Incorrect installation rights on external kernel module..
  2633. 2014.02, Released February 27th, 2014
  2634. Minor fixes.
  2635. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  2636. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  2637. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  2638. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  2639. Issues resolved (http://bugs.uclibc.org):
  2640. #6938: mkuser script generates wrong password for new user in..
  2641. 2014.02-rc3, Released February 25th, 2014
  2642. Minor fixes.
  2643. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  2644. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  2645. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  2646. libsecret, libsepol, libsigsegv, libtool, libv4l,
  2647. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  2648. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  2649. tvheadend, util-linux, webkit, xscreensaver
  2650. Issues resolved (http://bugs.uclibc.org):
  2651. #4706: Removing .stamp_target_installed does not trigger...
  2652. #5030: busybox built fails if we use an override src dir...
  2653. #5420: Dbus and /var/run management
  2654. #5768: Not able to build ALSA-Lib for static build
  2655. #5774: Not able to build ALSA-Utils for static build
  2656. #6542: external python modules fail to compile to pyc if...
  2657. #6764: Support for kernel signed modules
  2658. #6794: Busybox compiled from buildroot hangs on pass from...
  2659. 2014.02-rc2, Released February 20th, 2014
  2660. Fixes all over the tree. Static linking / nommu fixes and
  2661. annotations for several packages.
  2662. Updated/fixed packages: boost, busybox, collectd, coreutils,
  2663. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  2664. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  2665. opencv, python, python3, qtuio, systemd, thrift, transmission,
  2666. uclibc, vlc, webkit
  2667. Issues resolved (http://bugs.uclibc.org):
  2668. #5450: AT91SAM9260 Bootstrap compilation problem
  2669. #5582: libiconv 1.14 failed to build
  2670. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  2671. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  2672. #6218: binutils-2.23.2/gas fails with undefined reference to..
  2673. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  2674. #6470: If the build directory is a child of /usr, the build..
  2675. #6776: systemd error: static declaration of 'execvpe' follows..
  2676. #6818: toolchainfile.cmake has absolut path references
  2677. 2014.02-rc1, Released February 11th, 2014
  2678. Fixes all over the tree and new features.
  2679. Support for external packages/defconfigs (BR2_EXTERNAL). See
  2680. user manual for details.
  2681. Cleanup of environment variable names for consistency. The
  2682. download directory location override (BUILDROOT_DL_DIR) is now
  2683. called BR2_DL_DIR. Likewise the name of the current .config is
  2684. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  2685. your post build scripts if you use this! BUILD_DIR is now also
  2686. exported to the post build/image scripts.
  2687. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  2688. uClibc pread/pwrite backport as they cause issues on certain
  2689. architectures, new Linaro and Sourcery Codebench toolchains.
  2690. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  2691. variants removed, Microblaze: Internal toolchain support
  2692. Legal infrastructure: Info is now split between host and
  2693. target packages, large number of license annotations.
  2694. Lua: selection between lua 5.1 / 5.2, luarocks support
  2695. Python: package infrastructure, many new packages.
  2696. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  2697. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  2698. updated.
  2699. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  2700. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  2701. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  2702. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  2703. cifs-utils, civetweb, cmake, collectd, connman, copas,
  2704. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  2705. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  2706. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  2707. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  2708. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  2709. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  2710. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  2711. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  2712. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  2713. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  2714. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  2715. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  2716. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  2717. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  2718. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  2719. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  2720. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  2721. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  2722. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  2723. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  2724. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  2725. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  2726. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  2727. luafilesystem, luajit, luaposix, luasec, luasocket,
  2728. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  2729. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  2730. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  2731. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  2732. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  2733. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  2734. php, poco, poppler, powervr, protobuf-c, psplash, python,
  2735. python-bottle,
  2736. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  2737. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  2738. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  2739. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  2740. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  2741. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  2742. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  2743. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  2744. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  2745. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  2746. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  2747. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  2748. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  2749. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  2750. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  2751. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  2752. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  2753. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  2754. xlib_lib{FS,SM,X11},
  2755. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  2756. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  2757. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  2758. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  2759. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  2760. xproto_xextproto, xproto_xproto, xutil_util-macros,
  2761. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  2762. New packages: apitrace, avrdude, c-ares, ca-certificates,
  2763. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  2764. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  2765. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  2766. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  2767. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  2768. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  2769. python-configobj, python-dialog, python-json-schema-validator,
  2770. python-keyring, python-msgpack, python-posix-ipc,
  2771. python-pyasn, python-pycrypto, python-pysnmp,
  2772. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  2773. python-simplejson, python-tornado, python-versiontools,
  2774. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  2775. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  2776. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  2777. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  2778. Issues resolved (http://bugs.uclibc.org):
  2779. #65: new package: dbus c++ language bindings
  2780. #769: Update configuration menu for MIPS target
  2781. #2419: Add a bundle of Lua modules
  2782. #2629: Segmentation faults and division by zero in Grub on ext2
  2783. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  2784. #4339: Allow override of DL_DIR in extract step
  2785. #4363: Make sure that copied linux and busybox defconfig are...
  2786. #4454: There should be simple way to update image, when chang...
  2787. #5024: grub fails to build for x86_64 target architecture
  2788. #5066: New-Package: net-tools
  2789. #5072: ncurses: add ncurses-progs to target
  2790. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  2791. #5366: Login doesn't work with util-linux versions of login/agetty
  2792. #5378: dropbear Makefile broken
  2793. #5390: System banner - change to empty doesn't remove /etc/issue
  2794. #5780: spurious build failure because it cannot remove ubinize.cfg
  2795. #5798: ncurses-5.9 fails to compile statically
  2796. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  2797. #6080: Git fetch caching
  2798. #6092: Bootable ISO image creation seems to have stopped working..
  2799. #6272: coreutils build fails
  2800. #6434: apply-patches.sh does not work recursively
  2801. #6446: eglibc doesn't install ldconfig to target
  2802. #6484: Add c-ares
  2803. #6596: Slow bootup if mdev is chosen
  2804. #6656: Build Qt5 with ccache
  2805. #6662: internal compiler error: Segmentation fault during making..
  2806. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  2807. #6752: genext2fs: e2fsck must run before tunefs -U random
  2808. #6770: openssl 1.0.1f fails with ccache
  2809. #6830: Qt5: no fonts are installed
  2810. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  2811. #6854: Update to Qt 5.2.1
  2812. 2013.11, Released November 30th, 2013:
  2813. Minor fixes.
  2814. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  2815. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  2816. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  2817. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  2818. tvheadend, util-linux, wpa_supplicant
  2819. Issues resolved (http://bugs.uclibc.org):
  2820. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  2821. #2995: -fstack-protector-all causes ssh to SIGSEGV
  2822. #5570: Cannot compile software on the target machine
  2823. #6428: util-linux libmount segfaults with patch from buildroot
  2824. #6500: php fails to build for armel
  2825. #6554: gdb needs to dependents on host texinfo
  2826. #6692: GNU nano fails to compile for x86_64
  2827. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  2828. 2013.11-rc3, Released November 26th, 2013
  2829. Fixes all over the tree.
  2830. Architecture: Mark MIPS I, II, III and IV as deprecated.
  2831. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  2832. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  2833. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  2834. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  2835. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  2836. 2013.11-rc2, Released November 18th, 2013
  2837. Fixes all over the tree.
  2838. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  2839. Adjust kernel versions.
  2840. Toolchain: avr32: fix for modern kernel headers
  2841. Bootloader: Barebox updated to 2013.10.1
  2842. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  2843. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  2844. wayland, wvstreams
  2845. Issues resolved (http://bugs.uclibc.org):
  2846. #3601: DHCPD S80dhcp-server startup script issues
  2847. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  2848. #6416: Xenomai package, patch alternative
  2849. #6590: directfb-examples build failed whit linaro toolchain
  2850. 2013.11-rc1, Released November 12th, 2013
  2851. Architectures: Nios-II support, MIPS arch handling fixes
  2852. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  2853. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  2854. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  2855. for avr32, crosstool-ng backend removed, external musl
  2856. toolchain support, gcc 4.8.2, updated Linaro external
  2857. toolchains. Fortran and objective-C support deprecated,
  2858. mudflap support
  2859. Bootloaders: U-Boot: u-boot.imx support, version bumps
  2860. Linux: use kmod instead of module-init-tools
  2861. System: default to devtmpfs for /dev
  2862. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  2863. download support, post-rsync hooks
  2864. Fs: u-boot image support for cpio
  2865. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  2866. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  2867. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  2868. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  2869. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  2870. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  2871. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  2872. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  2873. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  2874. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  2875. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  2876. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  2877. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  2878. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  2879. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  2880. libedit, libevas, libevent, libfreefare, libfuse,
  2881. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  2882. libmnl, libmodbus,
  2883. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  2884. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  2885. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  2886. libvpx, lighttpd, linphone, linux-pam, lmbench,
  2887. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  2888. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  2889. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  2890. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  2891. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  2892. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  2893. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  2894. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  2895. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  2896. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  2897. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  2898. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  2899. samba, scons, screen, sdl_sound, ser2net, setserial,
  2900. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  2901. stress, strongswan, stunnel, sudo, syslinux, systemd,
  2902. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  2903. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  2904. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  2905. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  2906. webkit, webp, webrtc-audio-processing, weston, wget,
  2907. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  2908. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  2909. xserver_xorg-server, xz, zeromq, zic, zmqpp
  2910. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  2911. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  2912. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  2913. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  2914. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  2915. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  2916. trace-cmd, xscreensaver, zsh
  2917. Removed packages: module-init-tools
  2918. Issues resolved (http://bugs.uclibc.org):
  2919. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  2920. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  2921. #5630: makefile error with toolchain helpers.mk
  2922. #5672: htop: remove X11 stuff
  2923. #5678: linux.mk: linux-menuconfig fails
  2924. #5696: python3 installation is too large, patches from python2 needed
  2925. #5978: Erlang does not build for arm in 2013.02-rc3
  2926. #6392: Extended ARM uImage kernel options
  2927. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  2928. #6428: util-linux libmount segfaults with patch from buildroot
  2929. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  2930. #6566: PHP segfault when crosscompiled to mips64 - patch included
  2931. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  2932. #6578: udisks package broken
  2933. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  2934. #6608: ebtables missing ethertypes - fix included
  2935. #6620: Sysvinit package missing killall5 and symlinks - patch included
  2936. #6632: CMake use host pkg-config
  2937. #6638: pkgconf doesn't download
  2938. #6644: "all" target doesn't work in out-of-tree builds
  2939. #6650: Segmentation fault when trying to build latest buildroot
  2940. #6668: iptables limit module alignment problem on mips64
  2941. 2013.08, Released August 31th, 2013:
  2942. Minor fixes.
  2943. Documentation build fixed.
  2944. Updated/fixed packages: ltrace, strongswan
  2945. 2013.08-rc3, Released August 29th, 2013:
  2946. Fixes all over the tree.
  2947. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  2948. misc fixes for generatelocales, apply-patches and module
  2949. stripping.
  2950. Top level menu names reordered and renamed for clarity.
  2951. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  2952. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  2953. openssh, openssl, pulseaudio, python-setuptools, qt5,
  2954. qt5webkit, redis, strongswan, sunxi-mali
  2955. Issues resolved (http://bugs.uclibc.org):
  2956. #6464: dbus-daemon-launch-helper needs setuid
  2957. 2013.08-rc2, Released August 16th 2013:
  2958. Documentation improvements.
  2959. External toolchains fixes.
  2960. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  2961. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  2962. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  2963. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  2964. uclibc, udev, wayland, webkit, zeromq.
  2965. Issues resolved (http://bugs.uclibc.org):
  2966. #6440: typo in ffmpeg makefile
  2967. 2013.08-rc1, Released August 5th, 2013:
  2968. Architectures:
  2969. - improved support for floating point on ARM and Thumb/Thumb2
  2970. - support for ARM OABI removed
  2971. Toolchains:
  2972. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  2973. - Linaro ARM and Aarch64 toolchains updated
  2974. - support added for the Arago ARMv5 and ARMv7 toolchains
  2975. - gcc 4.8.x version bumped
  2976. - support for installing both FDPIC and FLAT libraries on
  2977. Blackfin
  2978. - support for uClibc 0.9.31 removed,
  2979. - convert the internal toolchain backend to use the package
  2980. infrastructure
  2981. - support added for eglibc in the internal toolchain backend
  2982. - toolchain components for the ARC architecture updated and
  2983. gdb for ARC added.
  2984. - support for Blackfin in the internal toolchain fixed
  2985. Defconfigs: beaglebone_defconfig updated, new defconfig for
  2986. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  2987. TNY-A9G20-LPW.
  2988. A number of packages have been fixed to use the
  2989. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  2990. script installed and modified properly. Licensing informations
  2991. has been added to a number of packages.
  2992. Use XZ tarballs for a number of packages.
  2993. Noticeable package changes/additions:
  2994. - The glib2/libgtk2/webkit stack has been updated to recent
  2995. versions.
  2996. - Support for Gstreamer 1.x has been added.
  2997. - OpenGL support for TI OMAP platforms has been added.
  2998. - OpenGL support for Allwinner platforms has been added.
  2999. - OpenMAX support for RasberryPi has been added.
  3000. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  3001. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  3002. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  3003. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  3004. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  3005. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  3006. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  3007. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  3008. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  3009. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  3010. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  3011. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  3012. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  3013. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  3014. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  3015. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  3016. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  3017. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  3018. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  3019. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  3020. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  3021. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  3022. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  3023. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  3024. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  3025. zlib.
  3026. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  3027. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  3028. gcc-final, gcc-initial, gcc-intermediate, git,
  3029. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  3030. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  3031. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  3032. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  3033. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  3034. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  3035. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  3036. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  3037. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  3038. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  3039. tree, tstools, uclibc, w_scan.
  3040. Issues resolved (http://bugs.uclibc.org):
  3041. #4718: python (built for powerpc) distutils has paths to host
  3042. compiler toolchain
  3043. #5516: appended device tree blobs on uImage fails
  3044. #6302: Versions of packages retrieved from github.com are wrong
  3045. #6308: dosfstools download link is wrong
  3046. #6326: Dropbear: Add options to allow better config for
  3047. different target devices (e.g. routers)
  3048. #6338: Wrong download link for minicom package
  3049. #6344: Wrong handling of license text files with same name and
  3050. different directory
  3051. #6374: gnutls package broken if linux cryptodev module
  3052. selected
  3053. #6410: omap3_beagle has uimage error load address error
  3054. 2013.05, Released May 31th, 2013:
  3055. Minor fixes.
  3056. External toolchain wrapper fix for if host/usr/bin is placed
  3057. in the patch.
  3058. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  3059. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  3060. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  3061. Issues resolved (http://bugs.uclibc.org):
  3062. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  3063. #4988: flex and m4 problems
  3064. #5912: obsolete CVS files
  3065. 2013.05-rc3, Released May 25th, 2013:
  3066. Minor fixes.
  3067. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  3068. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  3069. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  3070. wireshark
  3071. 2013.05-rc2, Released May 15th, 2013:
  3072. Fixes all over the tree.
  3073. Default number of parallel jobs is now number of CPUs + 1.
  3074. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  3075. Updated/fixed packages: aircrack-ng, busybox, cairo,
  3076. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  3077. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  3078. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  3079. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  3080. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  3081. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  3082. sconeserver, strace, sylpheed, wvstreams,
  3083. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  3084. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  3085. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  3086. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  3087. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  3088. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  3089. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  3090. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  3091. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  3092. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  3093. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  3094. xdata_xcursor-themes,
  3095. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  3096. xdriver_xf86-input-{tslib,vmmouse,void},
  3097. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  3098. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  3099. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  3100. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  3101. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  3102. xfont_font-utopia-{100dpi,75dpi,type1},
  3103. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  3104. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  3105. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  3106. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  3107. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  3108. xfont_font-{mutt,schumacher}-misc,
  3109. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  3110. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  3111. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  3112. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  3113. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  3114. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  3115. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  3116. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  3117. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  3118. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  3119. xserver_xorg-server, xutil_{makedepend,util-macros}
  3120. Readded Packages: xapp_xinit
  3121. Issues resolved (http://bugs.uclibc.org):
  3122. #5054: amd64: cannot find init - due to missing /lib64 folder
  3123. 2013.05-rc1, Released May 8th, 2013:
  3124. Architectures: ARC support, Blackfin support, FLAT binary
  3125. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  3126. Toolchains: Add new Microblaze external toolchains, Linaro
  3127. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  3128. internal toolchain, default to GCC 4.7.x. Internal
  3129. Crosstool-ng backend deprecated.
  3130. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  3131. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  3132. pi, gnublin board.
  3133. FS: LZO and XZ compression methods, extra ubifs options,
  3134. ext2 rev 0/1 and ext3/4 support.
  3135. Patch handling: apply-patches now has .patch.xz support,
  3136. Patch logic reworked as discussed during Febrary dev days:
  3137. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  3138. <pkg>-rsync now excludes version control files.
  3139. linux: uImage load address for ARM multiplatform kernels
  3140. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  3141. providers, similar to how libjpeg / libjpeg-turbo is handled.
  3142. Infrastructure for packages to add system users.
  3143. kconfig: updated to 3.9-rc2, support make olddefconfig
  3144. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  3145. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  3146. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  3147. busybox, ccache, cifs-utils, cmake, collectd, connman,
  3148. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  3149. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  3150. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  3151. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  3152. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  3153. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  3154. httping, icu, inotify-tools, intltool, iproute2, ipset,
  3155. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  3156. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  3157. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  3158. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  3159. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  3160. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  3161. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  3162. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  3163. mediastreamer, memtester, mesa3d,
  3164. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  3165. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  3166. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  3167. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  3168. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  3169. polarssl, proftpd, psmisc, pulseaudio, python,
  3170. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  3171. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  3172. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  3173. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  3174. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  3175. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  3176. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  3177. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  3178. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  3179. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  3180. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  3181. xdriver_xf86-input-{tslib,vmmouse,void},
  3182. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  3183. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  3184. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  3185. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  3186. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  3187. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  3188. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  3189. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  3190. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  3191. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  3192. xserver_xorg-server, xutil_makedepend, xz, zeromq
  3193. New packages: aircrack-ng, bcusdk, chrony, crda,
  3194. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  3195. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  3196. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  3197. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  3198. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  3199. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  3200. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  3201. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  3202. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  3203. qt5declarative, qt5graphicaleffects, qt5imageformats,
  3204. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  3205. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  3206. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  3207. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  3208. xcursor-transparent-theme, zic, zmqpp, zyre
  3209. Removed packages: microperl, ocf-linux, xapp_xinit,
  3210. xapp_xplsprinters, xapp_xprehashprinterlist,
  3211. xfont_font-bitstream-speedo,
  3212. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  3213. xproto_{print,xf86rush}proto
  3214. Deprecated packages: vala
  3215. Issues resolved (http://bugs.uclibc.org):
  3216. #1291: Add support for Faraday 526 arm processor (fa526)
  3217. #2683: cups does not install correctly to target
  3218. #3313: mesa3d fails to build
  3219. #5186: initramfs/cpio should support lzo compression
  3220. #5636: agetty - cannot get controlling tty error - need updated...
  3221. #5906: collectd client headers not exported
  3222. #5966: bison unnecessarily required as build dependency
  3223. #6140: --enable-fileinfo not applied for php package
  3224. #6164: openvpn usage of ip tool from Busybox
  3225. 2013.02, Released February 28th, 2013:
  3226. Misc manual updates.
  3227. Updated/fixed packages: busybox, collectd, flashbench,
  3228. libgtk2, libupnp, mii-diag, quota
  3229. 2013.02-rc3, Released February 26th, 2013
  3230. Minor fixes.
  3231. Updated/fixed packages: conntrack-tools, dialog,
  3232. enlightenment, haserl, keyutils, libfif, libmad,
  3233. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  3234. ruby, spawn-fcgi, vtun
  3235. Issues resolved (http://bugs.uclibc.org):
  3236. #5960: fusion.ko driver does not install to target rootfs
  3237. 2013.02-rc2, Released February 19th, 2013
  3238. Fixes all over the tree.
  3239. Various manual updates and fixes.
  3240. Updated/fixed packages: busybox, collectd, gesftpserver,
  3241. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  3242. libglib2, libtorrent, libvorbis, neard, network-manager,
  3243. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  3244. Issues resolved (http://bugs.uclibc.org):
  3245. #5906: collectd client headers not exported
  3246. 2013.02-rc1, Released February 10th, 2013
  3247. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  3248. libraries install fixed. Add Linaro ARM
  3249. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  3250. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  3251. missing 32bit support for binary toolchains. Toolchain wrapper
  3252. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  3253. 7.1. Deprecate uClibc 0.9.31.
  3254. Architecture: Xtensa fixes, add missing powerpc variants, arm
  3255. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  3256. deprecated. Sparc: drop old unused variants
  3257. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  3258. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  3259. environment image support, U-Boot: add 2013.01.01
  3260. Linux: fix appended dtb handling for v3.8+ kernels, support
  3261. multiple device trees
  3262. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  3263. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  3264. updated, at91rm9200df: misc fixes. Lock kernel headers to
  3265. match kernel.
  3266. Infrastructure: Git download fixes. Toolchain make target
  3267. renamed from 'cross' to 'toolchain'. Eclipse integration
  3268. support. Option to set root password, post image scripts,
  3269. config scripts handling.
  3270. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  3271. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  3272. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  3273. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  3274. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  3275. diffutils, directfb, distcc, divine, dnsmasq, docker,
  3276. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  3277. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  3278. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  3279. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  3280. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  3281. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  3282. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  3283. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  3284. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  3285. libedbus, libedje, libeet, libefreet, libeina, libeio,
  3286. liberation, libelementary, libembryo, libethumb, libev,
  3287. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  3288. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  3289. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  3290. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  3291. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  3292. libxml2, libxslt, lighttpd, links, linux-firmware,
  3293. linux-fusion, ltp-testsuite, ltrace,
  3294. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  3295. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  3296. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  3297. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  3298. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  3299. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  3300. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  3301. python, python3, qemu, qextserialport, qt, quagga, radvd,
  3302. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  3303. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  3304. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  3305. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  3306. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  3307. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  3308. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  3309. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  3310. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  3311. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  3312. xserver_xorg-server, xstroke, xvkbd, xz
  3313. New packages: b43-firmware, b43-fwcutter, bustle,
  3314. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  3315. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  3316. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  3317. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  3318. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  3319. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  3320. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  3321. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  3322. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  3323. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  3324. spice-protocol, tcllib, tvheadend, udisks, usbredir
  3325. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  3326. zd1211-firmware
  3327. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  3328. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  3329. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  3330. xdriver_xf86-video-{tsend,xgi,xgixp}
  3331. Deprecated packages: xstroke
  3332. Issues resolved (http://bugs.uclibc.org):
  3333. #4237: building shared openssl w/-Os fails due to gcc bug
  3334. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  3335. #5602: python3 should install a "python" symbolic link
  3336. #5846: Extra slash added to last slash in URL
  3337. 2012.11.1, Released January 3rd, 2013:
  3338. Toolchain: Fixed non-largefile builds on recent Ubuntu
  3339. versions.
  3340. Arch: fix missing x86/generic handling, Build for Xtensa with
  3341. longcalls option.
  3342. Updated/fixed packages: dosfstools, qt
  3343. 2012.11, Released December 2nd, 2012:
  3344. Git shallow clone fix for older git version.
  3345. Updated/fixed packages: ctuio, libtool
  3346. Issues resolved (http://bugs.uclibc.org):
  3347. #5726: List all the available hook points
  3348. 2012.11-rc2, Released November 30th, 2012:
  3349. Minor fixes around the tree.
  3350. Various manual updates and fixes.
  3351. Add checks for legacy features.
  3352. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  3353. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  3354. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  3355. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  3356. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  3357. scons, strace, sylpheed
  3358. Issues resolved (http://bugs.uclibc.org):
  3359. #5732: Error : package/alsa-lib/alsa-lib.mk
  3360. 2012.11-rc1, Released November 17th, 2012
  3361. Fixes all over the tree and new features.
  3362. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  3363. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  3364. + nitrogen6x defconfigs.
  3365. Bootloaders: add u-boot 2012.07/10, ais target format, add
  3366. barebox 2012.08/09/10/11, linker overlap issue fix for
  3367. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  3368. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  3369. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  3370. Libtirpc support for modern glibc variants. Toolchain on
  3371. target has been deprecated.
  3372. Initial Aarch64 support, Xtensa support re-added.
  3373. Infrastructure: Use shallow git clone when possible, use
  3374. tarballs rather than git URLs for github. Moved to pkgconf
  3375. rather than pkg-config. System directory added, default
  3376. skeleton/device tables moved. More than 1 post-build script
  3377. can now be used. output/target now contains a
  3378. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  3379. understand how to (not) use it.
  3380. Manual has been reworked and extended.
  3381. Legal-info: Lots of package annotations, CSV file fixes,
  3382. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  3383. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  3384. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  3385. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  3386. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  3387. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  3388. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  3389. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  3390. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  3391. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  3392. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  3393. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  3394. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  3395. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  3396. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  3397. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  3398. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  3399. lmbench, lockfile-progs, logrotate, lshw, lsof,
  3400. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  3401. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  3402. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  3403. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  3404. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  3405. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  3406. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  3407. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  3408. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  3409. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  3410. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  3411. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  3412. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  3413. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  3414. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  3415. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  3416. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  3417. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  3418. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  3419. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  3420. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  3421. yasm
  3422. Deprecated packages: netkitbase, netkittelnet
  3423. Issues resolved (http://bugs.uclibc.org):
  3424. #807: [PATCH] samba - make iconv and smbd optional
  3425. #3049: binutils have a sysroot bug in ld
  3426. #5330: update vsftpd to 3.0.0
  3427. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  3428. #5666: Fails to build python 2.7.2 for 2440 arm
  3429. 2012.08, Release August 31th, 2012
  3430. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  3431. prboom, oprofile.
  3432. Added license information for: sqlite.
  3433. Changed the source URLs of all packages located on Sourceforge
  3434. in order to use the automatic mirror selection URL
  3435. downloads.sourceforge.net, and get rid of the
  3436. BR2_SOURCEFORGE_MIRROR option.
  3437. 2012.08-rc3, Released August 25th, 2012
  3438. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  3439. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  3440. Added license informations for: barebox, grub, syslinux,
  3441. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  3442. faad2, nano, fbdump, rsync, librsync, fontconfig,
  3443. inotify-tools,
  3444. 2012.08-rc2, Released August 15th, 2012
  3445. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  3446. Added license informations for: mxml, nanocom, empty, expat,
  3447. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  3448. input-event-daemon, luajit, cgilua, copas, coxpcall,
  3449. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  3450. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  3451. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  3452. mtd, openssl, psmisc, socat, spawn-fcgi.
  3453. Fixes to Microblaze external toolchains
  3454. configuration. Improvements of the pkg-stats
  3455. script. Out-of-tree fix for the graph-depends script.
  3456. Kernel headers version bump.
  3457. 2012.08-rc1, Released August 1st, 2012
  3458. Fixes all over the tree and new features.
  3459. Integration of a legal information reporting infrastructure,
  3460. which allows to generate detailed informations about the
  3461. licenses and source code of all components of a system
  3462. generated by Buildroot. License information will progressively
  3463. be added on packages.
  3464. Default configuration files added for Calao-systems USB-A9263
  3465. and Calao-systems USB-A9G20-LPW.
  3466. External toolchains update: allow download of a custom
  3467. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  3468. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  3469. 2011.09.
  3470. Allow the restriction of downloads to the primary site only.
  3471. This is useful for project developers who want to ensure that
  3472. the project can be built even if the upstream tarball
  3473. locations disappear.
  3474. Add a 'System configuration' choice to select between 3
  3475. different init systems: Busybox init, SysV init and Systemd
  3476. init.
  3477. Cleanups to the package infrastructure. The visible change to
  3478. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  3479. $(autotools-package)), and similarly for other package
  3480. infrastructures and host packages. Refer to the documentation
  3481. for details.
  3482. By default, automatic detection of the number of compilation
  3483. jobs to use, depending on the number of CPUs available.
  3484. Improvements to generate systems with static libraries only
  3485. (infrastructure and package fixes).
  3486. Add proper support in the Linux kernel package to generate
  3487. Device Tree Blobs or combined Device Tree / Kernel
  3488. images. This will be useful on Microblaze, PowerPC and ARM,
  3489. which are architectures making extensive use of the Device
  3490. Tree.
  3491. Updated/fixed packages: audiofile, autoconf, automake, axel,
  3492. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  3493. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  3494. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  3495. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  3496. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  3497. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  3498. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  3499. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  3500. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  3501. libfuse, libidn, libmad, libmbus, libmnl,
  3502. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  3503. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  3504. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  3505. lttng-tools, lua, m4, memtester, midori, mii-diag,
  3506. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  3507. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  3508. openssl, pciutils, php, polarssl, portaudio, pppd,
  3509. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  3510. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  3511. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  3512. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  3513. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  3514. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  3515. fbterm, flashrom, freerdp, inadyn, libfreefare,
  3516. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  3517. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  3518. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  3519. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  3520. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  3521. ramspeed, rtorrent, sound-theme-borealis,
  3522. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  3523. xinetd, zxing
  3524. Issues resolved (http://bugs.uclibc.org):
  3525. #1315: Allow use of older external toolchains without sysroot
  3526. support [won't fix]
  3527. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  3528. #5360: buildroot fails when building "host-libglib2 2.30.2
  3529. Building" [won't fix, upstream problem]
  3530. #5384: Can't build packages relying on gets on newer glibc
  3531. [fixed]
  3532. 2012.05, Released May 30th, 2012:
  3533. Updated/fixed packages: busybox, netsnmp, pptp-linux
  3534. 2012.05-rc3, Released May 25th, 2012:
  3535. Minor fixes around the tree.
  3536. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  3537. scp targets.
  3538. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  3539. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  3540. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  3541. xserver-xorg
  3542. 2012.05-rc2, Released May 18th, 2012:
  3543. Fixes all over the tree.
  3544. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  3545. dependency, disable decimal floats support, Linux 3.2.17 /
  3546. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  3547. without C++ support.
  3548. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  3549. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  3550. 2012.05-rc1, Released May 10th, 2012:
  3551. Fixes all over the tree and new features.
  3552. Use /etc/os-release for version info rather than
  3553. /etc/br-version.
  3554. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  3555. Apply-patches.sh: cleanups, archived patches handling fixes,
  3556. support series files.
  3557. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  3558. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  3559. atngw100, use 3.3.x for qemu configs.
  3560. Menu structure: Libraries moved out of multimedia section
  3561. Atom processor support. Prescott fix, blackfin ABI fix,
  3562. Microblaze architecture support (using ext toolchain). Cleanup
  3563. architecture names, deprecate Xtensa support.
  3564. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  3565. default to uClibc 0.9.33.x, enable
  3566. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  3567. fixes for external toolchains, linaro ext toolchains, new
  3568. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  3569. 1.15.2.
  3570. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  3571. support. Barebox: add 2012.04, remove 2011.12.
  3572. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  3573. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  3574. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  3575. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  3576. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  3577. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  3578. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  3579. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  3580. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  3581. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  3582. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  3583. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  3584. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  3585. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  3586. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  3587. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  3588. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  3589. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  3590. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  3591. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  3592. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  3593. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  3594. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  3595. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  3596. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  3597. xfsprogs, zlib
  3598. New packages: apr, apr-util, audiofile, bellagio,
  3599. conntrack-tools, empty, fmtools, glib-networking,
  3600. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  3601. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  3602. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  3603. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  3604. socketcand, stress, systemd, ushare, zeromq
  3605. Deprecated packages: ttcp
  3606. Removed packages: ntfsprogs
  3607. Issues resolved (http://bugs.uclibc.org):
  3608. #2353: [lua] fix build with 2010.08-rc1
  3609. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  3610. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  3611. #2881: Can't build project statically with external toolchain
  3612. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  3613. #4808: ccache may build against wrong zlib
  3614. #4880: New package lcdproc
  3615. #4886: New package protobuf
  3616. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  3617. #4898: * make: [target-finalize] Error 1 (ignored)*
  3618. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  3619. #4970: udev 181 fails to build if kernel version 3.3 is selected
  3620. #5018: dialog broken: exits with assert in uClibc
  3621. #5102: qt package moc, uic, rcc read from wrong place
  3622. #5144: Patch to fix ixon bug in uemacs
  3623. #5198: Line graphics output is broken in GNU Screen
  3624. #5204: Missing terminfo file(s) for GNU screen terminal type
  3625. 2012.02, Released February 29th, 2012:
  3626. Updated/fixed packages: libecore
  3627. 2012.02-rc3, Released February 27th, 2012:
  3628. Fixes all over the tree.
  3629. Automatic host dependencies handling for cmake packages
  3630. fixed. Customize package deprecated as using a post-build
  3631. script is nowadays the preferred way of adding extra stuff to
  3632. the rootfs.
  3633. Linux-headers 3.0.x / 3.2.x stable version bumped.
  3634. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  3635. Updated/fixed packages: dropbear, ffmpeg, libpng
  3636. 2012.02-rc2, Released February 19th, 2012:
  3637. Fixes all over the tree.
  3638. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  3639. linux-headers 3.0.x / 3.2.x stable versions.
  3640. Documentation: Added makedev / <pkg>_DEVICES /
  3641. <pkg>_PERMISSIONS documentation.
  3642. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  3643. libvncserver, mxml, python.
  3644. 2012.02-rc1, Released February 12th, 2012:
  3645. Fixes all over the tree and new features.
  3646. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  3647. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  3648. GDB 7.4, crosstool-NG 1.13.4.
  3649. Gentargets: scp and mercurial support.
  3650. Autotools: derive host dependencies from target by default.
  3651. Packages can now declare device table snippets.
  3652. Host utilities menu with commonly used host tools.
  3653. defconfigs: qemu configs for x86-64, mips and sparc, at91
  3654. defconfigs now use modern U-Boot / mainline Linux, added
  3655. lpc3250 defconfigs.
  3656. uClibc: remove 0.9.30, backport unshare() support, add
  3657. 0.9.32.1 / 0.9.33, use same config for ctng.
  3658. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  3659. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  3660. bootloaders added.
  3661. Various manual updates. Release tarballs now contain generated
  3662. manual in text/html/pdf formats.
  3663. Buildroot now calls the stop function of scripts in
  3664. /etc/init.d at shutdown.
  3665. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  3666. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  3667. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  3668. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  3669. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  3670. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  3671. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  3672. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  3673. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  3674. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  3675. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  3676. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  3677. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  3678. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  3679. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  3680. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  3681. python, python-serial, qt, ruby, samba, sdl, sdparm,
  3682. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  3683. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  3684. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  3685. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  3686. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  3687. xf86-video-sis, xfont_{encodings,font-util},
  3688. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  3689. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  3690. New packages: boost, connman, dstat, expedite, explorercanvas,
  3691. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  3692. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  3693. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  3694. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  3695. libvncserver, linux-firmware,
  3696. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  3697. open2300, python-distutilscross, python-dpkt,
  3698. python-netifaces, python-pygame, python-setuptools, rt-tests,
  3699. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  3700. xf86-input-tslib, xinput-calibrator
  3701. Issues resolved (http://bugs.uclibc.org):
  3702. #743: Add Transmission bit torrent option to buildroot
  3703. #755: Add Boost libraries as a package
  3704. #2299: Add crypto support to libsoup
  3705. #2617: Pixman 0.19.2 & Cairo 1.10.0
  3706. #3403: libgpg-error: bump to version 1.10
  3707. #3409: libgpg-error: download from gnupg.org
  3708. #3421: nano: make tiny flag optional
  3709. #3691: New EFL packages
  3710. #4664: Cannot patch AT91Bootstrap
  3711. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  3712. #4760: Qt: add host-pkg-config to dependency-list
  3713. 2011.11, Released November 30th, 2011:
  3714. Fixes all over the tree.
  3715. Bump kernel headers / default Linux version to 3.1.4.
  3716. Updated/fixed packages: ruby
  3717. 2011.11-rc3, Released November 26th, 2011:
  3718. Fixes all over the tree.
  3719. Toolchain: Fix gdb dependencies for external toolchains,
  3720. adjust uClibc patches so they don't confuse modern versions of
  3721. patch, bump crosstool-ng, kernel headers and linux versions.
  3722. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  3723. php, rsyslog, ruby, thttpd, xapp_xf86dga
  3724. Issues resolved (http://bugs.uclibc.org):
  3725. #4357: Prevent patch commands from accessing source control
  3726. #4369: Fix permissions on untared lsof archive
  3727. 2011.11-rc2, Released November 18th, 2011:
  3728. Fixes all over the tree and new features.
  3729. Updated asciidoc documentation
  3730. Toolchain: Bumped 3.x stable kernel headers, use wget in
  3731. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  3732. uClibc sparc fix.
  3733. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  3734. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  3735. Issues resolved (http://bugs.uclibc.org):
  3736. #3355: mplayer fails to build
  3737. #4021: uClibc: undefined reference to `__GI___errno_location'
  3738. #4297: Qt's qmake uses wrong pkg-config
  3739. 2011.11-rc1, Released November 11th, 2011:
  3740. Fixes all over the tree and new features.
  3741. Moved misc scripts and support stuff to support/. Renamed
  3742. patch-kernel.sh to support/scripts/apply-patches.sh.
  3743. Documentation: Moved to asciidoc format, make targets to
  3744. generate text/html/pdf/epub output added.
  3745. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  3746. added.
  3747. Bootloaders: Add support for custom git tree / tarballs for
  3748. barebox, similar to how it's handled for u-boot. Clean up
  3749. menuconfig options.
  3750. Toolchain: Update external codesourcery toolchain download
  3751. URLs after Codesourcery got bought by Mentor, add x86
  3752. toolchain, update toolchain versions and optimize toolchain
  3753. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  3754. updated GDB versions / download URLs. Binutils
  3755. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  3756. use ctng-1.13.0.
  3757. Package infrastructure: Support for local packages /
  3758. overrides, package dir / name arguments dropped from
  3759. {GEN,AUTO,CMAKE}TARGETS.
  3760. Linux: Kernel extensions infrastructure support, Xenomai +
  3761. RTAI support.
  3762. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  3763. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  3764. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  3765. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  3766. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  3767. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  3768. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  3769. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  3770. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  3771. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  3772. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  3773. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  3774. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  3775. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  3776. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  3777. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  3778. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  3779. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  3780. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  3781. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  3782. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  3783. pulseaudio, pv, rtai, vala, xenomai.
  3784. Removed packages: liboil, sfdisk, swfdec, webif
  3785. Issues resolved (http://bugs.uclibc.org):
  3786. #505: live555: new package
  3787. #507: Enable live and tv options in MPlayer-1.0rc2
  3788. #531: let e2fsprogs package to export headers to staging dir if needed
  3789. #1171: Linuxthreads new cannot find sysdep.h
  3790. #1357: Add bluez to buildroot system
  3791. #2107: New package: input-event-daemon
  3792. #2599: New package: orc (Oil Runtime Compiler)
  3793. #2605: gstreamer: Update to 0.10.30
  3794. #2677: introducing util-linux-ng as replacement for util-linux
  3795. #2917: Qt: Add declarative module
  3796. #3145: jffs2 image generation fails
  3797. #3271: netperf-2.4.5 fails to compile
  3798. #3331: xdata_xcursor-themes depends on xcursorgen
  3799. #3343: Add file:// download SITE_METHOD
  3800. #3391: Add support for specifying an external kernel tree
  3801. #3631: Error while compiling with Xorg
  3802. #3709: oprofile doesn't build for mipsel
  3803. #3925: midori not getting compile
  3804. #4045: Add support for downloading i386 toolchains from codesourcery
  3805. #4165: lrzsz-fix-symlink-at-rebuild.patch
  3806. #4171: makedevs-unused-but-set-variable.patch
  3807. #4183: Codesourcery toolchain download site has changed
  3808. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  3809. #4381: Add option to lighttpd to enable Lua support
  3810. #4387: Make sure that dest dir exists before installing mtd files
  3811. 2011.08, Released August 31th, 2011:
  3812. Fixes all over the tree.
  3813. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  3814. kernel headers.
  3815. Updated/fixed packages: ipset, python
  3816. 2011.08-rc2, Released August 29th, 2011:
  3817. Fixes all over the tree.
  3818. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  3819. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  3820. (broken).
  3821. Defconfigs: kernel updates, fix mini2440 serial port config,
  3822. remove old arm toolchain configs.
  3823. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  3824. targets similar to linux/busybox.
  3825. Updated/fixed packages: barebox, directfb, libsoup,
  3826. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  3827. usbmount, util-linux, xfont_font-misc-misc
  3828. Issues resolved (http://bugs.uclibc.org):
  3829. #3685: ncurses installation hangs due to old version of tic
  3830. #4093: Grub fails to install bz2 patch after conversion to...
  3831. 2011.08-rc1, Released August 4th, 2011:
  3832. Fixes all over the tree and new features.
  3833. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  3834. ext-toolchain-wrapper improvements, improved non-MMU
  3835. support. GCC 4.3.6 / 4.6.1.
  3836. GENTARGETS infrastructure extended to cover bootloaders and
  3837. Linux kernel as well. Options to retrive Linux/U-Boot from a
  3838. custom git repo instead of upstream tarballs.
  3839. Support for Linux 3.x and release candidate tarballs.
  3840. X-Loader bootloader for omap added.
  3841. Make source/external-deps now also works for external
  3842. toolchains / crosstool-ng backend.
  3843. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  3844. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  3845. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  3846. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  3847. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  3848. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  3849. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  3850. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  3851. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  3852. webkit, xorg-xserver, xz, zlib
  3853. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  3854. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  3855. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  3856. statserial, stunnel, ti-utils, uboot-tools, yajl
  3857. Deprecated packages: liboil, swfdec
  3858. Removed packages: hal
  3859. Issues resolved (http://bugs.uclibc.org):
  3860. #3559: libnspr: Add new package
  3861. #3595: patch to add libroxml
  3862. #3565: libnss: Add new package
  3863. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  3864. #3649: [PATCH] Add mapdir to existing pkg-config patch
  3865. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  3866. #3961: Nfs-utils: Remove SUSv3-function index
  3867. #3985: "help" target's defconfig list needs sort
  3868. #3997: bump libroxml to v2.1.0
  3869. 2011.05, Released May 27th, 2011:
  3870. Updated/fixed packages: makedevs
  3871. 2011.05-rc2, Released May 24th, 2011:
  3872. Fixes all over the tree.
  3873. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  3874. 2009q3 external toolchains added. Crosstool-NG bumped to
  3875. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  3876. bumped to 2.6.38.7.
  3877. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  3878. 2011.05-rc1, Released May 18th, 2011:
  3879. Fixes all over the tree and new features.
  3880. External toolchain improvements: We now build a binary
  3881. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  3882. enforces the correct compiler arguments, making an external
  3883. toolchain as easy to use outside of Buildroot as the internal
  3884. ones are. This also brought a cleanup of CFLAGS, making the
  3885. Buildroot build output easier to read.
  3886. Rootfs device handling improvements: Choice between static
  3887. /dev, devtmpfs and devtmpfs with either mdev or udev.
  3888. Toolchain: More preconfigured codesourcery external
  3889. toolchains, improved Crosstool-NG support, fix for GCC
  3890. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  3891. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  3892. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  3893. Linux: support for custom kernel image targets, E.G. for
  3894. powerpc builds with embedded device trees.
  3895. Misc fixes for qemu defconfigs, ensuring correct serial
  3896. terminal setup out of the box.
  3897. Misc gentarget / autotools handling fixes.
  3898. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  3899. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  3900. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  3901. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  3902. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  3903. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  3904. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  3905. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  3906. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  3907. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  3908. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  3909. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  3910. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  3911. New packages: bonnie++, can-utils, gdisk, htop,
  3912. input-event-daemon, libexif, libraw, libv4l, ngircd
  3913. Removed packages: festival
  3914. Issues resolved (http://bugs.uclibc.org):
  3915. #2131: Add OpenMP support to the toolchain
  3916. #3379: New Package: bonnie++
  3917. #3445: Not working openssl-10.0.0d on 386sx
  3918. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  3919. #3457: alsamixergui: broken URL
  3920. #3475: Calling sync on large filesystems when not always necessary
  3921. #3511: make busybox-menuconfig does not download busybox package
  3922. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  3923. #3571: u-boot: fw_printenv does not build
  3924. #3643: popt source url is not responding
  3925. #3733: dropbear: make zlib optional
  3926. #3757: Buildroot can't build mplayer with libmad
  3927. 2011.02, Released February 28th, 2011:
  3928. Fixes all over the tree.
  3929. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  3930. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  3931. Deprecated packages: devmem2, webif
  3932. Issues resolved (http://bugs.uclibc.org):
  3933. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  3934. #3259: Unable to build webkit (on arm)
  3935. #3295: slang fails to build on mipsel
  3936. #3325: ffmpeg fails to build
  3937. 2011.02-rc2, Released February 24th, 2011:
  3938. Fixes all over the tree.
  3939. Festival packages marked as broken. Unless someone steps up
  3940. to support them, they will be removed during the 2011.05
  3941. development cycle.
  3942. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  3943. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  3944. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  3945. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  3946. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  3947. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  3948. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  3949. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  3950. tcpreplay, tiff, wpa_supplicant, xcb-util,
  3951. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  3952. xdriver_xf86-input-{mouse,synaptics,void},
  3953. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  3954. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  3955. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  3956. xserver_xorg-server, xz
  3957. Removed packages: ace_of_penguins, vlc
  3958. Issues resolved (http://bugs.uclibc.org):
  3959. #3205: Failing chmod when running "make" in buildroot (openssl)...
  3960. #3277: quagga fails to build with SNMP support
  3961. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  3962. #3307: synergy fails to build due to missing XTest library
  3963. 2011.02-rc1, Released February 14th, 2011:
  3964. Fixes all over the tree and new features.
  3965. External toolchain improvements: clarification of the options,
  3966. and introduction of the toolchain profile concept, for
  3967. well-known toolchains. Buildroot is now capable of
  3968. automatically downloading and extracting well-known toolchains
  3969. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  3970. toolchains are supported). Crosstool-NG backend updated and
  3971. improved.
  3972. Complete rework of how hardware boards are supported.
  3973. Each board now only has a single defconfig file, and all
  3974. board-specific options have been removed. See
  3975. docs/buildroot.html#board_support for details.
  3976. Added support for the following boards: Mini2440, Qemu ARM
  3977. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  3978. r2d and Qemu x86. The Qemu boards support allows to easily
  3979. build systems that are known to work under Qemu.
  3980. Initial support for Blackfin processors.
  3981. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  3982. preparation for support of SDK. For the same reason, the
  3983. toolchain binaries (cross-compiler and other related tools)
  3984. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  3985. now also automatically returns correct values for cross
  3986. compilation, without needing any environment variables to be
  3987. set.
  3988. Ccache support reworked. Now used for both host and target
  3989. compilation, and cache is stored in ~/.buildroot-ccache.
  3990. Toolchain: uClibc 0.9.32-rc2, several components moved to
  3991. normal AUTOTARGET packages.
  3992. Generic cmake infrastructure, similar to the existing
  3993. GENTARGETS/AUTOTARGETS.
  3994. Support for bzr downloads, next to the existing git/svn support.
  3995. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  3996. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  3997. EXT2 file system size handling improved, UBI image support, fs
  3998. configuration options cleanup, U-Boot/Barebox version bumps.
  3999. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  4000. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  4001. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  4002. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  4003. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  4004. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  4005. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  4006. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  4007. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  4008. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  4009. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  4010. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  4011. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  4012. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  4013. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  4014. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  4015. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  4016. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  4017. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  4018. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  4019. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  4020. xkeyboard-config, xlib_libX11, xz, zlib
  4021. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  4022. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  4023. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  4024. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  4025. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  4026. xl2tp, xmlstarlet
  4027. Removed packages: hotplug, l2tp, libfloat, microcom,
  4028. ng-spice-rework
  4029. Issues resolved (http://bugs.uclibc.org):
  4030. #267: The make target: cross fails because toolchain_build_...
  4031. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  4032. #561: ltp-testsuite failed to install
  4033. #1447: Installing gfortran on PowerPC
  4034. #1651: Build fail caused by ccache in module-init-tools
  4035. #1681: Cross-compiled binaries shouldn't be installed into staging
  4036. #1723: [PATCH] axel: convert to generic package infrastructure and...
  4037. #1735: [PATCH] mplayer: convert to autotools infrastructure
  4038. #2551: [PATCH] native toolchain in the target filesystem fails
  4039. #2623: buildroot-snapshot-20100922 fails when compiling development...
  4040. #2647: makedevs package lacks support for 16-bit major/minor numbers
  4041. #2371: QT MYSQL Module does not build when MySQL installed on the host
  4042. #2839: compile fails in various packages with a odd message "error:...
  4043. #2887: tar "buffer overflow detected" error
  4044. #2893: Broken "make source" with external toolchain
  4045. #2905: Qt: Speed up compilation, if gui-module isn't selected
  4046. #2929: genext2fs: couldn't allocate a block (no free space)
  4047. #2935: Ntpdate isn't installed
  4048. #2965: Broken linkage to xkbcomp (blocking X server startup)
  4049. #2983: xlib_libX11 build failed
  4050. #3007: kexec doesn't build: Missing regdef.h file
  4051. #3085: Init scripts are not compatible with sysVinit (when busybox...
  4052. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  4053. #3109: abnormal `make busybox-menuconfig`
  4054. #3115: How about board specific makefiles?
  4055. #3169: python patch has typo, aborts build in scenario
  4056. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  4057. 2010.11, Released November 30th, 2010:
  4058. Fixes all over the tree.
  4059. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  4060. xserver-xorg
  4061. Issues resolved (http://bugs.uclibc.org):
  4062. #2773: squid with openssl support needs openssl on the host
  4063. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  4064. 2010.11-rc2, Released November 25th, 2010:
  4065. Fixes all over the tree.
  4066. Add support for LEON Sparc architecture variants. Fix make
  4067. source/external-deps for host packages.
  4068. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  4069. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  4070. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  4071. sysstat, webkit, zlib
  4072. Issues resolved (http://bugs.uclibc.org):
  4073. #759: Sysstat build broken without libintl
  4074. #2479: host-module-init-tools 3.11 fails to build
  4075. #2725: Buildroot overrides kernel config
  4076. #2785: mtd-utils build fails due to missing libmtd
  4077. #2791: Added PHP-Process Control to the PHP-Package
  4078. #2797: pciutils dependencies on zlib not taken into account
  4079. #2809: failed to compile libglib2
  4080. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  4081. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  4082. #2833: Failed to compile webkit without X11
  4083. 2010.11-rc1, Released November 8th, 2010:
  4084. Fixes all over the tree and new features.
  4085. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  4086. misc fixes + nconfig and savedefconfig targets.
  4087. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  4088. backend, GCC 4.5.x.
  4089. Fs: Squashfs 4.1 with lzo support
  4090. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  4091. generic new-style ones instead.
  4092. Download handling reworked and support for git/svn downloads
  4093. added.
  4094. Removed experimental shared config.cache support, as it is
  4095. too unreliable.
  4096. A convenience Makefile wrapper is created when using
  4097. out-of-tree building, similar to how it is done for the kernel.
  4098. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  4099. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  4100. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  4101. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  4102. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  4103. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  4104. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  4105. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  4106. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  4107. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  4108. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  4109. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  4110. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  4111. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  4112. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  4113. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  4114. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  4115. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  4116. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  4117. openssl, openvpn, oprofile, pango, patch, pcre, php,
  4118. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  4119. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  4120. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  4121. speex, sqlite, squashfs, startup-notification, strace,
  4122. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  4123. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  4124. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  4125. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  4126. xapp_xmore,
  4127. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  4128. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  4129. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  4130. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  4131. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  4132. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  4133. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  4134. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  4135. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  4136. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  4137. xterm, xvkbd, zlib
  4138. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  4139. Removed packages: dillo, libglib12, libgtk12, microwin,
  4140. pcmcia
  4141. Issues resolved (http://bugs.uclibc.org):
  4142. #901: new package: gpsd
  4143. #2389: Generate a Makefile wrapper in $(O)
  4144. #2461: wireless_tools: install shared library if needed
  4145. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  4146. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  4147. #2563: [PATCH] cairo: Expose the configure option to disable some...
  4148. #2581: libmms: Update to 0.6, and patch to work on architectures...
  4149. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  4150. #2731: Build order
  4151. #2737: buildroot configuration tool crashing when the path exceeds...
  4152. #2767: Build for lsof broken in buildroot-2010.08
  4153. 2010.08: Released August 31th, 2010:
  4154. Fixes all over the tree.
  4155. Updated/fixed packages: atk, xstroke
  4156. Removed packages: lxdoom
  4157. 2010.08-rc2, Released August 30th, 2010:
  4158. Fixes all over the tree.
  4159. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  4160. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  4161. versions.
  4162. Mark CRIS architecture as deprecated, as it is discontinued
  4163. upstream.
  4164. Marked shared config.cache as experimental and disabled by
  4165. default as it is known to break with certain package
  4166. combinations.
  4167. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  4168. added.
  4169. fs: old-style squashfs for big endian archs fixed.
  4170. Updated/fixed packages: busybox, gst-plugins-base,
  4171. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  4172. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  4173. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  4174. util-linux
  4175. Removed packages: stunnel
  4176. Issues resolved (http://bugs.uclibc.org):
  4177. #635: util-linux fails to build in 2009.08
  4178. #2239: netcat package installs its binary to target as avr32-linux...
  4179. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  4180. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  4181. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  4182. 2010.08-rc1, Released July 30th, 2010:
  4183. Fixes all over the tree and new features.
  4184. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  4185. and non-sysroot support removed. Added support for (snapshot)
  4186. NPTL in uClibc, 0.9.28.3 removed,
  4187. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  4188. removed yaboot. Support building u-boot from custom tarball,
  4189. u-boot 2010.06.
  4190. New GTK-based configurator, usable using 'make gconfig'.
  4191. Java packages marked as broken. Unless someone steps up to
  4192. support this, they will be removed during the 2010.11
  4193. development cycle.
  4194. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  4195. GTK+ on DirectFB has also been marked as deprecated, as it is
  4196. not supported in recent GTK+ versions, and more and more
  4197. packages depends on the new versions.
  4198. Unless someone steps up to support them, they will be removed
  4199. during the 2010.11 development cycle.
  4200. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  4201. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  4202. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  4203. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  4204. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  4205. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  4206. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  4207. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  4208. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  4209. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  4210. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  4211. ltrace, make, midori, module-init-tools, mplayer,
  4212. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  4213. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  4214. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  4215. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  4216. usbutils, webif, webkit, wireless_tools, xerces,
  4217. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  4218. Removed packages: modutils, portage, rxvt
  4219. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  4220. Issues resolved (http://bugs.uclibc.org):
  4221. #321: alsa-lib uses host include files for python which breaks ...
  4222. #361: linux kernel configuration choice works incorrectly
  4223. #387: Tremor not installed to toolchain
  4224. #401: new package: ffmpeg
  4225. #475: uImage target for U-boot failed generating
  4226. #543: ATK requires X11 on DirectFB target
  4227. #575: webkit: Buildroot Libtool Patch Fails
  4228. #583: build fails with external x86_64 toolchain
  4229. #729: sstrip creates corrupted headers
  4230. #829: Webkit r44552 needs libXt
  4231. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  4232. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  4233. #859: Add (head of) nptl branch to list of uClibc versions
  4234. #949: compile with debug info
  4235. #955: Grub fails to build with External Toolchain
  4236. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  4237. #1213: Move .config into output directory
  4238. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  4239. #1231: (sparc) Linux kernel fails to build
  4240. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  4241. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  4242. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  4243. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  4244. #1675: GMP Error during buildroot make process
  4245. #1741: external toolchain linking error
  4246. #1753: lmbench: convert to generic package infrastructure
  4247. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  4248. #1807: LZMA 4.32.7, Required header file(s) are missing
  4249. #1813: xkeyboard-config fails to build because of intltool problem
  4250. #1879: Bump iptables to 1.4.8
  4251. #1885: Add a bunch of lua modules
  4252. #1897: Bump libusb to 1.0.7
  4253. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  4254. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  4255. #1927: Bump file to 5.03 and migrate to autotargets
  4256. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  4257. #1945: PHP: add sqlite3 dependency when using external lib
  4258. #1951: Bump openssl to 0.9.8o
  4259. #1957: Bump sqlite to 3.6.23.1
  4260. #1975: Package removal/deprecation
  4261. #1981: zlib: bump to 1.2.5
  4262. #1987: intltool: Fix spelling mistake
  4263. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  4264. #1999: Typo in path checking
  4265. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  4266. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  4267. #2038: Bump ncurses to 5.7
  4268. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  4269. #2101: blackbox depends on locale support
  4270. #2119: Tries to build kernel, although disabled in config
  4271. #2125: libXfont build fail
  4272. #2143: buildroot compiler generates segfaulting statically linked exe..
  4273. #2149: xterm build failure
  4274. #2155: Compression lzo don't set for ubifs
  4275. #2161: [SECURITY] Update libpng to 1.2.44
  4276. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  4277. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  4278. #2191: linux-fusion build fail
  4279. #2221: Qt does not compile (dependencies not taken into account?)
  4280. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  4281. #2245: Netcat does not work due to incorrect assumptions about signed..
  4282. #2251: directory output/build after make *_defconfig not found
  4283. #2257: Convert netsnmp package to autotargets
  4284. #2263: Bump samba to 3.3.13
  4285. #2269: setserial causes make error
  4286. 2010.05, Released May 30th, 2010:
  4287. Fixes all over the tree.
  4288. Updated/fixed packages: coreutils, hal, libcap,
  4289. lockfile-progs, ncftp, xserver_xorg-server
  4290. Issues resolved (http://bugs.uclibc.org):
  4291. #1789: binutils fails to build for i386
  4292. #1843: Fix libcap build failure
  4293. #1855: XORG Keyboard driver fails to compile
  4294. 2010.05-rc3, Released May 27th, 2010:
  4295. Fixes all over the tree.
  4296. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  4297. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  4298. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  4299. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  4300. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  4301. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  4302. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  4303. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  4304. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  4305. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  4306. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  4307. Issues resolved (http://bugs.uclibc.org):
  4308. #75: arm buildroot "unrecognized option" error
  4309. #699: Buildroot fails to copy libstdc++ to target when using external...
  4310. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  4311. #1729: alsamixergui fails to build
  4312. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  4313. #1819: pciutils small bugs
  4314. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  4315. 2010.05-rc2, Released May 11th, 2010:
  4316. Fixes all over the tree.
  4317. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  4318. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  4319. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  4320. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  4321. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  4322. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  4323. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  4324. Removed packages: vice
  4325. Issues resolved (http://bugs.uclibc.org):
  4326. #849: "customize" package copies files to wrong place in target tree
  4327. #985: Bump usb_modeswitch package to 1.1.0
  4328. #1135: Package customize. Wrong copying
  4329. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  4330. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  4331. #1669: Busybox failed to compile when using an external toolchain
  4332. #1699: Fix usbutils dependencies and bump
  4333. #1705: Fix pciutils broken cross compiling
  4334. #1717: External toolchain fixes for hostapd & wpa_supplicant
  4335. 2010.05-rc1, Released May 3rd, 2010:
  4336. Cleaned up / restructured package menu.
  4337. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  4338. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  4339. removed broken nios2 support, ppc e300cX/e500mc support,
  4340. improved external toolchain support, GDB 7.x support.
  4341. X.org updated to 7.5.
  4342. New packages: cdrkit, cramfs, genext2fs, genromfs,
  4343. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  4344. squashfs, squashfs3, squid
  4345. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  4346. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  4347. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  4348. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  4349. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  4350. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  4351. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  4352. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  4353. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  4354. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  4355. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  4356. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  4357. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  4358. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  4359. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  4360. xproto_xf86miscproto, xserver_xorg-server
  4361. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  4362. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  4363. xproto_xf86miscproto
  4364. Issues resolved (http://bugs.uclibc.org):
  4365. #513: Add new squid package
  4366. #661: lmbench: new package
  4367. #719: Add lua option to haserl
  4368. #800: [PATCH] iperf update to 2.0.4
  4369. #803: [PATCH] lua - add shared library patch and config option for...
  4370. #805: [PATCH] mdadm - version update
  4371. #817: integrator926_defconfig uses unsupported uboot board name
  4372. #851: Add option to specify --sysroot value for external toolchain
  4373. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  4374. package for compatibility with old packages that expect
  4375. the pre-1.0 API.
  4376. #1105: Add new netperf package
  4377. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  4378. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  4379. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  4380. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  4381. #1189: Wrong u-boot configuration name for integrator926 target
  4382. #1219: kernel headers not correctly installed into toolchain/staging
  4383. #1267: Wrong BR2_EXTRA_VERSION
  4384. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  4385. #1303: Add librsync package
  4386. #1321: Busybox link fails due to lack of --sysroot option
  4387. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  4388. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  4389. #1369: cannot build radvd (flex problem)
  4390. #1387: xlib_libX11-1.3.2 can't find libjpeg
  4391. #1411: [SECURITY] Update openssl package to 0.9.8n
  4392. #1417: Bump iptables to 1.4.7
  4393. #1423: Bump e2fsprogs to 1.41.11
  4394. #1429: [SECURITY] Update php to 5.2.13
  4395. #1441: Add binutils 2.20.1
  4396. #1447: Package installation on target with debug symbols is broken
  4397. #1459: Misc QA fixes
  4398. #1489: radvd update to 1.6
  4399. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  4400. #1537: dev entries not created anymore
  4401. #1555: Fix default uclibc-0.9.31 configuration
  4402. #1561: [SECURITY] Update samba to 3.3.12
  4403. #1567: openssl0.9.8n fails to compile
  4404. #1573: Alsa-utils alsactl/init/* not installed to target
  4405. #1591: portmap fails to compile
  4406. #1615: Convert eeprog package to gentargets
  4407. #1645: Bump hostapd package to 0.7.2
  4408. 2010.02, Release February 26th, 2010:
  4409. Fixes all over the tree.
  4410. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  4411. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  4412. xfont_font-util
  4413. Removed packages: hostap, openmotif, xpdf
  4414. Issues resolved (http://bugs.uclibc.org):
  4415. #165: openmotif does not build
  4416. #1147: Remove obsolete hostap package
  4417. #1183: make source fails to download gmp, mpfr and patches
  4418. 2010.02-rc2, Released February 23th, 2010:
  4419. Fixes all over the tree and new features.
  4420. New packages: intltool
  4421. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  4422. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  4423. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  4424. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  4425. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  4426. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  4427. xlib_libfontenc, xproto_trapproto, zlib
  4428. Removed package: xboard
  4429. Issues resolved (http://bugs.uclibc.org):
  4430. #335: atk looks for the path to the gnome library on the host
  4431. #355: Please update WebKit - it doesn't compile!
  4432. #453: libglib2 autoreconf
  4433. #457: e2fsprogs link problem
  4434. #459: libgtk2 autoreconf
  4435. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  4436. #671: Bash fails to build when building buildront on Ubuntu 9.04
  4437. #711: WebKit host dependencies problems
  4438. #821: cp: illegal operation
  4439. #1039: Not compiled on ubuntu karmic
  4440. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  4441. 2010.02-rc1, Released February 9th, 2010:
  4442. Fixes all over the tree and new features.
  4443. Generalized autotools infrastructure to be usable for
  4444. non-autotools packages, see package/Makefile.package.in for
  4445. details.
  4446. Cleaned up avr32 toolchain config, external source-based
  4447. toolchain support is gone.
  4448. Dependency checks: Also check for makeinfo, only print output
  4449. on errors.
  4450. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  4451. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  4452. tcpreplay
  4453. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  4454. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  4455. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  4456. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  4457. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  4458. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  4459. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  4460. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  4461. Removed package: asterisk, openswan
  4462. Issues resolved (http://bugs.uclibc.org):
  4463. #515: tcpreplay: new package
  4464. #553: Wrong DirectFB ps2mouse limitation
  4465. #559: mesa3d build fails
  4466. #679: Autoconf cannot find M4
  4467. #739: New/updated hostapd package
  4468. #749: Bump usbutils package to version 0.86
  4469. #751: Kernel 2.6 snapshot fetch fail
  4470. #753: Bump lighttpd package to 1.4.25
  4471. #757: U-Boot: mkimage cannot be installed using external toolchain
  4472. #761: Add binutils 2.20 to toolchain options
  4473. #763: [SECURITY] Update pcre to 7.9
  4474. #765: Add buildroot branding to gcc
  4475. #767: Bump iw package to 0.9.18
  4476. #773: [SECURITY] Update bind to 9.5.2-P1
  4477. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  4478. #813: Drop not very useful generic package selection options ...
  4479. #823: Editor backup files (~) is copied from the target_skeleton
  4480. #827: Bump mtd-utils package to version 1.2.0
  4481. #841: Build error
  4482. #913: Bump iptables to 1.4.6
  4483. #919: Bump usb_modeswitch package to 1.0.7
  4484. #925: Bump wpa_supplicant package to 0.6.10
  4485. #931: Bump kismet package to 2010-01-R1
  4486. #937: Bump openvpn package to 2.1.1
  4487. #943: Bump sqlite package to 3.6.22
  4488. #961: Bump dnsmasq to 2.52
  4489. #967: Bump netstat-nat to 1.4.10
  4490. #973: Bump iw to 0.9.19
  4491. #1003: DHCP options disabled with busybox-1.16.0
  4492. #1009: [SECURITY] Bump php to 5.2.12
  4493. #1015: [SECURITY] Bump bind to 9.5.1-P2
  4494. #1027: Busybox flash commands conflict with those from mtd-utils
  4495. #1063: [SECURITY] Update lighttpd to 1.4.26
  4496. 2009.11, Released December 1st, 2009:
  4497. Additional fixes and cleanups.
  4498. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  4499. microperl, ncurses, vim
  4500. Issues resolved (http://bugs.uclibc.org):
  4501. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  4502. 2009.11-rc2, Released November 29th, 2009:
  4503. Additional fixes and cleanups.
  4504. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  4505. 2009.11-rc1, Released November 23rd, 2009:
  4506. Fixes all over the tree and new features.
  4507. Cleaned up / Simplified build directory layout. Refer to
  4508. docs/buildroot.html#using for details.
  4509. Target defconfig files moved to configs/ and listed in 'make help'
  4510. output.
  4511. Fixed *clean targets. Now clean removes everything generated,
  4512. so you can do a fresh rebuild. Distclean furthermore removes
  4513. kbuild tools and .config, bringing the source tree back in a
  4514. pristine state.
  4515. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  4516. soft / hardfloat setting for architecture, ensure target-ldd
  4517. gets installed.
  4518. New packages: divine, gvfs, libarchive, libmicrohttpd,
  4519. sdl_sound, swfdec, sysstat
  4520. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  4521. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  4522. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  4523. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  4524. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  4525. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  4526. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  4527. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  4528. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  4529. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  4530. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  4531. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  4532. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  4533. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  4534. Issues resolved (http://bugs.uclibc.org):
  4535. #301: allow to install libsmbclient
  4536. #303: add gvfs package
  4537. #477: Add sdl_sound package
  4538. #487: Make kismet package sexier
  4539. #511: New package usb_modeswitch
  4540. #527: misc fixes for dnsmasq package
  4541. #565: libevent: Bump version and clean up makefile
  4542. #587: Use iptables multipurpose binaries and bump to 1.4.4
  4543. #593: Missing early check for patch(1)
  4544. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  4545. #609: libmicrohttpd: New package
  4546. #615: python: Don't delete .py files unless asked
  4547. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  4548. #619: netkittelnet requires netkitbase to install, but there's no ...
  4549. #645: allow to build nbd-server with NBD package
  4550. #653: [SECURITY] Update php package to version 5.2.11
  4551. #655: Update sqlite package to version 3.6.18
  4552. #657: Bug in imagemagick-clean target
  4553. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  4554. #665: [PATCH] Samba package
  4555. #667: [PATCH] e2fsprogs
  4556. #683: SDL-dfb does not select directfb
  4557. #701: make install problem with unstripped binaries
  4558. #703: [SECURITY] Update openssl package to 0.9.8l
  4559. #705: Bump spawn-fcgi package to 1.6.3
  4560. #709: Bump lighttpd package to 1.4.24
  4561. #713: Migrate openntpd package to Makefile.autotools.in
  4562. #715: Bump libidn package to 1.15 and other fixes
  4563. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  4564. #731: Bump iw package to 0.9.17
  4565. 2009.08, Released August 31th, 2009:
  4566. Additional fixes and cleanups.
  4567. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  4568. sdl_net, util-linux.
  4569. Issues resolved (http://bugs.uclibc.org):
  4570. #529: util-linux doesn't find headers and include libs correctly
  4571. #557: Build ctorrent with SSL support if available
  4572. 2009.08-rc3, Released August 26th, 2009:
  4573. Additional fixes and cleanups.
  4574. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  4575. directfb, enchant, kernel headers.
  4576. Issues resolved (http://bugs.uclibc.org):
  4577. #471: Allow directfb compilation with debug
  4578. #541: Removal of CVS directories in target filesystem broken
  4579. #547: berkeleydb: Update config.{sub, guess}
  4580. #549: enchant: Fix dependencies.
  4581. #569: Fix alsa-utils build for x86 on x86-64
  4582. 2009.08-rc2, Released August 6th, 2009:
  4583. Additional fixes and new features.
  4584. New packages: libuuid, gcc 4.3.4.
  4585. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  4586. jamvm, libusb, microperl, neon, popt, sed, webkit.
  4587. Fixed issue with 'make oldconfig'
  4588. Issues resolved (http://bugs.uclibc.org):
  4589. #525: sed broken with external toolchain
  4590. #537: Fix gzip build with recent glibc
  4591. 2009.08-rc1, Released August 2nd, 2009:
  4592. Fixes all over the tree and new features.
  4593. Improvement of external toolchain support:
  4594. - Support for glibc toolchains.
  4595. - The toolchain configuration announced to Buildroot is
  4596. verified against the real toolchain configuration.
  4597. - Fixes, documentation.
  4598. Cleanup X.org support: clarified configuration options, and
  4599. removed mandatory dependency on useless libraries such as
  4600. libXt or libXaw.
  4601. New QT-based configurator, usable using 'make xconfig'.
  4602. Support for the Xtensa architecture.
  4603. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  4604. headers.
  4605. New packages: bmon, ctorrent, dosfstools, enchant,
  4606. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  4607. sdl_gfx, spawn-fcgi.
  4608. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  4609. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  4610. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  4611. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  4612. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  4613. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  4614. wpa-supplicant, xdriver_xf86-input-synaptics,
  4615. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  4616. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  4617. xutil_util-macros.
  4618. Issues resolved (http://bugs.uclibc.org):
  4619. #83: liblockfile fails to compile due to eaccess redefinition
  4620. #163: Xtensa architecture port
  4621. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  4622. #241: device mapper + lvm2: build together
  4623. #243: ctorrent: new package
  4624. #247: ntfsprogs: new package
  4625. #271: Library 'libgcc_s.so.1' not installed in search path
  4626. #287: New package libnl
  4627. #289: New package iw
  4628. #331: Update MPlayer to version 1.0rc2
  4629. #333: Bump sqlite package to 3.6.15
  4630. #349: update libsoup to version 2.26.2
  4631. #357: New package netstat-nat
  4632. #359,#413: Upgrade openvpn to Makefile.autotools.in
  4633. #367: linux kernel compile error for arm926t
  4634. #369: Add SDL_gfx package
  4635. #373: Support for building gstreamer without libxml
  4636. #379: update DirectFB to version 1.4.0
  4637. #383: gst-plugins-good: Allow soup plugin to be configured
  4638. #385: neon: Fix pkgconfig dependency
  4639. #387: Tremor not installed to toolchain
  4640. #389: New package bmon
  4641. #391: gstreamer: Bump version to 0.10.23
  4642. #393: gst-plugins-base: Bump version to 0.10.23
  4643. #395: gst-plugins-bad: New package
  4644. #403: Error while building iso9660 image
  4645. #409: Bump php package to 5.2.10
  4646. #411: ipsec-tools: Bump version to 0.7.2
  4647. #417: New package spawn-fcgi
  4648. #419: Bump lighttpd package to 1.4.23
  4649. #421: toolchain: Clean up toolchain locale support menu
  4650. #427: webkit: Update to WebKit svn r44552
  4651. #437: ltp-testsuite: Bump version to 20090630
  4652. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  4653. #467: DirectFB 1.4.1
  4654. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  4655. #491: libxml2: Bump version to 0.7.3
  4656. #495: Bump bind package to 9.5.1-P3 (security)
  4657. #497: OpenSSL RSA key generation hangs on x86_64
  4658. #509: Bump sqlite package to 3.6.16
  4659. #523: pciutils broken with external toolchain
  4660. #533: Update gamin to 0.1.10 to fix compilation
  4661. 2009.05, Released June 1st, 2009:
  4662. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  4663. version and marked ubifsroot as broken.
  4664. 2009.05-rc3, Released May 27th, 2009:
  4665. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  4666. busybox, curl, libusb, readline, python and strace.
  4667. Issues resolved (http://bugs.uclibc.org):
  4668. #345: libcurl package needs a urandom fix
  4669. 2009.05-rc2, Released May 19th, 2009:
  4670. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  4671. for newer hosts), stable kernel versions, busybox, cups,
  4672. dmraid, docker, mesa3d, rsync and updated defconfigs.
  4673. xserver marked as broken on AVR32 and atngw100-expanded
  4674. config removed.
  4675. Issues resolved (http://bugs.uclibc.org):
  4676. #167: metacity does not build
  4677. #295: gamin installs python support even if python is disabled
  4678. #323: gen_matypes fails to execute during build of Mesa when us...
  4679. 2009.05-rc1, Released May 5th, 2009:
  4680. Fixes all over the tree, further conversion of packages to
  4681. Makefile.autotools.in and we now build host versions of
  4682. packages where needed for build time dependencies instead of
  4683. relying on the correct versions being available on the build
  4684. host. Ancient toolchain / busybox versions have furthermore
  4685. been removed as announced in the 2009.02 release notes.
  4686. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  4687. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  4688. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  4689. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  4690. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  4691. util-linux, xorg7, xerces
  4692. Issues resolved (http://bugs.uclibc.org):
  4693. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  4694. and a ton of other improvements
  4695. #19: page.h missing by util-linux
  4696. #37: update libglib2 to version 2.18.4
  4697. #61: tslib puts staging_dir into pkgconfig file
  4698. #69: tar refuses to build
  4699. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  4700. #73: Bump openssl package to the latest version
  4701. #81: New package wpa_supplicant
  4702. #99: new package: flac
  4703. #101: update gstreamer packages
  4704. #105,#313: menuconfig segfaults on tinyx if wchar is not
  4705. selected
  4706. #107: convert libvorbis to Makefile.autotools.in
  4707. #109: Make pppd package avoid bsd err
  4708. #111: binutils 2.17 fails to build when texinfo >= 4.10
  4709. #133: Modify ncurses5-config to get correct include path
  4710. #137: Bump php to version 5.2.9
  4711. #139: Bump sqlite to 3.6.11 and convert to
  4712. Makefile.autotools.in
  4713. #145: Bump bind package to 9.5.1-P1 (security)
  4714. #147: buildroot toolchain fails to build w/binutils-2.19.1
  4715. #151: openssl package trivial fixes
  4716. #161: vim fails on patching with errors in configure.patch
  4717. #169: blackbox-0.70.1 does not build
  4718. #177: xdriver_xf86-input-keyboard does not build
  4719. #179: Upgrade dropbear to Makefile.autotools.in
  4720. #181: Update to Xorg 7.4
  4721. #187: ntfs-3g: could not build cross
  4722. #191: alsa-lib ARM binaries always built with EABI
  4723. #213: Bump wpa_supplicant package to version 0.6.9
  4724. #217: Bump openssl package to 0.9.8k (security)
  4725. #219: Toolchain build fails on m4
  4726. #225: m4 macros are out of place
  4727. #233: make ipv6 optional in iptables
  4728. #237: ncftp: convert to Makefile.autotools.in
  4729. #239: ntfs-3g: convert to Makefile.autotools.in
  4730. #245: lzop: new package
  4731. #271: Bump bind package to 9.5.1-P2 (security)
  4732. #277: Bump sqlite package to 3.6.16
  4733. #279: update libglib2 to version 2.20.1
  4734. #281: update DirectFB to version 1.2.8
  4735. #283: add taglib
  4736. #285: compilation of samba fails if IPV6 support is missing
  4737. #293: update samba to version 3.3.3
  4738. #299: add shared-mime-info package
  4739. #307: make openssl package respect build flags