kernel-vl.spec 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278
  1. %bcond_with systemd
  2. %bcond_without compat_grub_legacy
  3. %define _noVersionedDependencies 1
  4. %define _minimum_patches 0
  5. %define _apply_drm_patches 1
  6. %if "%{?_dist_release}" > "vl6"
  7. %global kmod kmod
  8. %global mkinitrd dracut
  9. %global mkinitrd_version 053
  10. %else
  11. %global kmod module-init-tools
  12. %global mkinitrd mkinitrd
  13. %global mkinitrd_version 6.0.93
  14. %endif
  15. # kernel packages are duplicatable
  16. %global _docdir_fmt %%{name}-%%{version}
  17. # What parts do we want to build? We must build at least one kernel.
  18. # These are the kernels that are built IF the architecture allows it.
  19. %define buildup 1
  20. %define buildpae 0
  21. %define builddoc 0
  22. %define buildsource 0
  23. %define with_tools 1
  24. %define with_bpftool 1
  25. %define with_headers 1
  26. %define with_firmware 0
  27. # Versions of various parts
  28. #
  29. # Polite request for people who spin their own kernel rpms:
  30. # please modify the "release" field in a way that identifies
  31. # that the kernel isn't the stock distribution kernel, for example by
  32. # adding some text to the end of the version number.
  33. #
  34. %define majorver 6
  35. %define sublevel 1
  36. %define patchlevel 62
  37. %define kversion %{majorver}.%{sublevel}
  38. %define rpmversion %{majorver}.%{sublevel}.%{patchlevel}
  39. %define release 1%{?_dist_release}%{?with_systemd:.systemd}
  40. %define make_target bzImage
  41. %define hdrarch %_target_cpu
  42. %define asmarch %_target_cpu
  43. %define KVERREL %{rpmversion}-%{release}
  44. # groups of related archs
  45. %define all_x86 i686
  46. # Override generic defaults with per-arch defaults
  47. # don't build noarch kernels or headers
  48. %ifarch noarch
  49. %define builddoc 1
  50. %define buildsource 1
  51. %define buildup 0
  52. %define buildpae 0
  53. %define with_headers 0
  54. %define with_firmware 0
  55. %define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-*.config
  56. %endif
  57. %ifarch i686
  58. %define buildpae 1
  59. %endif
  60. # source/doc build section is moved to x86_64
  61. %ifarch i686
  62. %define with_headers 1
  63. %define buildsource 0
  64. %define builddoc 0
  65. %define with_firmware 0
  66. %define _binaries_in_noarch_packages_terminate_build 0
  67. %endif
  68. %ifarch %{all_x86}
  69. %define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-i686*.config
  70. %define image_install_path boot
  71. %define hdrarch i386
  72. %define asmarch x86
  73. %endif
  74. # build x86 headers on x86_64 build
  75. # build noarch package with x86_64 build
  76. %ifarch x86_64
  77. %define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-x86_64*.config
  78. %define image_install_path boot
  79. %define asmarch x86
  80. %define with_headers 1
  81. %define buildsource 1
  82. %define builddoc 1
  83. %endif
  84. %if %{with systemd}
  85. %define builddoc 0
  86. %define buildsource 0
  87. %define buildup 0
  88. %define buildpae 0
  89. %define with_headers 0
  90. %define with_firmware 0
  91. %define with_tools 1
  92. %define with_bpftool 0
  93. %endif
  94. #
  95. # Three sets of minimum package version requirements in the form of Conflicts:
  96. # to versions below the minimum
  97. #
  98. #
  99. # First the general kernel 2.6 required versions as per
  100. # Documentation/Changes
  101. #
  102. %define kernel_dot_org_conflicts ppp <= 2.3.15, pcmcia-cs <= 3.1.20, isdn4k-utils <= 3.0, mount < 2.10r-5, nfs-utils < 1.0.3, e2fsprogs < 1.29, util-linux < 2.10, jfsutils < 1.0.14, reiserfsprogs < 3.6.3, xfsprogs < 2.1.0, procps < 2.0.9, oprofile < 0.5.3
  103. #
  104. # Then a series of requirements that are distribution specific, either
  105. # because we add patches for something, or the older versions have
  106. # problems with the newer kernel or lack certain things that make
  107. # integration in the distro harder than needed.
  108. #
  109. %define package_conflicts cipe < 1.4.5, kudzu <= 0.92, initscripts < 6.51, dev < 3.2-7, iptables < 1.2.5-3, bcm5820 < 1.81, nvidia-rh72 <= 1.0 ipw2200-firmware < 2.3 selinux-policy-targeted < 1.23.16-1
  110. #
  111. # Several packages had bugs in them that became obvious when the NPTL
  112. # threading code got integrated.
  113. #
  114. %define nptl_conflicts SysVinit < 2.84-13, pam < 0.75-48, vixie-cron < 3.0.1-73, privoxy < 3.0.0-8, spamassassin < 2.44-4.8.x, cups < 1.1.17-13
  115. #
  116. # We moved the drm include files into kernel-headers, make sure there's
  117. # a recent enough libdrm-devel on the system that doesn't have those.
  118. #
  119. %define kernel_headers_conflicts libdrm-devel < 2.4.0-4 cpufrequtils < 009
  120. #
  121. # Packages that need to be installed before the kernel is, because the %%post
  122. # scripts use them.
  123. #
  124. %define kernel_prereq fileutils, %{kmod}, initscripts >= 8.80, %{mkinitrd} >= %{mkinitrd_version}, linux-firmware >= 20110601-1, /usr/bin/kernel-install
  125. #
  126. # stop to remove %%{buildroot} before %%install
  127. #
  128. %global __spec_install_pre %{___build_pre}
  129. #
  130. # for compressing modules
  131. #
  132. %global zipmodules 1
  133. %if %{zipmodules}
  134. # for parallel xz processes, replace with 1 to go back to single process
  135. %global zcpu `nproc --all`
  136. %endif
  137. %define __remove_unwanted_dbginfo_install_post \
  138. rm -rf $RPM_BUILD_ROOT/usr/lib/debug/usr/src; \
  139. %{nil}
  140. %define __module_compress_install_post \
  141. if [ "%{zipmodules}" -eq "1" ]; then \
  142. find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | xargs -P%{zcpu} xz; \
  143. fi \
  144. %{nil}
  145. %if "%{buildup}" != "0"
  146. %define __spec_install_post \
  147. %{?__debug_package:%{__debug_install_post}}\
  148. %{__arch_install_post}\
  149. %{__os_install_post}\
  150. %{__remove_unwanted_dbginfo_install_post}\
  151. %{__module_compress_install_post}
  152. %endif
  153. #
  154. # package info
  155. #
  156. Name: kernel
  157. Summary: The Linux kernel (the core of the Linux operating system)
  158. Summary(ja): Linux カーネル (Linux オペレーティングシステムの心臓部分)
  159. Version: %{rpmversion}
  160. Release: %{release}
  161. Group: system
  162. Vendor: Project Vine
  163. Distribution: Vine Linux
  164. Packager: daisuke, shaolin, iwamoto
  165. License: GPLv2
  166. ExclusiveArch: noarch i686 x86_64
  167. ExclusiveOS: Linux
  168. Provides: kernel = %{rpmversion}
  169. Provides: kernel26 = %{rpmversion}
  170. Provides: kernel-drm = 4.3.0
  171. Provides: kernel-drm-nouveau = 16
  172. Provides: kernel-%{_target_cpu} = %{rpmversion}-%{release}
  173. Provides: alsa-driver = 1.0.20
  174. Requires(pre): %{kernel_prereq}
  175. Conflicts: %{kernel_dot_org_conflicts}
  176. Conflicts: %{package_conflicts}
  177. Conflicts: %{nptl_conflicts}
  178. # We can't let RPM do the dependencies automatic because it'll then pick up
  179. # a correct but undesirable perl dependency from the module headers which
  180. # isn't required for the kernel proper to function
  181. AutoReqProv: no
  182. #
  183. # List the packages used during the kernel build
  184. #
  185. BuildRequires: %{kmod}
  186. BuildRequires: patch >= 2.5.4, bash >= 2.03, tar
  187. BuildRequires: coreutils
  188. BuildRequires: bzip2, gzip, xz
  189. BuildRequires: xz-lzma-compat
  190. BuildRequires: findutils, m4, perl, make >= 3.78, gnupg, diffutils
  191. BuildRequires: net-tools
  192. BuildRequires: gcc >= 3.3.5, binutils >= 2.15
  193. BuildRequires: bc
  194. BuildRequires: flex
  195. BuildRequires: bison
  196. BuildRequires: rsync
  197. BuildRequires: openssl-devel
  198. BuildRequires: linux-firmware
  199. BuildRequires: elfutils-libelf-devel
  200. %if %{with_tools}
  201. BuildRequires: pciutils-devel gettext ncurses-devel
  202. BuildRequires: libcap-devel
  203. %endif
  204. BuildRequires: zlib-devel binutils-devel
  205. BuildRequires: glibc-static
  206. Source0: https://cdn.kernel.org/pub/linux/kernel/v%{majorver}.x/linux-%{kversion}.tar.xz
  207. Source10: COPYING.modules
  208. Source11: genkey
  209. Source21: kernel-%{kversion}-i686.config
  210. Source22: kernel-%{kversion}-i686-pae.config
  211. Source23: kernel-%{kversion}-x86_64.config
  212. Source30: cpupower_initd
  213. Source31: cpupower_sysconfig
  214. Source32: cpupower.service
  215. # Source 100 - 500 for Vine Linux
  216. # fb boot logo
  217. Source100: logo_vine_clut224.ppm
  218. #
  219. # Patches 0 through 100 are meant for core subsystem upgrades
  220. #
  221. %if %{patchlevel}
  222. Patch1: https://mirrors.edge.kernel.org/pub/linux/kernel/v%{majorver}.x/patch-%{kversion}.%{patchlevel}.xz
  223. %endif
  224. # Misc bits.
  225. Patch1610: linux-2.6.23-atkbd-dell-multimedia.patch
  226. Patch1650: linux-3.8-input-kill-stupid-messages.patch
  227. Patch1770: linux-2.6-valid-ether-addr.patch
  228. Patch1890: linux-2.6.35-mmc-sdhci-update.patch
  229. Patch1900: linux-2.6.35-quirk-lenovo-itpm.patch
  230. # SCSI
  231. Patch2301: linux-2.6.23-VMWare5-fix-LSI_emulation.patch
  232. #
  233. # 10000 to 20000 is for stuff that has to come last due to the
  234. # amount of drivers they touch. But only these should go here.
  235. # Not patches you're too lazy for to put in the proper place.
  236. #
  237. Patch10000: linux-5.10-LINUX_COMPILER-LANG_C.patch
  238. Patch10010: linux-5.4_tmon_Makefile.patch
  239. # Security fix patches
  240. # END OF PATCH DEFINITIONS
  241. BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root
  242. %description
  243. The kernel package contains the Linux kernel (vmlinuz), the core of any
  244. Linux operating system. The kernel handles the basic functions
  245. of the operating system: memory allocation, process allocation, device
  246. input and output, etc.
  247. %description -l ja
  248. kernel パッケージには、Linux オペレーティングシステムの心臓部分とも
  249. いえる Linux カーネル (vmlinuz) が含まれています。
  250. カーネルは,メモリ管理,プロセス管理,デバイスの入出力等,オペレーティング
  251. システムの基本的な部分を司ります。
  252. %package devel
  253. Summary: Development package for building kernel modules to match the kernel.
  254. Summary(ja): 特定のバージョンのカーネル用のモジュールを構築するための開発パッケージ
  255. Group: programming
  256. AutoReqProv: no
  257. Provides: kernel26-devel-%{_target_cpu} = %{rpmversion}-%{release}
  258. Requires: elfutils-libelf-devel
  259. %description devel
  260. This package provides kernel headers and makefiles sufficient to build modules
  261. against the kernel package.
  262. ### kernel-source
  263. %package source
  264. Summary: The source code for the Linux kernel.
  265. Summary(ja): Linux カーネルのソースコード
  266. Group: programming
  267. BuildArch: noarch
  268. Requires(pre): fileutils
  269. Requires: make >= 3.78
  270. Requires: gcc >= 3.2
  271. Requires: binutils
  272. # documentations
  273. Requires: kernel-doc = %{rpmversion}-%{release}
  274. # for menuconfig
  275. Requires: ncurses-devel readline-devel
  276. # for gconfig
  277. #Requires: gtk2-devel
  278. # for xconfig
  279. #Requires: qt-devel
  280. %description source
  281. The kernel-source package contains the source code files for the Linux
  282. kernel. The source files can be used to build a custom kernel that is
  283. smaller due only including drivers for your particular hardware, if you are
  284. so inclined (and you know what you're doing). The customisation guide in the
  285. documentation describes in detail how to do this. This package is neither
  286. needed nor usable for building external kernel modules for linking into the
  287. default kernel.
  288. If you use "gconfig" to configure the kernel, install gtk2-devel package.
  289. If you use "xconfig" to configure the kernel, install qt-devel package.
  290. %description source -l ja
  291. kernel-source パッケージには Linux カーネルのソースコードが含まれて
  292. います.カーネルのソースコードは多くの C プログラムの作成に必要です.
  293. カーネルのソースコードに定義されている制限に依存することがあるからです.
  294. このソースコードを使って,あなたのシステム向けにチューンアップした
  295. カスタムカーネルを作成することもできます.
  296. "gconfig" をつかってカーネルのコンフィグレーションを行う場合は、gtk2-devel
  297. パッケージをインストールしてください。
  298. "xconfig" をつかってカーネルのコンフィグレーションを行う場合は、qt-devel
  299. パッケージをインストールしてください。
  300. ### kernel-doc
  301. %package doc
  302. Summary: Various documentation bits found in the kernel source.
  303. Summary(ja): カーネルソース内のさまざまなドキュメント群
  304. Group: documentation
  305. BuildArch: noarch
  306. %description doc
  307. This package contains documentation files from the kernel
  308. source. Various bits of information about the Linux kernel and the
  309. device drivers shipped with it are documented in these files.
  310. You'll want to install this package if you need a reference to the
  311. options that can be passed to Linux kernel modules at load time.
  312. %description doc -l ja
  313. このパッケージにはカーネルソースに含まれているドキュメントが
  314. 収められています.Linux カーネルやデバイスドライバに関する様々な
  315. 情報がこのドキュメントには記されています.
  316. Linux カーネルモジュールを読み込む際の引数を調べたい場合等,
  317. このパッケージをインストールすると良いでしょう.
  318. ### kernel-headers
  319. %package headers
  320. Summary: Header files for the Linux kernel for use by glibc
  321. Summary(ja): Linux カーネルのヘッダファイル
  322. Group: programming
  323. Obsoletes: glibc-kernheaders
  324. Provides: glibc-kernheaders = 3.0-46
  325. Conflicts: %{kernel_headers_conflicts}
  326. %description headers
  327. Kernel-headers includes the C header files that specify the interface
  328. between the Linux kernel and userspace libraries and programs. The
  329. header files define structures and constants that are needed for
  330. building most standard programs and are also needed for rebuilding the
  331. glibc package.
  332. %description headers -l ja
  333. kernel-headers パッケージには、Linux カーネルとユーザスペースプログラムや
  334. ライブラリとの間のインタフェースを規定する C ヘッダファイルが収録されて
  335. います。ヘッダファイルではデータ構造や定数値が定義されており、多くの
  336. プログラムをコンパイルする際に必要となります。また、glibc パッケージを
  337. リビルドする際にも必要となるものです。
  338. %package firmware
  339. Summary: Firmware files used by the Linux kernel
  340. Summary(ja): Linux kernel で使用されているファームウェア
  341. Group: system
  342. License: GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted
  343. BuildArch: noarch
  344. %description firmware
  345. Kernel-firmware includes firmware files required for some devices to
  346. operate.
  347. %description firmware -l ja
  348. Kernel-firmware にはいくつかのデバイスを利用するために必要なファームウェアファイルが
  349. 含まれています。
  350. %package pae
  351. Summary: The Linux kernel compiled for PAE capable machines.
  352. Summary(ja): PAE 対応マシン用にコンパイルされた Linux カーネル
  353. Group: system
  354. Provides: kernel = %{rpmversion}
  355. Provides: kernel26 = %{rpmversion}
  356. Provides: kernel-drm = 4.3.0
  357. Provides: kernel-%{_target_cpu} = %{rpmversion}-%{release}pae
  358. Provides: alsa-driver = 1.0.20
  359. Requires(pre): %{kernel_prereq}
  360. Conflicts: %{kernel_dot_org_conflicts}
  361. Conflicts: %{package_conflicts}
  362. Conflicts: %{nptl_conflicts}
  363. # We can't let RPM do the dependencies automatic because it'll then pick up
  364. # a correct but undesirable perl dependency from the module headers which
  365. # isn't required for the kernel proper to function
  366. AutoReqProv: no
  367. %description pae
  368. This package includes a version of the Linux kernel with support for up to
  369. 64GB of high memory. It requires a CPU with Physical Address Extensions
  370. (PAE). The non-PAE kernel can only address up to 4GB of memory.
  371. Install the kernel-pae package if your machine has more than 4GB of memory.
  372. %description pae -l ja
  373. このパッケージには 64GB までのメモリをサポートする Linux カーネルが収められて
  374. います.このカーネルを利用するためには PAE 対応の CPU が必要です。
  375. あなたのマシンが 4GB 以上のメモリを搭載している場合は kernel-pae パッケージを
  376. インストールしてください.
  377. %package pae-devel
  378. Summary: Development package for building kernel modules to match the PAE capable kernel.
  379. Summary(ja): 特定のバージョンのPAE対応カーネル用のモジュールを構築するための開発パッケージ
  380. Group: programming
  381. Provides: kernel-pae-devel-%{_target_cpu} = %{rpmversion}-%{release}
  382. Provides: kernel-devel-%{_target_cpu} = %{rpmversion}-%{release}pae
  383. Provides: kernel-devel = %{rpmversion}-%{release}pae
  384. Provides: kernel26-devel = %{rpmversion}-%{release}pae
  385. AutoReqProv: no
  386. %description pae-devel
  387. This package provides kernel headers and makefiles sufficient to build modules
  388. against the PAE capable kernel package.
  389. %if %{with_tools}
  390. %package -n kernel-tools
  391. Summary: Assortment of tools for the Linux kernel
  392. Group: admin-tools,system
  393. License: GPLv2
  394. # cpufrequtils 009 and cpuspeed 1.6 are dummy version number
  395. Obsoletes: cpufrequtils < 009
  396. Provides: cpufrequtils = 009
  397. Obsoletes: cpuspeed < 1.6
  398. Provides: cpuspeed = 1.6
  399. Requires: kernel-tools-libs = %{version}-%{release}
  400. %description -n kernel-tools
  401. This package contains the tools/ directory from the kernel source
  402. and the supporting documentation.
  403. %package -n kernel-tools-libs
  404. Summary: Libraries for the kernels-tools
  405. Group: system
  406. License: GPLv2
  407. %description -n kernel-tools-libs
  408. This package contains the libraries built from the tools/ directory
  409. from the kernel source.
  410. %package -n kernel-tools-libs-devel
  411. Summary: Assortment of tools for the Linux kernel
  412. Group: programming
  413. License: GPLv2
  414. Requires: kernel-tools = %{version}-%{release}
  415. # Provides: cpupowerutils-devel = 1:009-0.6.p1
  416. # Obsoletes: cpupowerutils-devel < 1:009-0.6.p1
  417. Requires: kernel-tools-libs = %{version}-%{release}
  418. # Provides: kernel-tools-devel
  419. %description -n kernel-tools-libs-devel
  420. This package contains the development files for the tools/ directory from
  421. the kernel source.
  422. %endif # with_tools
  423. %if %{with_bpftool}
  424. %package -n bpftool
  425. Summary: Inspection and simple manipulation of eBPF programs and maps
  426. Group: admin-tools,system
  427. License: GPLv2
  428. %description -n bpftool
  429. This package contains the bpftool, which allows inspection and simple
  430. manipulation of eBPF programs and maps.
  431. %endif
  432. %global _build_id_links none
  433. %{expand:%%global _find_debuginfo_opts %{?_find_debuginfo_opts} -p '.*\/usr\/src\/kernels/.*|XXX' -o ignored-debuginfo.list}\
  434. %{nil}
  435. #debug_package
  436. %prep
  437. %setup -q -n %{name}-%{version} -c
  438. cd linux-%{kversion}
  439. # official released patch
  440. %if %{patchlevel}
  441. %patch1 -p1
  442. %endif
  443. # Misc fixes
  444. # Make multimedia buttons on Dell Inspiron 8200 work.
  445. %patch1610 -p1
  446. # The input layer spews crap no-one cares about.
  447. %patch1650 -p1
  448. #
  449. %patch1770 -p1
  450. # 3w-9xxx update (2.26.02.008)
  451. %patch2301 -p1
  452. #
  453. # final stuff
  454. #
  455. # do not include localized version string in /proc/version
  456. # recent gcc doesn't need this
  457. #patch10000 -p1
  458. %patch10010 -p1
  459. # security fix
  460. #
  461. # misc small stuff to make things compile or otherwise improve performance
  462. #
  463. # END OF PATCH APPLICATIONS
  464. cp %{SOURCE10} Documentation/
  465. # put Vine logo
  466. cp -f %{SOURCE100} drivers/video/logo/logo_linux_clut224.ppm
  467. #
  468. # install extra documentations
  469. #
  470. #
  471. mkdir configs
  472. cp -fv %{all_arch_configs} .
  473. # now run oldconfig over all the config files
  474. for i in *.config
  475. do
  476. mv $i .config
  477. Arch=`head -1 .config | cut -b 3-`
  478. make ARCH=$Arch olddefconfig
  479. echo "# $Arch" > configs/$i
  480. cat .config >> configs/$i
  481. done
  482. # make sure the kernel has the sublevel we know it has. This looks weird
  483. # but for -pre and -rc versions we need it since we only want to use
  484. # the higher version when the final kernel is released.
  485. perl -p -i -e "s/^SUBLEVEL.*/SUBLEVEL = %{patchlevel}/" Makefile
  486. perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -prep/" Makefile
  487. # get rid of unwanted files resulting from patch fuzz
  488. # find . -name "*.orig" -exec rm -fv {} \;
  489. # find . -name "*~" -exec rm -fv {} \;
  490. ###
  491. chmod +x ./scripts/checkpatch.pl
  492. chmod +x ./tools/objtool/sync-check.sh
  493. ###
  494. ### build
  495. ###
  496. %build
  497. sync
  498. cd linux-%{kversion}
  499. BuildKernel() {
  500. # Pick the right config file for the kernel we're building
  501. KVERREL_SUFFIX=$1
  502. if [ -n "$1" ] ; then
  503. Config=kernel-%{kversion}-%{_target_cpu}-$1.config
  504. DevelDir=/usr/src/kernels/%{KVERREL}-$1-%{_target_cpu}
  505. DevelLink=/usr/src/kernels/%{KVERREL}$1-%{_target_cpu}
  506. else
  507. Config=kernel-%{kversion}-%{_target_cpu}.config
  508. DevelDir=/usr/src/kernels/%{KVERREL}-%{_target_cpu}
  509. DevelLink=
  510. fi
  511. KernelVer=%{rpmversion}-%{release}$1
  512. echo BUILDING A KERNEL FOR $1 %{_target_cpu}...
  513. # make sure EXTRAVERSION says what we want it to say
  514. perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}$1/" Makefile
  515. # and now to start the build process
  516. make -s mrproper
  517. cp configs/$Config .config
  518. Arch=`head -1 .config | cut -b 3-`
  519. echo USING ARCH=$Arch
  520. echo CHECKING NEW CONFIG OPTIONS...
  521. make ARCH=$Arch listnewconfig | grep -E '^CONFIG_' > .newoptions || true
  522. if [ -s .newoptions ]; then
  523. echo NEW CONFIG OPTION FOUND.
  524. cat .newoptions
  525. else
  526. echo NO NEW CONFIG OPTION FOUND.
  527. fi
  528. rm -f .newoptions
  529. make -s ARCH=$Arch olddefconfig > /dev/null
  530. # This ensures build-ids are unique to allow parallel debuginfo
  531. perl -p -i -e "s/^CONFIG_BUILD_SALT.*/CONFIG_BUILD_SALT=\"%{KVERREL}${KVERREL_SUFFIX}\"/" .config
  532. make -s ARCH=$Arch %{?_smp_mflags} %{make_target}
  533. make -s ARCH=$Arch %{?_smp_mflags} modules || exit 1
  534. #make ARCH=$Arch buildcheck
  535. # Start installing the results
  536. %if "%{_enable_debug_packages}" == "1"
  537. mkdir -p $RPM_BUILD_ROOT/usr/lib/debug/boot
  538. %endif
  539. mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
  540. install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
  541. install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
  542. cp arch/$Arch/boot/bzImage $RPM_BUILD_ROOT/%{image_install_path}/vmlinuz-$KernelVer
  543. if [ -f arch/$Arch/boot/zImage.stub ]; then
  544. cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
  545. fi
  546. mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
  547. make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
  548. cp modules.{order,builtin} $RPM_BUILD_ROOT/lib/modules/$KernelVer/
  549. # And save the headers/makefiles etc for building modules against
  550. #
  551. # This all looks scary, but the end result is supposed to be:
  552. # * all arch relevant include/ files
  553. # * all Makefile/Kconfig files
  554. # * all script/ files
  555. rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
  556. rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
  557. mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
  558. (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
  559. # dirs for additional modules per module-init-tools, kbuild/modules.txt
  560. mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/extra
  561. mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
  562. # first copy everything
  563. cp --parents `find -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
  564. cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
  565. # then drop all but the needed Makefiles/Kconfig files
  566. rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
  567. rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
  568. rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
  569. cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
  570. cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
  571. if [ -f tools/objtool/objtool ]; then
  572. cp -a tools/objtool/objtool $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/tools/objtool/ || :
  573. fi
  574. if [ -d arch/%{_arch}/scripts ]; then
  575. cp -a arch/%{_arch}/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || :
  576. fi
  577. if [ -f arch/%{_arch}/*lds ]; then
  578. cp -a arch/%{_arch}/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || :
  579. fi
  580. rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
  581. rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
  582. if [ -d arch/%{asmarch}/include ]; then
  583. cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
  584. fi
  585. cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
  586. # Make sure the Makefile and version.h have a matching timestamp so that
  587. # external modules can be built
  588. touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile \
  589. $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/generated/uapi/linux/version.h
  590. touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/autoconf.h
  591. # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
  592. cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
  593. if test -s vmlinux.id; then
  594. cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id
  595. else
  596. echo >&2 "*** WARNING *** no vmlinux build ID! ***"
  597. fi
  598. #
  599. # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
  600. #
  601. %if "%{_enable_debug_packages}" == "1"
  602. mkdir -p $RPM_BUILD_ROOT/usr/lib/debug/lib/modules/$KernelVer
  603. cp vmlinux $RPM_BUILD_ROOT/usr/lib/debug/lib/modules/$KernelVer
  604. %endif
  605. # mark modules executable so that strip-to-file can strip them
  606. find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
  607. xargs --no-run-if-empty chmod u+x < modnames
  608. # detect missing or incorrect license tags
  609. for i in `find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" `
  610. do
  611. echo -n "$i "
  612. /sbin/modinfo -l $i >> modinfo
  613. done
  614. cat modinfo |\
  615. grep -v "^GPL" |
  616. grep -v "^Dual BSD/GPL" |\
  617. grep -v "^Dual MIT/GPL" |\
  618. grep -v "^Dual MPL/GPL" |\
  619. grep -v "^GPL and additional rights" |\
  620. grep -v "^GPL v2" && exit 1
  621. rm -f modinfo
  622. # remove files that will be auto generated by depmod at rpm -i time
  623. for i in alias alias.bin builtin.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap devname softdep
  624. do
  625. rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
  626. done
  627. # Move the devel headers out of the root file system
  628. mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
  629. mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
  630. ln -sf ../../..$DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
  631. [ -z "$DevelLink" ] || ln -sf `basename $DevelDir` $RPM_BUILD_ROOT/$DevelLink
  632. }
  633. ###
  634. # DO it...
  635. ###
  636. # prepare directories
  637. rm -rf $RPM_BUILD_ROOT
  638. mkdir -p $RPM_BUILD_ROOT/boot
  639. %if %{buildup}
  640. BuildKernel
  641. %endif
  642. %if %{buildpae}
  643. BuildKernel pae
  644. %endif
  645. %if %{with_tools}
  646. # cpupower
  647. # make sure version-gen.sh is executable.
  648. chmod +x tools/power/cpupower/utils/version-gen.sh
  649. make %{?_smp_mflags} -C tools/power/cpupower CPUFREQ_BENCH=false
  650. %ifarch %{ix86}
  651. pushd tools/power/cpupower/debug/i386
  652. make %{?_smp_mflags} centrino-decode powernow-k8-decode
  653. popd
  654. %endif
  655. %ifarch x86_64
  656. pushd tools/power/cpupower/debug/x86_64
  657. make %{?_smp_mflags} centrino-decode powernow-k8-decode
  658. popd
  659. %endif
  660. %ifarch %{ix86} x86_64
  661. pushd tools/power/x86/x86_energy_perf_policy/
  662. make
  663. popd
  664. pushd tools/power/x86/turbostat
  665. make
  666. popd
  667. %endif #turbostat/x86_energy_perf_policy
  668. pushd tools/thermal/tmon/
  669. make
  670. popd
  671. %endif
  672. %if %{with_bpftool}
  673. pushd tools/bpf/bpftool
  674. %{__make} EXTRA_CFLAGS="%{optflags}" EXTRA_LDFLAGS="%{?__global_ldflags}" DESTDIR=%{buildroot} V=1
  675. popd
  676. %endif
  677. ###
  678. ### install
  679. ###
  680. %install
  681. cd linux-%{kversion}
  682. # build documentation package
  683. %if %{builddoc}
  684. mkdir -p $RPM_BUILD_ROOT%{_docdir}/kernel-doc-%{kversion}/Documentation
  685. # sometimes non-world-readable files sneak into the kernel source tree
  686. chmod -R a+r *
  687. # copy the source over
  688. tar cf - Documentation | tar xf - -C $RPM_BUILD_ROOT%{_docdir}/kernel-doc-%{kversion}
  689. rm -f %{buildroot}%{_datadir}/doc/kernel-doc-%{kversion}/Documentation/.gitignore
  690. %endif
  691. # build source package
  692. %if %{buildsource}
  693. mkdir -p $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}
  694. sync
  695. make -s mrproper
  696. sync
  697. tar cf - . | tar xf - -C $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}
  698. rm -rf $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}/Documentation
  699. ln -sf %{_docdir}/kernel-doc-%{kversion}/Documentation $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}/
  700. sync
  701. #
  702. rm -f $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}/arch/x86/tools/relocs
  703. # set the EXTRAVERSION to <version>custom, so that people who follow a kernel building howto
  704. # don't accidentally overwrite their currently working moduleset and hose their system
  705. perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}custom/" $RPM_BUILD_ROOT/usr/src/linux-%{kversion}/Makefile
  706. install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/usr/src/linux-%{kversion}
  707. # drop binaries: kernel-source is noarch
  708. rm -rf %{buildroot}%{_prefix}/src/linux-%{kversion}/tools
  709. %endif
  710. %if %{with_headers}
  711. # Install kernel headers
  712. make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
  713. # Do headers_check but don't die if it fails.
  714. make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check \
  715. > hdrwarnings.txt || :
  716. if grep -q exist hdrwarnings.txt; then
  717. sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
  718. # Temporarily cause a build failure if header inconsistencies.
  719. # exit 1
  720. fi
  721. find $RPM_BUILD_ROOT/usr/include \
  722. \( -name .install -o -name .check -o \
  723. -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
  724. # glibc provides scsi headers for itself, for now
  725. rm -rf $RPM_BUILD_ROOT/usr/include/scsi
  726. rm -f $RPM_BUILD_ROOT/usr/include/asm*/atomic.h
  727. rm -f $RPM_BUILD_ROOT/usr/include/asm*/io.h
  728. rm -f $RPM_BUILD_ROOT/usr/include/asm*/irq.h
  729. %endif
  730. %if %{with_firmware}
  731. make INSTALL_FW_PATH=$RPM_BUILD_ROOT/lib/firmware firmware_install
  732. %endif
  733. sync;sync;sync;
  734. touch ../cpupower.lang
  735. %if %{with_tools}
  736. make -C tools/power/cpupower DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} mandir=%{_mandir} CPUFREQ_BENCH=false install
  737. rm -f %{buildroot}%{_libdir}/*.{a,la}
  738. %find_lang cpupower
  739. mv cpupower.lang ../
  740. %ifarch %{ix86}
  741. pushd tools/power/cpupower/debug/i386
  742. install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode
  743. install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode
  744. popd
  745. %endif
  746. %ifarch x86_64
  747. pushd tools/power/cpupower/debug/x86_64
  748. install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode
  749. install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode
  750. popd
  751. %endif
  752. chmod 0755 %{buildroot}%{_libdir}/libcpupower.so*
  753. mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
  754. install -m644 %{SOURCE31} %{buildroot}%{_sysconfdir}/sysconfig/cpupower
  755. %if %{with systemd}
  756. mkdir -p %{buildroot}/%{_unitdir}
  757. install -m644 %{SOURCE32} %{buildroot}/%{_unitdir}/cpupower.service
  758. %else
  759. mkdir -p %{buildroot}/etc/rc.d/init.d/
  760. install -m755 %{SOURCE30} %{buildroot}/etc/rc.d/init.d/cpupower
  761. %endif
  762. %ifarch %{ix86} x86_64
  763. mkdir -p %{buildroot}%{_mandir}/man8
  764. pushd tools/power/x86/x86_energy_perf_policy
  765. make DESTDIR=%{buildroot} install
  766. popd
  767. pushd tools/power/x86/turbostat
  768. make DESTDIR=%{buildroot} install
  769. popd
  770. %endif #turbostat/x86_energy_perf_policy
  771. pushd tools/thermal/tmon
  772. make INSTALL_ROOT=%{buildroot} install
  773. popd
  774. %endif
  775. %if %{with_bpftool}
  776. pushd tools/bpf/bpftool
  777. %{__make} EXTRA_CFLAGS="%{optflags}" EXTRA_LDFLAGS="%{?__global_ldflags}" DESTDIR=%{buildroot} V=1 prefix=%{_prefix} bash_compdir=%{_sysconfdir}/bash_completion.d/ mandir=%{_mandir} install
  778. popd
  779. %endif
  780. rm -f %{buildroot}%{_prefix}/src/linux-%{kversion}/.clang-format
  781. rm -f %{buildroot}%{_prefix}/src/linux-%{kversion}/.cocciconfig
  782. rm -f %{buildroot}%{_prefix}/src/linux-%{kversion}/.get_maintainer.ignore
  783. rm -f %{buildroot}%{_prefix}/src/linux-%{kversion}/.git*
  784. rm -f %{buildroot}%{_prefix}/src/linux-%{kversion}/.mailmap
  785. sync;sync;sync;
  786. ###
  787. ### clean
  788. ###
  789. %clean
  790. rm -rf $RPM_BUILD_ROOT
  791. ###
  792. ### scripts
  793. ###
  794. %if %{with compat_grub_legacy}
  795. %post
  796. cd /boot
  797. KVERREL=%{KVERREL}
  798. CURRENT_VERREL=`uname -r`
  799. currentkernel=vmlinuz-${CURRENT_VERREL}
  800. currentinitrd=initramfs-${CURRENT_VERREL}.img
  801. if [ ! -f "${currentkernel}" ]; then
  802. currentkernel=`readlink -e vmlinuz`
  803. fi
  804. if [ ! -f "${currentinitrd}" ]; then
  805. currentinitrd=initrd-${CURRENT_VERREL}.img
  806. fi
  807. if [ ! -f "${currentinitrd}" ]; then
  808. currentinitrd=`readlink -e initrd.img`
  809. fi
  810. # vmlinuz symlinks to new default kernel
  811. ln -sf vmlinuz-${KVERREL} vmlinuz
  812. ln -sf initramfs-${KVERREL}.img initrd.img
  813. if [ -z "${currentkernel}" -o ! -f "${currentkernel}" -o \
  814. -z "${currentinitrd}" -o ! -f "${currentinitrd}" ]; then
  815. ln -sf vmlinuz-${KVERREL} vmlinuz.old
  816. ln -sf initramfs-${KVERREL}.img initrd.old.img
  817. else
  818. ln -sf `basename ${currentkernel}` vmlinuz.old
  819. ln -sf `basename ${currentinitrd}` initrd.old.img
  820. fi
  821. %endif
  822. %posttrans
  823. depmod -a "%{KVERREL}"
  824. if [ -x %{_sbindir}/weak-modules ]; then
  825. %{_sbindir}/weak-modules --add-kernel %{KVERREL} || exit $?
  826. fi
  827. if [ -x %{_bindir}/kernel-install ]; then
  828. %{_bindir}/kernel-install add %{KVERREL} /boot/vmlinuz-%{KVERREL} || exit $?
  829. fi
  830. %preun
  831. if [ -x %{_bindir}/kernel-install ]; then
  832. %{_bindir}/kernel-install remove %{KVERREL} /boot/vmlinuz-%{KVERREL} || exit $?
  833. fi
  834. if [ -x %{_sbindir}/weak-modules ]; then
  835. %{_sbindir}/weak-modules --remove-kernel %{KVERREL} || exit $?
  836. fi
  837. rm -f /lib/modules/"%{KVERREL}"/modules.{alias{,.bin},builtin.bin,dep{,.bin},devname,softdep,symbols{,.bin}}
  838. %postun
  839. if [ -x /usr/lib/kernel/install.d/99-grub-mkconfig.install ]; then
  840. /usr/lib/kernel/install.d/99-grub-mkconfig.install remove
  841. fi
  842. %if %{buildpae}
  843. %if %{with compat_grub_legacy}
  844. %post pae
  845. cd /boot
  846. KVERREL=%{KVERREL}pae
  847. CURRENT_VERREL=`uname -r`
  848. currentkernel=vmlinuz-${CURRENT_VERREL}
  849. currentinitrd=initramfs-${CURRENT_VERREL}.img
  850. if [ ! -f "${currentkernel}" ]; then
  851. currentkernel=`readlink -e vmlinuz`
  852. fi
  853. if [ ! -f "${currentinitrd}" ]; then
  854. currentinitrd=initrd-${CURRENT_VERREL}.img
  855. fi
  856. if [ ! -f "${currentinitrd}" ]; then
  857. currentinitrd=`readlink -e initrd.img`
  858. fi
  859. # vmlinuz symlinks to new default kernel
  860. ln -sf vmlinuz-${KVERREL} vmlinuz
  861. ln -sf initramfs-${KVERREL}.img initrd.img
  862. if [ -z "${currentkernel}" -o ! -f "${currentkernel}" -o \
  863. -z "${currentinitrd}" -o ! -f "${currentinitrd}" ]; then
  864. ln -sf vmlinuz-${KVERREL} vmlinuz.old
  865. ln -sf initramfs-${KVERREL}.img initrd.old.img
  866. else
  867. ln -sf `basename ${currentkernel}` vmlinuz.old
  868. ln -sf `basename ${currentinitrd}` initrd.old.img
  869. fi
  870. %endif
  871. %posttrans pae
  872. depmod -a "%{KVERREL}pae"
  873. if [ -x %{_sbindir}/weak-modules ]; then
  874. %{_sbindir}/weak-modules --add-kernel %{KVERREL}pae || exit $?
  875. fi
  876. if [ -x %{_bindir}/kernel-install ]; then
  877. %{_bindir}/kernel-install add %{KVERREL}pae /boot/vmlinuz-%{KVERREL}pae || exit $?
  878. fi
  879. %preun pae
  880. if [ -x %{_bindir}/kernel-install ]; then
  881. %{_bindir}/kernel-install remove %{KVERREL}pae /boot/vmlinuz-%{KVERREL}pae || exit $?
  882. fi
  883. if [ -x %{_sbindir}/weak-modules ]; then
  884. %{_sbindir}/weak-modules --remove-kernel %{KVERREL}pae || exit $?
  885. fi
  886. rm -f /lib/modules/"%{KVERREL}pae"/modules.{alias{,.bin},builtin.bin,dep{,.bin},devname,softdep,symbols{,.bin}}
  887. %postun pae
  888. if [ -x /usr/lib/kernel/install.d/99-grub-mkconfig.install ]; then
  889. /usr/lib/kernel/install.d/99-grub-mkconfig.install remove
  890. fi
  891. %endif
  892. ###
  893. ### file lists
  894. ###
  895. %if %{with_headers}
  896. %files headers
  897. %defattr(-,root,root)
  898. %{_includedir}/*
  899. %exclude %{_includedir}/cpufreq.h
  900. %exclude %{_includedir}/cpuidle.h
  901. %endif
  902. %if %{with_firmware}
  903. %files firmware
  904. %defattr(-,root,root)
  905. /lib/firmware/*
  906. %endif
  907. %if %{buildup}
  908. %files
  909. %defattr(-,root,root)
  910. /%{image_install_path}/*-%{KVERREL}
  911. %if "%{image_install_path}" != "boot"
  912. /boot/System.map-%{KVERREL}
  913. /boot/config-%{KVERREL}
  914. %endif
  915. %dir /lib/modules/%{KVERREL}
  916. /lib/modules/%{KVERREL}/modules.*
  917. /lib/modules/%{KVERREL}/kernel
  918. /lib/modules/%{KVERREL}/build
  919. /lib/modules/%{KVERREL}/source
  920. %files devel
  921. %defattr(-,root,root)
  922. %verify(not mtime) /usr/src/kernels/%{KVERREL}-%{_target_cpu}
  923. %endif
  924. %if %{buildpae}
  925. %files pae
  926. %defattr(-,root,root)
  927. /%{image_install_path}/*-%{KVERREL}pae
  928. %if "%{image_install_path}" != "boot"
  929. /boot/System.map-%{KVERREL}pae
  930. /boot/config-%{KVERREL}pae
  931. %endif
  932. %dir /lib/modules/%{KVERREL}pae
  933. /lib/modules/%{KVERREL}pae/modules.*
  934. /lib/modules/%{KVERREL}pae/kernel
  935. /lib/modules/%{KVERREL}pae/build
  936. /lib/modules/%{KVERREL}pae/source
  937. %files pae-devel
  938. %defattr(-,root,root)
  939. %verify(not mtime) /usr/src/kernels/%{KVERREL}-pae-%{_target_cpu}
  940. /usr/src/kernels/%{KVERREL}pae-%{_target_cpu}
  941. %endif
  942. # only some architecture builds need kernel-source
  943. %if %{buildsource}
  944. %files source
  945. %defattr(-,root,root)
  946. %dir %{_prefix}/src/linux-%{kversion}
  947. %{_prefix}/src/linux-%{kversion}/*
  948. %{_prefix}/src/linux-%{kversion}/.rustfmt.toml
  949. %endif
  950. # only some architecture builds need kernel-doc
  951. %if %{builddoc}
  952. %files doc
  953. %defattr(-,root,root)
  954. %{_datadir}/doc/kernel-doc-%{kversion}/Documentation/*
  955. %dir %{_datadir}/doc/kernel-doc-%{kversion}/Documentation
  956. %dir %{_datadir}/doc/kernel-doc-%{kversion}
  957. %endif
  958. %if %{with_tools}
  959. %files -n kernel-tools -f cpupower.lang
  960. %defattr(-,root,root)
  961. %{_bindir}/cpupower
  962. %{_bindir}/centrino-decode
  963. %{_bindir}/powernow-k8-decode
  964. %{_mandir}/man[1-8]/cpupower*
  965. %config(noreplace) %{_sysconfdir}/sysconfig/cpupower
  966. %if %{with systemd}
  967. %{_unitdir}/cpupower.service
  968. %else
  969. /etc/rc.d/init.d/cpupower
  970. %endif
  971. %{_bindir}/x86_energy_perf_policy
  972. %{_mandir}/man8/x86_energy_perf_policy*
  973. %{_bindir}/turbostat
  974. %{_mandir}/man8/turbostat*
  975. %{_bindir}/tmon
  976. %dir %{_datadir}/bash-completion
  977. %dir %{_datadir}/bash-completion/completions
  978. %{_datadir}/bash-completion/completions/cpupower
  979. %files -n kernel-tools-libs
  980. %{_libdir}/libcpupower.so.0
  981. %{_libdir}/libcpupower.so.0.0.*
  982. %files -n kernel-tools-libs-devel
  983. %{_libdir}/libcpupower.so
  984. %{_includedir}/cpufreq.h
  985. %{_includedir}/cpuidle.h
  986. %endif
  987. %if %{with_bpftool}
  988. %files -n bpftool
  989. %{_sbindir}/bpftool
  990. %dir %{_sysconfdir}/bash_completion.d
  991. %{_sysconfdir}/bash_completion.d/bpftool
  992. %endif
  993. %changelog
  994. * Thu Nov 09 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.62-1
  995. - updated to 6.1.62.
  996. * Thu Oct 26 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.60-1
  997. - updated to 6.1.60.
  998. * Mon Oct 16 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.58-1
  999. - updated to 6.1.58.
  1000. * Sat Oct 07 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.56-1
  1001. - updated to 6.1.56.
  1002. * Tue Sep 19 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.54-1
  1003. - updated to 6.1.54.
  1004. * Thu Sep 07 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.52-1
  1005. - updated to 6.1.52.
  1006. * Thu Aug 31 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.50-1
  1007. - updated to 6.1.50.
  1008. * Sat Aug 26 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.48-1
  1009. - updated to 6.1.48.
  1010. * Thu Aug 17 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.46-1
  1011. - updated to 6.1.46.
  1012. * Wed Aug 09 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.44-1
  1013. - updated to 6.1.44.
  1014. * Thu Jul 27 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.42-1
  1015. - updated to 6.1.42.
  1016. * Mon Jul 24 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.40-1
  1017. - updated to 6.1.40.
  1018. * Thu Jul 06 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.38-1
  1019. - updated to 6.1.38.
  1020. * Wed Jun 28 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.36-1
  1021. - updated to 6.1.36.
  1022. * Wed Jun 14 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.34-1
  1023. - updated to 6.1.34.
  1024. * Mon Jun 05 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.32-1
  1025. - updated to 6.1.32.
  1026. * Thu May 25 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.30-1
  1027. - updated to 6.1.30.
  1028. * Fri May 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.28-1
  1029. - updated to 6.1.28.
  1030. * Wed Apr 26 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.26-1
  1031. - updated to 6.1.26.
  1032. * Fri Apr 14 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.24-1
  1033. - updated to 6.1.24.
  1034. * Thu Mar 30 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.22-1
  1035. - updated to 6.1.22.
  1036. * Fri Mar 17 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.20-1
  1037. - updated to 6.1.20.
  1038. * Sun Mar 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.18-1
  1039. - updated to 6.1.18.
  1040. * Sat Mar 11 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.17-1
  1041. - updated to 6.1.17.
  1042. * Fri Mar 10 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.16-1
  1043. - updated to 6.1.16.
  1044. * Sat Feb 25 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.14-1
  1045. - updated to 6.1.14.
  1046. * Mon Feb 20 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.12-1
  1047. - updated to 6.1.12.
  1048. - dropped Patch210: legacy IDE is dropped in upstream.
  1049. - dropped Patch10020-10022: fixed in upstream.
  1050. * Thu Feb 16 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.168-1
  1051. - updated to 5.10.166.
  1052. * Wed Feb 01 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.166-1
  1053. - updated to 5.10.166.
  1054. * Thu Jan 19 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.164-1
  1055. - updated to 5.10.164.
  1056. * Fri Jan 13 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.162-1
  1057. - updated to 5.10.162.
  1058. * Mon Dec 19 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.160-1
  1059. - updated to 5.10.160.
  1060. * Thu Dec 08 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.158-1
  1061. - updated to 5.10.158.
  1062. * Sat Nov 26 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.156-1
  1063. - updated to 5.10.156.
  1064. * Fri Nov 11 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.154-1
  1065. - updated to 5.10.154.
  1066. * Sun Oct 30 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.152-1
  1067. - updated to 5.10.152.
  1068. * Thu Oct 27 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.150-1
  1069. - updated to 5.10.150.
  1070. * Sat Oct 15 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.148-1
  1071. - updated to 5.10.148.
  1072. * Wed Sep 28 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.146-1
  1073. - updated to 5.10.146.
  1074. * Tue Sep 20 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.144-1
  1075. - updated to 5.10.144.
  1076. * Sun Sep 11 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.142-1
  1077. - updated to 5.10.142.
  1078. * Thu Sep 01 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.140-1
  1079. - updated to 5.10.140.
  1080. * Fri Aug 26 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.138-1
  1081. - updated to 5.10.138.
  1082. * Thu Aug 11 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.136-1
  1083. - updated to 5.10.136.
  1084. * Sat Jul 30 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.134-1
  1085. - updated to 5.10.134.
  1086. * Fri Jul 22 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.132-1
  1087. - updated to 5.10.132.
  1088. * Wed Jul 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.130-1
  1089. - updated to 5.10.130.
  1090. * Sun Jul 03 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.128-1
  1091. - updated to 5.10.128.
  1092. * Tue Jun 28 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.126-1
  1093. - updated to 5.10.126.
  1094. * Sun Jun 26 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.125-1
  1095. - updated to 5.10.125.
  1096. * Thu Jun 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.123-1
  1097. - updated to 5.10.123.
  1098. * Thu Jun 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.121-1
  1099. - updated to 5.10.121.
  1100. * Mon May 30 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.119-1
  1101. - updated to 5.10.119.
  1102. * Wed May 18 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.117-1
  1103. - updated to 5.10.117.
  1104. * Fri May 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.115-1
  1105. - updated to 5.10.115.
  1106. * Thu Apr 21 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.112-1
  1107. - updated to 5.10.112.
  1108. * Sat Apr 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.110-1
  1109. - updated to 5.10.110.
  1110. * Wed Mar 23 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.108-1
  1111. - updated to 5.10.108.
  1112. * Thu Mar 17 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.106-1
  1113. - updated to 5.10.106.
  1114. * Wed Mar 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.104-1
  1115. - updated to 5.10.104.
  1116. * Wed Feb 23 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.102-1
  1117. - updated to 5.10.102.
  1118. * Fri Feb 11 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.100-1
  1119. - updated to 5.10.100.
  1120. * Sun Feb 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.98-1
  1121. - updated to 5.10.98.
  1122. * Sun Feb 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.97-1
  1123. - updated to 5.10.97.
  1124. * Wed Feb 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.96-1
  1125. - updated to 5.10.96.
  1126. * Sun Jan 30 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.95-1
  1127. - updated to 5.10.95.
  1128. * Thu Jan 20 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.93-1
  1129. - updated to 5.10.93.
  1130. * Wed Jan 12 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.91-1
  1131. - updated to 5.10.91.
  1132. * Wed Dec 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.89-1
  1133. - updated to 5.10.89.
  1134. * Fri Dec 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.87-1
  1135. - updated to 5.10.87.
  1136. * Fri Dec 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.86-1
  1137. - updated to 5.10.86.
  1138. * Wed Dec 08 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.84-1
  1139. - updated to 5.10.84.
  1140. * Fri Nov 26 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.82-1
  1141. - updated to 5.10.82.
  1142. * Fri Nov 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.80-1
  1143. - updated to 5.10.80.
  1144. * Sun Nov 07 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.78-1
  1145. - updated to 5.10.78.
  1146. * Wed Oct 27 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.76-1
  1147. - updated to 5.10.76.
  1148. * Sun Oct 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.74-1
  1149. - updated to 5.10.74.
  1150. * Sun Oct 10 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.72-1
  1151. - updated to 5.10.72.
  1152. * Sat Oct 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.70-1
  1153. - updated to 5.10.70.
  1154. * Wed Sep 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.68-1
  1155. - updated to 5.10.68.
  1156. * Thu Sep 16 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.66-1
  1157. - updated to 5.10.66.
  1158. * Sun Sep 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.64-1
  1159. - updated to 5.10.64.
  1160. * Fri Sep 03 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.62-1
  1161. - updated to 5.10.62.
  1162. * Wed Aug 18 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.60-1
  1163. - updated to 5.10.60.
  1164. * Thu Aug 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.58-1
  1165. - updated to 5.10.58.
  1166. * Thu Aug 05 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.56-1
  1167. - updated to 5.10.56.
  1168. * Thu Jul 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.54-1
  1169. - updated to 5.10.54.
  1170. * Wed Jul 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.52-1
  1171. - updated to 5.10.52.
  1172. * Thu Jul 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.50-1
  1173. - updated to 5.10.50.
  1174. * Sun Jul 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.49-1
  1175. - updated to 5.10.49.
  1176. - fixed %%post.
  1177. * Thu Jul 01 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.47-1
  1178. - updated to 5.10.47.
  1179. - fixed %%post.
  1180. * Wed Jun 16 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.44-1
  1181. - updated to 5.10.44.
  1182. * Sun Jun 13 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.43-1
  1183. - updated to 5.10.43.
  1184. * Sat May 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.41-1
  1185. - updated to 5.10.41.
  1186. * Thu May 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.38-1
  1187. - updated to 5.10.38.
  1188. * Wed May 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.10.36-1
  1189. - updated to 5.10.36.
  1190. - updated but disabled Patch10000: not needed for recent gcc.
  1191. * Thu May 06 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.116-1
  1192. - updated to 5.4.116.
  1193. * Wed Apr 14 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.112-1
  1194. - updated to 5.4.112.
  1195. * Mon Apr 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.111-1
  1196. - updated to 5.4.111.
  1197. - switched to kernel-install from grubby.
  1198. * Wed Mar 31 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.109-1
  1199. - updated to 5.4.109.
  1200. * Mon Mar 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.107-1
  1201. - updated to 5.4.107.
  1202. - resolved conflicts with other versions of kernel-devel.
  1203. * Sat Mar 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.106-1
  1204. - updated to 5.4.106.
  1205. * Thu Mar 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.104-1
  1206. - updated to 5.4.104.
  1207. - fixed kernel config for i686.
  1208. - xz-compressed kernel modules.
  1209. * Sat Jan 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.93-1
  1210. - updated to 5.4.93.
  1211. * Wed Dec 02 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.80-1
  1212. - updated to 5.4.80.
  1213. * Sat Sep 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.66-1
  1214. - updated to 5.4.66.
  1215. * Tue Sep 01 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.61-1
  1216. - updated to 5.4.61.
  1217. * Sun Aug 09 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.57-1
  1218. - updated to 5.4.57.
  1219. * Tue Aug 04 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.55-1
  1220. - updated to 5.4.55.
  1221. - re-enabled to build kernel-headers on i686.
  1222. * Sun Jul 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.4.52-1
  1223. - updated to 5.4.52.
  1224. - added systemd support (disabled as default).
  1225. - added a subpackage "bpftool".
  1226. * Sun Mar 29 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.174-1
  1227. - updated to 4.14.174.
  1228. - disabled Patch1470 (aquantia).
  1229. - R:dracut instead of mkinitrd.
  1230. * Mon Dec 30 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.160-1
  1231. - updated to 4.14.160
  1232. - fix changelog typo
  1233. - build doc and source package in x86_64 instead of i686
  1234. * Tue Nov 12 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.153-1
  1235. - updated to 4.14.153.
  1236. - updated Patch1470 (aquantia).
  1237. - enabled kprobes.
  1238. - dropped arch-dependent files from kernel-source.
  1239. * Fri Sep 20 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.145-1
  1240. - update to 4.14.145
  1241. * Fri Sep 13 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.143-1
  1242. - update to 4.14.143
  1243. * Fri Sep 6 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.141-1
  1244. - update to 4.14.141
  1245. * Sun Aug 18 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.139-1
  1246. - update to 4.14.139
  1247. * Tue Jun 4 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.123-1
  1248. - update to 4.14.123
  1249. * Wed May 22 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.121-1
  1250. - update to 4.14.121
  1251. * Mon Apr 8 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.111-1
  1252. - update to 4.14.111
  1253. - update patch1470 (aquantia)
  1254. * Tue Mar 19 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.106-1
  1255. - update to 4.14.106
  1256. - add patch1470 (linux-4.14-aquantia_update.patch.xz)
  1257. * Sat Feb 2 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.97-2
  1258. - update config (Enable Aquantia AQC)
  1259. * Fri Feb 1 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.97-1
  1260. - update to 4.14.97
  1261. * Sat Jan 19 2019 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.94-1
  1262. - update to 4.14.94
  1263. * Fri May 18 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.41-1
  1264. - update to 4.14.41
  1265. * Sat Apr 28 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.37-1
  1266. - update to 4.14.37
  1267. * Mon Apr 23 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.35-1
  1268. - update to 4.14.35
  1269. * Thu Apr 19 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.34-1
  1270. - update to 4.14.34
  1271. * Mon Apr 9 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.33-1
  1272. - update to 4.14.33
  1273. * Tue Apr 3 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.32-1
  1274. - update to 4.14.32
  1275. * Thu Mar 29 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.31-1
  1276. - update to 4.14.31
  1277. * Mon Mar 26 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.29-1
  1278. - update to 4.14.29
  1279. * Wed Mar 21 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.28-1
  1280. - update to 4.14.28
  1281. * Thu Mar 1 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.23-1
  1282. - update to 4.14.23
  1283. - fix changelog ver number typo
  1284. * Mon Feb 26 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.22-1
  1285. - update to 4.14.22
  1286. * Fri Feb 23 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.21-1
  1287. - update to 4.14.21
  1288. - CONFIG_USB_EHCI_HCD=m
  1289. * Tue Feb 20 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.20-1.1
  1290. - test package
  1291. - CONFIG_USB_EHCI_HCD=y
  1292. * Tue Feb 20 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.20-1
  1293. - update to 4.14.20
  1294. * Fri Feb 9 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.18-1
  1295. - update to 4.14.18
  1296. * Wed Feb 7 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.17-1
  1297. - update to 4.14.17
  1298. * Fri Feb 2 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.16-3
  1299. - add C: cpufrequtils into kernel-headers
  1300. * Fri Feb 2 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.16-2
  1301. - drop O:cpufrequtils in kernel-headers
  1302. - add O:/P: cpuspeed into kernel-tools
  1303. * Thu Feb 1 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.16-1
  1304. - new upstream release
  1305. - add O:cpufrequtils, cpuspeed into kernel-tools
  1306. - add O:cpufrequtils into kernel-headers
  1307. (BTS #3111)
  1308. - add initscript/sysconfig files for cpupower command
  1309. * Wed Jan 17 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.13-3.1
  1310. - test package
  1311. - add 4.14.14-rc1 patch
  1312. * Tue Jan 16 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.13-3
  1313. - add R: elfutils-libelf-devel into -devel package
  1314. * Mon Jan 15 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.13-2
  1315. - add tools/objtool/objtool into -devel package
  1316. - fix changelog typo
  1317. * Fri Jan 12 2018 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.13-1
  1318. - update to 4.14.13
  1319. * Thu Dec 28 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.9-1
  1320. - update to 4.14.9
  1321. * Fri Dec 22 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.8-1
  1322. - update to 4.14.8
  1323. * Wed Dec 13 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.5-1
  1324. - update to 4.14.5 (and 4.14.6 rc1)
  1325. - change to CONFIG_USB_UHCI_HCD=m
  1326. - add BR: linux-firmware
  1327. * Wed Nov 29 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.14.2-1
  1328. - update to 4.14.2
  1329. - update patch1850
  1330. * Thu Oct 19 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.13.8-1
  1331. - update to 4.13.8
  1332. * Fri Oct 6 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.13.5-1
  1333. - update to 4.13.5
  1334. * Sun Sep 17 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.13.2-2
  1335. - update post script for dracut
  1336. * Fri Sep 15 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.13.2-1
  1337. - update to 4.13.2
  1338. - drop patch3000 (is included in new release)
  1339. - update patch10000
  1340. - use dracut if dracut is installed
  1341. (Not added to R: yet)
  1342. * Sun Sep 3 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.12.10-2
  1343. - drop e1000e update (patch1460,61) because of MTU handling issue
  1344. (Thanks to tomop-san)
  1345. * Thu Aug 31 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.12.10-1
  1346. - update to 4.12.10
  1347. * Wed Aug 9 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.12.5-1
  1348. - update to 4.12.5
  1349. - fix typo in 4.12.4's changelog
  1350. * Mon Jul 31 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.12.4-1
  1351. - update to 4.12.4
  1352. - add patch3000 for ALC1220 codec
  1353. * Fri Jul 21 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.12.2-1
  1354. - update to 4.12.2
  1355. * Thu Jul 20 2017 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.11.11-1
  1356. - update to 4.11.11
  1357. - add kernel-tools packages
  1358. - drop aufs/tuxonice
  1359. - revome ppc/sparc if-else-endif branches
  1360. * Wed Mar 29 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 4.4.52-2.1
  1361. - update to 4.4.52
  1362. - update e1000e driver to 3.3.5.3 (Patch1460)
  1363. - update tuxonice patch (Patch9000)
  1364. - update i686/x86_64 config
  1365. - add AMD CPU microcode
  1366. * Sun Jul 31 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.4.16-1
  1367. - update to 4.4.16
  1368. * Sat Jul 23 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.4.15-2
  1369. - add Patch1460: linux-4.4.13_update_e1000e_3.3.4.patch
  1370. * Mon Jul 18 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.4.15-1
  1371. - update to 4.4.15
  1372. * Sat Jun 25 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.4.14-1
  1373. - update to 4.4.14
  1374. - update Patch1910,6100,9000
  1375. - remove Patch2001
  1376. - update Source6100
  1377. - add BuildRequires: openssl-devel
  1378. * Tue Jun 14 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.26-1
  1379. - update to 4.1.26
  1380. * Thu May 26 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.25-1
  1381. - update to 4.1.25
  1382. - update Patch9000 (tuxonice-for-linux-4.1.25.patch)
  1383. * Fri May 13 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.24-1
  1384. - update to 4.1.24
  1385. - update aufs sources
  1386. * Wed May 04 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.23-1
  1387. - update to 4.1.23
  1388. * Sat Apr 23 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.22-1
  1389. - update to 4.1.22
  1390. * Sun Mar 27 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.20-1
  1391. - update to 4.1.20
  1392. * Sat Feb 20 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.18-1
  1393. - update to 4.1.18
  1394. * Mon Feb 01 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.17-1
  1395. - update to 4.1.17
  1396. * Sat Jan 23 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.16-1
  1397. - update to 4.1.16
  1398. * Tue Dec 15 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.15-1
  1399. - update to 4.1.15
  1400. * Sun Nov 15 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.13-1
  1401. - update to 4.1.13
  1402. * Wed Oct 28 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.1.12-1
  1403. - update to 4.1.12
  1404. - update configs
  1405. - remove Patch1840 (linux-2.6-defaults-pci_no_msi.patch)
  1406. - update Patch1850 (silence-fbcon-logo.patch)
  1407. - update aufs and tuxonice sources
  1408. * Wed Jul 15 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 3.18.18-1
  1409. - update to 3.18.18
  1410. * Tue Jul 7 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 3.18.17-2
  1411. - update configs
  1412. - add missing configs.
  1413. - set CONFIG_FW_LOADER_USER_HELPER_FALLBACK to y
  1414. * Fri Jul 3 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 3.18.17-1
  1415. - update to 3.18.17
  1416. - update tuxonice, aufs
  1417. * Sat Jan 17 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 3.14.29-1
  1418. - update to 3.14.29
  1419. * Tue Oct 21 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 3.14.22-1
  1420. - update to 3.14.22
  1421. * Fri Jul 25 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 3.14.13-1
  1422. - update to 3.14.13
  1423. - update configs
  1424. - CONFIG_CC_OPTIMIZE_FOR_SIZE=n
  1425. - CONFIG_JUMP_LABEL=y
  1426. - CONFIG_DRM_MGAG200=n
  1427. * Thu Jul 10 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 3.14.12-1
  1428. - update to 3.14.12
  1429. * Mon Jul 07 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 3.14.11-1
  1430. - update to 3.14.11
  1431. - update configs
  1432. - update tuxonice
  1433. - update aufs3
  1434. * Sun Jun 29 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 3.12.23-1
  1435. - update to 3.12.23
  1436. - change configs
  1437. - CONFIG_MICROCODE=y (from m)
  1438. - CONFIG_MICROCODE_INTEL_EARLY=y
  1439. - CONFIG_MICROCODE_AMD_EARLY=y
  1440. - CONFIG_MICROCODE_EARLY=y
  1441. * Wed Apr 23 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 3.12.17-1
  1442. - update to 3.12.17
  1443. * Wed Jan 22 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 3.10.27-1
  1444. - update to 3.10.27
  1445. * Sun Nov 24 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.10.20-1
  1446. - update to 3.10.20
  1447. * Sat Oct 26 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.10.17-1
  1448. - update to 3.10.17
  1449. * Mon Aug 05 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.10.5-1
  1450. - update to 3.10.5
  1451. * Mon Jun 24 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.9.7-1
  1452. - update to 3.9.7
  1453. * Thu May 30 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.9.4-1
  1454. - update to 3.9.4
  1455. - add BR: bc
  1456. * Thu Apr 18 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.8-1
  1457. - update to 3.8.8
  1458. * Mon Apr 15 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.7-1
  1459. - update to 3.8.7
  1460. * Sat Mar 23 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.4-1
  1461. - update to 3.8.4
  1462. * Sat Mar 16 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.3-1
  1463. - update to 3.8.3
  1464. * Mon Mar 04 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.2-1
  1465. - update to 3.8.2
  1466. - update aufs3/tuxonice patch
  1467. * Thu Feb 28 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.7.10-1
  1468. - update to 3.7.10
  1469. * Mon Feb 18 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.7.9-1
  1470. - update to 3.7.9
  1471. * Wed Feb 13 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.7.7-2
  1472. - update aufs patch to fix kernel-headers
  1473. * Tue Feb 12 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.7.7-1
  1474. - update to 3.7.7
  1475. - update tuxonice and aufs patch
  1476. * Tue Dec 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.11-1
  1477. - update to 3.6.11
  1478. * Tue Dec 11 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.10-1
  1479. - update to 3.6.10
  1480. - pre require mkinitrd >= 6.0.93-22 to build correct initrd.
  1481. * Tue Dec 04 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.9-1
  1482. - update to 3.6.9
  1483. * Sun Dec 02 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.8-2
  1484. - add patch1920 to fix pt1 driver
  1485. * Wed Nov 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.8-1
  1486. - update to 3.6.8
  1487. * Sun Nov 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.7-1
  1488. - update to 3.6.7
  1489. * Thu Nov 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.6-1
  1490. - update to 3.6.6
  1491. * Thu Nov 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.5-1
  1492. - update to 3.6.5
  1493. * Mon Oct 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.4-1
  1494. - update to 3.6.4
  1495. * Mon Oct 22 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.3-1
  1496. - update to 3.6.3
  1497. * Sat Oct 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.2-1
  1498. - update to 3.6.2
  1499. - update tuxonice/aufs3 patch
  1500. * Wed Aug 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.10-1
  1501. - update to 3.4.10
  1502. * Thu Aug 16 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.9-1
  1503. - update to 3.4.9
  1504. * Fri Aug 10 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.8-1
  1505. - update to 3.4.8
  1506. - enable BMCA and BRCMSMAC(Broadcom SoftMAC driver)
  1507. * Wed Aug 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.7-1
  1508. - update to 3.4.7
  1509. * Fri Jul 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.6-3
  1510. - add patch1430 to support tg3 newer chipsets
  1511. * Sat Jul 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.6-2
  1512. - add kmod to kernel_prereq (instead of module-init-tools)
  1513. * Fri Jul 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.6-1
  1514. - update to 3.4.6
  1515. * Wed Jul 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.5-1
  1516. - update to 3.4.5
  1517. - add xz, kmod, coreutils to BR:
  1518. - remove module-init-tools, sh-utils from BR:
  1519. * Wed Jul 04 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.4-2
  1520. - add modules.{order,builtin}
  1521. * Sat Jun 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.4-1
  1522. - update to 3.4.4
  1523. * Mon Jun 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.3-1
  1524. - update to 3.4.3
  1525. - update tuxonice/aufs3 patch
  1526. * Thu May 03 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.16-1
  1527. - update to 3.2.16
  1528. * Tue Mar 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.10-1
  1529. - update to 3.2.10
  1530. * Sat Mar 03 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.9-1
  1531. - update to 3.2.9
  1532. * Tue Feb 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.7-1
  1533. - update to 3.2.7
  1534. * Wed Feb 15 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.6-2
  1535. - update tuxonice patch (github toi-3.2 current)
  1536. * Tue Feb 14 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.6-1
  1537. - update to 3.2.6
  1538. * Sat Feb 04 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.4-1
  1539. - update to 3.2.4
  1540. * Fri Jan 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.2-2
  1541. - add aufs3 patch
  1542. - drop unionfs support
  1543. * Thu Jan 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.2-1
  1544. - update to 3.2.2
  1545. * Fri Jan 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.1-1
  1546. - update to 3.2.1
  1547. * Sat Jan 07 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.0-1
  1548. - update to 3.2
  1549. - update x86 configs
  1550. - prereq module-init-tools >= 3.16
  1551. * Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.6-1
  1552. - update to 3.1.6
  1553. * Tue Nov 29 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.4-1
  1554. - update to 3.1.4
  1555. * Mon Nov 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.3-1
  1556. - update to 3.1.3
  1557. - update x86 configs
  1558. - update tuxonice to current
  1559. - drop patch1421,1422
  1560. * Mon Oct 24 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.8-1
  1561. - update to 3.0.8
  1562. * Mon Oct 24 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.7-1
  1563. - update to 3.0.7
  1564. * Wed Oct 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-4
  1565. - update unionfs to 2.5.10
  1566. - update configs (enable more drivers and functions)
  1567. SCHED_AUTOGROUP NL80211_TESTMODE BLK_DEV_RBD SCSI_CXGB4_ISCSI
  1568. SCSI_BNX2X_FCOE SCSI_ISCI STMMAC_ETH STMMAC_DUAL_MAC PCH_GBE BNA
  1569. PCMCIA_RAYCS ATH9K_PCI ATH9K_AHB CARL9170 CARL9170_LEDS CARL9170_WPC
  1570. B43_PHY_N IWLWIFI_DEVICE_SVTOOL RTL8192CE RTL8192SE RTL8192CU RTLWIFI
  1571. RTL8192C_COMMON WL12XX_MENU WL12XX WL12XX_HT WL12XX_SDIO MWIFIEX
  1572. MWIFIEX_SDIO USB_NET_CX82310_ETH USB_NET_KALMIA USB_VL600
  1573. XEN_NETDEV_BACKEND IR_ENE IR_MCEUSB IR_ITE_CIR IR_FINTEK IR_NUVOTON
  1574. IR_REDRAT3 IR_STREAMZAP IR_WINBOND_CIR RC_LOOPBACK USBIP_CORE
  1575. USBIP_VHCI_HCD USBIP_HOST R8187SE RTL8192U RTL8192E R8712U R8712_AP
  1576. RTS_PSTOR DRM_PSB INTEL_MEI ACERHDF DELL_WMI_AIO HP_ACCEL
  1577. IDEAPAD_LAPTOP INTEL_IPS FANOTIFY
  1578. * Sat Sep 17 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.4-3
  1579. - add Patch1421 & Patch1422
  1580. (based on patches found at http://almostsure.com/mba42/ and fixed a bit)
  1581. * Fri Sep 16 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.4-2
  1582. - add Patch1420 - a hack to support MBA Mid2011 LCD
  1583. (inspired from: https://bugs.freedesktop.org/show_bug.cgi?id=39533)
  1584. * Tue Aug 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-1
  1585. - update to 3.0.4
  1586. * Fri Aug 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> - 3.0.3-1
  1587. - update to 3.0.3
  1588. - udpate configs
  1589. - build legacy IDE drivers as module
  1590. - enable new drivers
  1591. * Mon Aug 15 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.1-3
  1592. - add Patch9010 to fix build failure on ppc
  1593. * Sun Aug 14 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.1-2
  1594. - more config updates (enable some staging drivers found on compat-wireless)
  1595. - TODO: configs - more review & fix needed
  1596. * Sun Aug 14 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.1-1
  1597. - inital attempt for 3.0.1
  1598. - disable obsolete/already_merged_into_upstream patches
  1599. - s/nonint_oldconfig/oldnoconfig/
  1600. - tuxonice: current-tuxonice-for-3.0.patch.bz2 (as of Aug. 14, 2011)
  1601. - unionfs: 2.5.9.2_for_3.0.0-rc4
  1602. - fix configs from m to y for the followings:
  1603. INTEL_IDLE, BT_L2CAP, BT_SCO, LEDS_CLASS
  1604. * Tue Jul 05 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-20
  1605. - add patch1890 to update sdhci driver (ricoh mmc support)
  1606. - add patch1900 to add quirk for lenove iTPM devices
  1607. - update Patch2700 (drm patch)
  1608. * Fri Jul 01 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-19
  1609. - add patch1870 to recognize ALPS Touchpad on Dell E6510
  1610. - add patch1880 to support newer ricoh mmc hosts
  1611. - add patch1410 to support iwlwifi new ucode loading
  1612. - disable kernel-firmware build and require linux-firmware instead.
  1613. * Mon May 16 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-18
  1614. - update configs
  1615. - disable PCI MSI by default (CONFIG_PCI_MSI_DEFAULT_ON)
  1616. * Sun May 15 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-17
  1617. - update to unionfs 2.5.9.1
  1618. - update to tuxonice 3.2
  1619. - update configs
  1620. - remove ppc64 config
  1621. * Sat May 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-16
  1622. - add Patch2700 to update drm
  1623. - add Patch2710 to ignore invalid edid extensions
  1624. * Wed May 11 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-15
  1625. - add patch1400 to update e1000e driver
  1626. * Sat Apr 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-14
  1627. - drop i586 config
  1628. - build kernel-{source,doc,firmware}.noarch package on i686 build
  1629. * Sat Apr 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-13
  1630. - update to 2.6.35.13
  1631. * Wed Apr 27 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-12
  1632. - update configs
  1633. - enable CONFIG_DEVPTS_MULTIPLE_INSTANCES
  1634. * Mon Apr 25 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-11
  1635. - update to unionfs to 2.5.8
  1636. - add patch6031 to fix open+unlink+ftruncate crash
  1637. http://www.fsl.cs.sunysb.edu/pipermail/unionfs/2011-March/006091.html
  1638. * Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-10
  1639. - disable drm update patches
  1640. - update x86 config
  1641. - disable CONFIG_KEXEC, CONFIG_RELOCATABLE
  1642. * Tue Apr 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-9
  1643. - update to 2.6.35.12
  1644. - update x86 configs
  1645. - enable CONFIG_FTRACE, CONFIG_DYNAMIC_TRACE
  1646. - add drm update patches
  1647. * Tue Mar 08 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-8
  1648. - update to 2.6.35.11
  1649. * Sun Jan 09 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.35-7
  1650. - updated to 2.6.35.10
  1651. * Mon Sep 27 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-6
  1652. - update to 2.6.35.6
  1653. - remove patch2600 which is merged in upstream
  1654. * Mon Sep 27 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-5
  1655. - add patch2600 to fix i915 modesetting failure on intel 8xx (<BTS:1039>)
  1656. - add BR: xz-lzma-compat, net-tools (<BTS:1038>)
  1657. - update unionfs to 2.5.6
  1658. - update tuxonice to 3.2-rc2
  1659. * Tue Sep 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-4
  1660. - update to 2.6.35.5
  1661. * Fri Sep 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-3
  1662. - update to 2.6.35.4
  1663. * Sat Aug 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-2
  1664. - update to 2.6.35.3
  1665. * Mon Aug 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-1
  1666. - update to 2.6.35.2
  1667. - update configs
  1668. - update unionfs to 2.5.5
  1669. - update tuxonice to 3.1.1.1
  1670. * Wed May 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.34-1
  1671. - update to 2.6.34
  1672. - patch1850: do not show fbcon logo on quiet mode
  1673. - patch1860: silence acpi blacklist code
  1674. - update tuxonice to git snapshot
  1675. * Fri May 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-5
  1676. - update to 2.6.33.4
  1677. * Tue Apr 06 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-4
  1678. - update to 2.6.33.2
  1679. - change configs
  1680. - revert PREEMPT/PREEMPT_VOLUNTARY changes of previous kernel
  1681. * Wed Mar 24 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-3
  1682. - change configs
  1683. - enable CONFIG_PREEMPT, disable CONFIG_PREEMPT_VOLUNTARY
  1684. - update unionfs to 2.5.4
  1685. * Mon Mar 15 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-2
  1686. - update to 2.6.33.1
  1687. - remove bootsplash patch, we use plymouth
  1688. - change CONFIG_VGASTATE to y
  1689. - add patch1394 to support PLANEX GW-US54GXS (Wishes:229)
  1690. - update tuxonice to 3.1-for-2.6.33
  1691. * Tue Mar 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-1
  1692. - update to 2.6.33
  1693. - update tuxonice to 3.0.99.48
  1694. - drop e1000 patch
  1695. - drop drm patches
  1696. * Sat Feb 20 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-14
  1697. - add Patch2833 for drm-intel
  1698. - do not change DRM configuration when releasing load detect pipe
  1699. * Sat Feb 20 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-13
  1700. - add Patch2831,2832 for drm-intel
  1701. * Wed Feb 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-12
  1702. - Requires(pre): mkinitrd >= 6.0.93
  1703. - new sysfs layout needs new mkinitrd
  1704. - add Patch2822 for drm-intel
  1705. * Mon Feb 15 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-11
  1706. - update to 2.6.32.8
  1707. - disable SYSFS_DEPRECATED
  1708. * Tue Feb 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-10
  1709. - update to 2.6.32.7
  1710. - enable NUMA support on x86_64
  1711. * Mon Feb 8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.32-9
  1712. - drop Patch380 (see the changelog on 2.6.26-3 below)
  1713. - s/^BuildPreReq/BuildRequires/, s/^Prereq/Requires(pre)/
  1714. * Sun Feb 07 2010 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.32-8
  1715. - rebuilt with gcc 4.4.3
  1716. * Tue Jan 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-7
  1717. - update to 2.6.32.4
  1718. * Sat Jan 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-6
  1719. - update to 2.6.32.3
  1720. - update tuxonice to 2.0.99.44
  1721. - drop i586 support
  1722. - build kernel-headers on i686
  1723. * Thu Dec 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-5
  1724. - update tuxonice to 3.0.99.41-for-2.6.32
  1725. * Tue Dec 15 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.32-4
  1726. - fix ppc.config
  1727. * Tue Dec 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-3
  1728. - update to 2.6.32.1
  1729. - add drm related patches
  1730. Patch2811: drm-radeon-fixes.patch
  1731. Patch2812: drm-radeon-dp-support.patch
  1732. Patch2814: drm-nouveau.patch
  1733. Patch2819: drm-intel-big-hammer.patch
  1734. Patch2826: drm-i915-fix-sync-to-vbl-when-vga-is-off.patch
  1735. Patch2827: linux-2.6-intel-agp-clear-gtt.patch
  1736. Patch2830: linux-2.6.32-drm-i915-gem-on-pae.patch
  1737. * Sat Dec 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-2
  1738. - update x86 configs
  1739. * Fri Dec 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-1
  1740. - update to 2.6.32
  1741. - drop obsolete/upstream patches
  1742. * Tue Oct 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-8
  1743. - update to 2.6.31.3
  1744. - update x86 configs
  1745. - set CONFIG_BLK_DEV_{SD,SR,SG} to "y"
  1746. * Thu Oct 8 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-7
  1747. - fix ppc config (RTC_DRV_PPC -> RTC_DRV_GENERIC etc.)
  1748. * Wed Oct 7 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-6
  1749. - add Patch360 (powerpc: Remove SMP warning from PowerMac cpufreq)
  1750. * Sat Sep 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-5
  1751. - update to 2.6.31.1
  1752. - prefer ata_piix driver on ICH4+ chipset instead of IDE/piix
  1753. * Mon Sep 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-4
  1754. - fix asm headers
  1755. * Mon Sep 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-3
  1756. - add missing headers to kernel-devel
  1757. * Sun Sep 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-2
  1758. - update x86/x86_64 configs
  1759. - set CONFIG_{ATA,ATA_PIIX,SATA_AHCI} to "y"
  1760. - TODO: fix ppc config
  1761. * Sun Sep 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-1
  1762. - update to 2.6.31
  1763. - drop obsolete/upstream patches
  1764. - update tuxonice to current-20090911-v1
  1765. - update unionfs-2.5.2
  1766. * Sat Aug 15 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-43
  1767. - add patch20000 for fix CVE-2009-2692 (SOCKOPS_WRAP()) from fc10
  1768. * Thu Aug 6 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-42
  1769. - update to 2.6.27.29 with security fixes
  1770. * Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-41
  1771. - update to 2.6.27.27
  1772. - add patch4012 to load panasonic-laptop automatically
  1773. (<BTS:0734>, [VineSeed:17786], http://patchwork.kernel.org/patch/2275/)
  1774. * Fri Jul 3 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-40
  1775. - update to 2.6.27.26
  1776. - add patch810 for fix slub bug
  1777. - drop patch20000 (included in .26)
  1778. * Thu Jul 2 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-39
  1779. - change Provides alsa-driver 1.0.19 -> 1.0.17
  1780. * Thu Jul 2 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-38
  1781. - drop patch8000,8001 (alsa driver are provided by alsa-driver package)
  1782. * Mon Jun 29 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-37
  1783. - 2.6.27.25
  1784. - drop patch280 (included in .25)
  1785. - add patch20000 for fix CVE-2009-1389 (r8169 driver)
  1786. * Sat Jun 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-36
  1787. - add Patch280: workaround failures on intel atom
  1788. - add Patch140[45]: fix e1000e driver
  1789. - add Patch2100: fix pata_sch, notice attached slave devices
  1790. - add Patch2900: update synaptics driver
  1791. - add Patch291[012]: update toshiba acpi driver
  1792. - add Patch2920: update eeepc laptop driver
  1793. - add Patch3000: fix up v4l2 video_open function
  1794. * Wed Jun 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-35
  1795. - fix x86_64 config
  1796. * Sun May 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-34
  1797. - enable CONFIG_PCI_MSI
  1798. - add Patch1840 to disable PCI MSI by default
  1799. * Sun May 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-33
  1800. - update to 2.6.27.24
  1801. - add Patch4011 to update panasonic-laptop
  1802. * Sun May 17 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-32
  1803. - now ppc kernel (vmlinux) is named as vmlinuz
  1804. (still keep vmlinux* symlinks for compatibility though)
  1805. - remove MOL-related files and patches completely
  1806. * Sat May 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-31
  1807. - revert config change
  1808. - re-enable CONFIG_SYSFS_DEPRECATED which is still needed by some
  1809. userland utilities
  1810. * Wed May 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-30
  1811. - update configs
  1812. - disable CONFIG_SYSFS_DEPRECATED
  1813. * Tue May 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-29
  1814. - update /boot/vmlinuz* symlink policy
  1815. - vmlinuz -> newly installed kernel
  1816. - vmlinuz-pae -> newly installed pae kernel
  1817. - vmlinuz.old -> current running kernel
  1818. * Mon May 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-28
  1819. - add Patch2812 to add missing drm definitions
  1820. * Sun May 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-27
  1821. - update to 2.6.27.23
  1822. * Tue May 05 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-26
  1823. - apply patch2811 (again) to disable GEM on PAE or 8xx
  1824. * Tue May 05 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-25
  1825. - patch2813 - patch2819 are disabled to fix radeon dri issue
  1826. * Mon May 04 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-24.1
  1827. - test package to fix DRI issue on radeon
  1828. * Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-24
  1829. - modify post script for ppc (delete snd-powermac aliasing in modprobe.conf*)
  1830. * Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-23
  1831. - Patch6030 (unionfs) updated to 2.5.1
  1832. * Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-22
  1833. - update ppc.config (change CONFIG_RTC_DRV_PPC from m to y, and many more)
  1834. - s/modutils/module-init-tools/ in BuildPreReq
  1835. * Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-21
  1836. - change config options for tuxonice-3.0.1
  1837. set following options to 'y'
  1838. - CONFIG_CRYPTO_DEFLATE,CONFIG_CRYPTO_LZO
  1839. - CONFIG_LZO_COMPRESS,CONFIG_LZO_DECOMPRESS
  1840. * Sun Apr 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-20
  1841. - update drm patches
  1842. - update configs
  1843. - CONFIG_USB_OHCI_HCD_SSB change to n
  1844. - update tuxonice to 3.0.1-for-2.6.27
  1845. * Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-19
  1846. - update to 2.6.27.21
  1847. - update tuxonice to new current snapshot (20090313-v1)
  1848. - update kernel_prereq
  1849. - mkinitrd >= 5.1.19.6
  1850. - module-init-tools >= 3.6
  1851. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-18
  1852. - update to 2.6.27.20
  1853. - add PAE kernel entry to grub menu.lst
  1854. - create /boot/vmlinuz-pae for latest pae kernel
  1855. * Wed Mar 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-17
  1856. - update to 2.6.27.19
  1857. - remove r1000 driver
  1858. * Wed Mar 4 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-16
  1859. - update tuxonice to current snapshot (20090214-v1)
  1860. * Thu Feb 19 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-15
  1861. - update Patch8001
  1862. * Wed Feb 18 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-14
  1863. - add Patch8000 and Patch8001 (update alsa-driver to 1.0.19)
  1864. * Fri Feb 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-13
  1865. - update to 2.6.27.17
  1866. * Fri Feb 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-12
  1867. - update to 2.6.27.16
  1868. - re-add Patch1450 to support smarter relatime
  1869. - modify kernel config
  1870. - CONFIG_RT_GROUP_SCHED=y
  1871. - CONFIG_CGROUP_SCHED=y
  1872. - CONFIG_USER_NS=y
  1873. - CONFIG_PID_NS=y
  1874. - CONFIG_DEFAULT_RELATIME=y
  1875. * Sun Jan 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-11
  1876. - update to 2.6.27.13
  1877. - update drm-next.patch
  1878. - drm-next.patch: drm/intel: fix VT switch issue harder.
  1879. - update drm-modesetting-radeon.patch
  1880. - radeon drm: fix broken caching bits in radeon which broke AGP
  1881. - update to squashfs 3.4
  1882. * Mon Jan 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-10
  1883. - update to 2.6.27.12
  1884. - drop upstream patch (patch2500)
  1885. * Tue Jan 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-9
  1886. - add kernel-pae subpackage for PAE capable kernel (i686 only)
  1887. * Sat Dec 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-8
  1888. - add Patch1400 to support ich9 e1000 support
  1889. - add Patch140[123] to support newer e1000e device
  1890. - add Patch1410 to update r8169
  1891. - add Patch250[0124] to update wireless bits
  1892. - add Patch260[012] to update uvcvideo
  1893. - add Patch2800,281[0356] to update drm
  1894. - add Patch4000 to add atl2 driver
  1895. - add Patch4010 to add panasonic laptop extras
  1896. * Fri Dec 26 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-7
  1897. - fix header installation section (introducing asmarch macro etc.)
  1898. especially for arch/powerpc/include/asm instead of include/asm-powerpc
  1899. (see git commit b8b572e1015f81b4e748417be2629dfe51ab99f9)
  1900. * Mon Dec 22 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-6
  1901. - fix broken ppc.config (maybe at 2.6.27-4 or -5?)
  1902. * Sun Dec 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-5
  1903. - update to 2.6.27.10
  1904. - change configs
  1905. - set CONFIG_RTC_DRV_CMOS=y
  1906. - set CONFIG_TIO_IGNORE_LATE_INITCALL=y
  1907. * Wed Dec 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-4
  1908. - update to 2.6.27.9
  1909. - change configs
  1910. - set CONFIG_RTC_CLASS=y instead of "m"
  1911. - set CONFIG_CGROUPS=y
  1912. * Sat Dec 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-3
  1913. - add Conflicts: libdrm-devel < 2.4.0-4 to kernel-headers
  1914. - add kernel-firmware subpackage
  1915. * Fri Dec 12 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-2
  1916. - minor treatment for creating asm symlinks
  1917. * Thu Dec 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-1
  1918. - update to 2.6.27.8
  1919. - update tuxonice to current snapshot
  1920. - update unionfs to 2.5
  1921. - update configs
  1922. * Sun Oct 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-9
  1923. - Requires(post): mkinitrd >= 4.2.1.10-2vl5
  1924. * Mon Sep 15 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.26-8
  1925. - the first line "# powerpc" was missing on ppc.config of 2.6.26-7 - fixed.
  1926. * Tue Sep 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-7
  1927. - update to 2.6.26.5
  1928. - drop patch2230 (merged in upstream)
  1929. * Sat Aug 16 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.26-6
  1930. - add patch2230 to fix it821x in pass-through mode segfaults
  1931. (Already this patch is merged into kernel main tree)
  1932. * Mon Aug 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-5
  1933. - update to 2.6.26.2
  1934. * Wed Jul 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-4
  1935. - set CONFIG_X86_PAT to n
  1936. - this may cause lock or boot problem in some system
  1937. - set CONFIG_IDE_GENERIC to n
  1938. - disable ide_generic to fix piix dma problem.
  1939. ide_generic does not help in recent PCs, and may cause confusion,
  1940. so it should be set 'n' now.
  1941. * Tue Jul 22 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.26-3
  1942. - drop unneccesary powerpc patches
  1943. - re-create Patch370 and ppc.config
  1944. - add Patch380 and apply in reverse (until Vine goes to gcc-4.4.x)
  1945. * Tue Jul 22 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.26-2
  1946. - do not override asm-powerpc/highmem.h with asm-ppc/highmem.h anymore
  1947. * Sat Jul 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-1
  1948. - update to 2.6.26
  1949. - update configs
  1950. - drop unneeded patches
  1951. - update tuxonice from tuxonice-2.6.26.git
  1952. * Thu Jul 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-12
  1953. - update to 2.6.25.10
  1954. - fix CONFIG_NLS_DEFAULT to utf8
  1955. * Sat Jun 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-11
  1956. - update to 2.6.25.9
  1957. - add Patch2500 to implement smarter atime update support ([VineSeed:15756])
  1958. - change CONFIG_NLS_DEFAULT from euc-jp to utf-8
  1959. * Tue Jun 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-10
  1960. - updated to 2.6.25.6
  1961. * Mon Jun 09 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-9
  1962. - CONFIG_BLK_DEV_{IDECD,PIIX}=m to avoid piix driver to override
  1963. ata_piix driver under ICH* PATA chipsets
  1964. * Sat May 31 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-8
  1965. - add Patch2400 to support Intel 965G/965GM chipsets
  1966. (0e170c72c0c55bd78213a0f5053bd9a1dde403b7)
  1967. * Thu May 29 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-7
  1968. - add Patch2220 to fix boot suspending on recent MacBooks w/o AC adapter
  1969. (see http://www.spinics.net/lists/linux-ide/msg23442.html and its thread)
  1970. * Sat May 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-6
  1971. - update to 2.6.25.4
  1972. - drop Patch2400 (already in upstream)
  1973. * Fri May 16 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.25-5
  1974. - fix ppc.config
  1975. * Thu May 15 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.25-4
  1976. - add Patch2400 (cb6716c879ecf49e2af344926c6a476821812061)
  1977. to fix broken drive detection on some MacBooks
  1978. - disable Patch381 (no need to export copy_page symbols anymore)
  1979. * Fri May 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-3
  1980. - update to 2.6.25.1
  1981. * Mon Apr 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-2
  1982. - update unionfs to 2.3.3
  1983. - update tuxonice to 3.0-rc7
  1984. * Wed Apr 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-1
  1985. - update to 2.6.25
  1986. - update unionfs to 2.3.2
  1987. - update configs
  1988. * Sun Apr 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-7
  1989. - build x86 headers on i586 build
  1990. * Fri Apr 04 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.24-6
  1991. - re-introduce kernel-headers subpackage again
  1992. (which obsoletes pretty old glibc-kernheaders package)
  1993. * Sun Mar 30 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.24-5
  1994. - fix ppc.config
  1995. - add buildmol (default 0)
  1996. * Thu Mar 27 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.24-4
  1997. - fix include file install section for x86_64
  1998. * Wed Mar 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-3
  1999. - drop supermount-ng patch
  2000. - add Patch6020 for bootsplash
  2001. * Tue Mar 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-2
  2002. - update to 2.6.24.4
  2003. * Mon Mar 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-1
  2004. - update to 2.6.24.3
  2005. - update unionfs to 2.2.4
  2006. - update x86/x86_64 configs
  2007. * Fri Jan 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl7
  2008. - update TuxOnIce to 3.0-rc5-2.6.23.14
  2009. * Mon Jan 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl6
  2010. - updated to 2.6.23.14
  2011. - update TuxOnIce to 3.0-rc4-2.6.23.14
  2012. * Sun Dec 16 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl5
  2013. - add Patch381 (unionfs won't build without this patch)
  2014. - rename mol-kmods to kernel-module-mol
  2015. * Sat Dec 15 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl4
  2016. - updated to 2.6.23.11
  2017. - update TuxOnIce to 3.0-rc3-2.6.23.9
  2018. - update unionfs to 2.1.11
  2019. - update squashfs to 3.3
  2020. * Wed Dec 5 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl3
  2021. - updated to 2.6.23.9
  2022. * Sun Nov 18 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl2
  2023. - update TuxOnIce to 3.0-rc2-2.6.23.1
  2024. - update ppc config
  2025. * Sat Nov 17 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl1
  2026. - update to 2.6.23.8
  2027. * Mon Nov 05 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.23-0vl0.7
  2028. - update x86_64.config
  2029. * Tue Oct 30 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl0.6
  2030. - update x86 config
  2031. * Mon Oct 29 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.23-0vl0.5
  2032. - update x86_64.config
  2033. - add patch2301 for fix a bug in the LSI emulation in VMWare 5
  2034. * Mon Oct 22 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl0.4
  2035. - unionfs updated to 2.1.7
  2036. * Mon Oct 22 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl0.3
  2037. - add Patch380 to fix symbol errors with mol-kmods
  2038. - fix ppc.config (CONFIG_SLUB_DEBUG{,_ON} were missing)
  2039. * Sun Oct 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl0.2
  2040. - require mkinitrd >= 4.2.1.8-0vl5 for tuxonice-3.0
  2041. - update grub/menu.lst to use "resume=" parameter instead of "resume2="
  2042. * Sun Oct 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl0.1
  2043. - update x86 config
  2044. - update ppc config (enable SLUB allocator instead of SLAB allocator)
  2045. * Fri Oct 19 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl0
  2046. - initial attempt for upgrading 2.6.23
  2047. - 2.6.23.1
  2048. - drop many "untested" or "already in upstream" patches
  2049. - add e1000e driver
  2050. - r1000 updated to 1.0.7 (with a patch to fix compile failure)
  2051. - drop fbsplash
  2052. - updated other components such as following:
  2053. - TuxOnIce (formerly suspend2) 3.0-rc1
  2054. - supermount-ng 2.2.2
  2055. - unionfs 2.1.6
  2056. - squashfs 3.2r2
  2057. - Mac-On-Linux 0.9.72.1 (only on ppc)
  2058. - other important TODOs:
  2059. - prepare correctly working i?86/x86_64 configs for the first thing!
  2060. - clean up many sections in this spec file
  2061. - re-organize many of the patches
  2062. - include another kind of splash mechanism (usplash? splashy? etc.)
  2063. - time to consider introducing xen and SELinux?
  2064. * Thu Oct 04 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl89
  2065. - re-update patch1050,1060 for suspend2 2.2.8 on x86_64
  2066. - update patch1390 to 3.71b (wishes:128)
  2067. - update patch1630 (tg3 section is no needed)
  2068. * Wed Oct 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl88
  2069. - Prereq: mkinitrd >= 4.2.1.8-0vl2 for new suspend2
  2070. * Sun Sep 30 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl87
  2071. - update suspend2 patch to 2.2.8-for-2.6.16.21
  2072. * Fri Sep 28 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl86
  2073. - add patch20390 for fix CVE-2007-4573 (Zero extend all registers)
  2074. * Thu Sep 27 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl85
  2075. - add patch20370 for fix CVE-2007-3739 ("mm/mmap.c")
  2076. - add patch20380 for fix CVE-2007-3740 (CIFS should honor umask)
  2077. - update Source200, patch1050,1060 for fix function name conflict on x86_64
  2078. * Mon Aug 27 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl84
  2079. - fix following configs for ppc
  2080. - CONFIG_IEEE1394_EXPORT_FULL_API=y
  2081. - CONFIG_IEEE1394_OHCI1394=m
  2082. * Mon Aug 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl83
  2083. - add Patc2146 for libata/ahci to add new chipset(sb700,mcp7x,via) support
  2084. - update Patch2143
  2085. * Sun Aug 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl82
  2086. - update Patch2143
  2087. * Sun Aug 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl81
  2088. - add Patch2140 for libata ich9 support
  2089. - add Patch2141 for generic ahci class support
  2090. - add Patch2142 for libata/ide mcp67 support
  2091. - add Patch2143 for libata/ata_piix update to fix port mapping problem in ich8
  2092. - add Patch2144 for libata/ahci update to force SB600 as AHCI mode
  2093. - add Patch2145 for libata/sata_via to add new chipset support
  2094. - add Patch2220 for IDE/atiixp SB600 support
  2095. - add Patch3200 for agpgart/intel-agp intel 965 support
  2096. - add Patch3210 for drm/i915 intel 945gme support
  2097. - add Patch3010 for hda_intel ICH9/RS690/MCP6x support
  2098. * Sat Aug 25 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl80
  2099. - add patch20360 for fix CVE-2007-3848 (PR_SET_PDEATHSIG)
  2100. - add patch20350 for fix CVE-2007-4308 (aac raid driver)
  2101. - add Patch20320 for fix CVE-2007-3513 (usblcd)
  2102. - add Patch20330 for fix CVE-2007-1353 (Bluetooth Fix L2CAP/HCI setsockopt())
  2103. - add Patch20340 for fix CVE-2007-3105 (random)
  2104. - add patch20310 for fox CVE-2006-7203(compat_sys_mount())
  2105. - add patch1371 for support Corega LAPCIGT NIC (R8169)
  2106. - renumber patch1371 -> patch1375 (linux-2.6.16-r1000-1.0.4.patch)
  2107. * Sun Jun 10 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl79
  2108. - add patch20280 for fix CVE-2007-2453
  2109. - add patch20290 for fix CVE-2007-2875
  2110. - add patch20300 for fix CVE-2007-2876
  2111. - add Patch2300 to update 3w-9xxx driver (from 3ware)
  2112. * Sat Jun 09 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl78
  2113. - add Patch1391 to update forcedeth-0.60
  2114. * Thu May 31 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl77
  2115. - for VineSeed
  2116. * Mon May 28 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl76
  2117. - add patch20250 for fix CVE-2007-1861 (NETLINK_FIB_LOOKUP)
  2118. - add patch20260 for fix CVE-2007-2172 (anout-of-bounds access)
  2119. - add patch20270 for fix CVE-2007-2525 (PPP Over X/Ethernet)
  2120. * Sat Apr 14 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl75
  2121. - add patch20225 for fix CVE-2007-1497 (ipv6_conntrack_in())
  2122. - add patch20240 for fix CVE-2007-1357 (atalk_sum_skb() in AppleTalk)
  2123. - fix changelog typo
  2124. * Fri Apr 06 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl74
  2125. - add patch20200 for fix CVE-2007-1217 (isdn capi)
  2126. - update config (CONFIG_CAPI_TRACE is added)
  2127. - add patch20220 for fix CVE-2007-1496 (nf_conntrack in netfilter)
  2128. - add patch20230 for fix CVE-2007-1592 (cp_v6_syn_recv_soc())
  2129. - remake patch20180 (for CVE-2007-1000)
  2130. - old patch included CVE-2007-1388 fix
  2131. - add patch20210 for fix CVE-2007-1388 (do_ipv6_setsockopt())
  2132. - it was separated from old patch20180
  2133. * Wed Mar 14 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl73
  2134. - add patch20190 for fix CVE-2007-0958 (PT_INTERP)
  2135. * Wed Mar 14 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl72
  2136. - add patch for fix CVE-2007-0005 (cm4040)
  2137. - add patch for fix CVE-2007-1000 (ipv6_getsockopt_sticky())
  2138. * Wed Feb 21 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl71
  2139. - add patch20160 for fix CVE-2007-0772 (NFSACL DoS)
  2140. * Thu Feb 15 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl70
  2141. - add patch20150 for fix CVE-2007-0006 ("key_alloc_serial()" DoS)
  2142. * Mon Feb 05 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl69
  2143. - add patch20140 for fix CVE-2006-5753 (listxattr Memory Corruption)
  2144. * Thu Jan 18 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl68
  2145. - add patch20120 for fix CVE-2006-4814 (mincore User Space Access Lock issue)
  2146. - add patch20130 for fix CVE-2006-5749 (ISDN init_timer)
  2147. * Mon Jan 08 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl67
  2148. - rebuilt
  2149. * Mon Dec 25 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl66.1
  2150. - test package
  2151. - add patch20070 for fix CVE-2006-5173
  2152. - add patch20080 for fix CVE-2006-5823
  2153. - add patch20090 for fix CVE-2006-6053
  2154. - add patch20100 for fix CVE-2006-6054
  2155. - add patch20110 for fix CVE-2006-6056
  2156. * Wed Dec 20 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl66
  2157. - add patch20060 for fix CVE-2006-6106
  2158. * Fri Dec 15 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl65
  2159. - update to 2.6.16.36
  2160. * Sun Dec 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl64
  2161. - drop Patch2220.
  2162. * Thu Dec 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl63
  2163. - update to 2.6.16.34
  2164. - drop patch1380,2300,200[01234]0 which are merged in 2.6.16.34
  2165. * Thu Dec 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl62
  2166. - update tg3 driver to 3.66d (Patch1390)
  2167. - update ix86 config
  2168. - set CONFIG_ACPI_BLACKLIST_YEAR to 1999 instead of 2001
  2169. * Sun Dec 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl61
  2170. - add Patch2130 to use ACHI on libata suspend/resume.
  2171. - add Patch2220 to support DMA on ICH6M (<BTS:407>)
  2172. http://marc.theaimsgroup.com/?l=linux-ide&m=114317385718285&w=2
  2173. * Sun Nov 26 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl60.1
  2174. - add patch20000 for fix CVE-2006-4997
  2175. - add patch20010 for fix CVE-2006-4572
  2176. - add patch20020 for fix CVE-2006-4623
  2177. - add patch20030 for fix CVE-2005-4352
  2178. - add patch20040 for fix CVE-2006-5619
  2179. - add patch20050 for fix CVE-2006-5757
  2180. - add patch1361 for fix e1000 suspend/resume powerup and irq allocation
  2181. - add patch1380 for support sis900 new PHY
  2182. - add patch2300 for fix pppoe
  2183. * Fri Oct 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl60
  2184. - add Patch1344 to fix sky2 88E803X transmit lokup problem (<BTS:309>)
  2185. http://marc.theaimsgroup.com/?l=git-commits-head&m=116146456420139&w=2
  2186. * Tue Oct 24 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl59
  2187. - [ppc] drop Patch351, and add/modify Patch352, Patch353 and Patch354
  2188. for better offb/BootX fixes, taken from linux-2.6 git tree
  2189. - Patch352: ab13446616118dc61c00ea50cc49919400717dd0 (v2.6.18-rc1)
  2190. - Patch353: 98c82472e98469ef23d7c680a0d6be1429540166 (v2.6.18-rc3)
  2191. - Patch354: 6cdd2bdfb9e2449f1c8a0f729cdf9cfd733dd63f (v2.6.18-rc5)
  2192. - [ppc] add Patch355 (eMac lockup fix)
  2193. - Patch355: 5a47d749e3d067e057d276075fed1d91749d3841 (v2.6.17-rc6)
  2194. * Fri Oct 20 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl58
  2195. - add Patch6025 (ad-hoc unicon revert patch for ppc)
  2196. - add mol-kmods subpackage (which needs fully-built kernel source to compile)
  2197. - fix %%post section (for snd-powermac and vmlinu[xz] symlinks)
  2198. * Thu Oct 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl57
  2199. - add Patch1371 for r1000 driver 1.0.4
  2200. * Tue Oct 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl56
  2201. - update x86 config
  2202. - enable more drivers
  2203. - disable cpufreq-nforce2
  2204. * Sun Oct 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl55
  2205. - update sdhci driver to 0.12
  2206. * Sun Oct 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl54
  2207. - add sdhci driver 0.11 (from mm patch)
  2208. * Sat Oct 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl53
  2209. - add bcm43xx driver backported from 2.6.17
  2210. - fix typo in %%post
  2211. - update x86 config
  2212. * Fri Oct 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl52
  2213. - replace Patch1880
  2214. - Patch inserts PCI memory mapped config region(s) into the resource map. This
  2215. will allow for the MMCCONFIG regions to be marked as busy in the iomem
  2216. address space as well as the regions(s) showing up in /proc/iomem.
  2217. (backported from 2.6.19-rc)
  2218. * Thu Oct 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl51
  2219. - add Patch1880 (<BTS:218>)
  2220. - Disable MMCONFIG on Intel SDV using DMI blacklist
  2221. (see http://www.x86-64.org/lists/patches/msg03704.html)
  2222. - add Patch2210 to suuport Marvell PATA controller by generic ide driver.
  2223. - use vmlinux symlink on ppc architecture
  2224. * Thu Oct 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl50
  2225. - add ivtv driver fix (Thanks to T.Adachi)
  2226. * Sun Oct 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl49
  2227. - update unicon patch (<BTS:196>)
  2228. - fix %%post to correct modprobe.conf.dist path.
  2229. * Tue Sep 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl48
  2230. - update ivtv driver to fix bug (Thanks to T.Adachi)
  2231. * Mon Sep 25 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl47
  2232. - update unicon patch to fix broken double byte chars with gpm.
  2233. - XXX: still broken on selecting strings with gpm.
  2234. - We are not supporting gpm any longer, do not expect any
  2235. fix for this.
  2236. * Sat Sep 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl46
  2237. - add Patch3100 to use mutexes in firmware_class
  2238. * Fri Sep 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl45
  2239. - update to 2.6.16.29
  2240. * Thu Sep 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl44
  2241. - add Patch2120 to add vt8237a support for sata_via
  2242. - update Patch2110 to add SiS ahci controller's pciid
  2243. - add more Japanese summaries.
  2244. * Wed Sep 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl43
  2245. - change Group of kernel-doc to Applications/Documentation
  2246. * Sun Sep 17 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl42
  2247. - add Patch352 to fix boot with ramdisk from BootX on OldWorld PowerMac
  2248. (patch derived from BenH, then appeared on Ubuntu Malone #50746)
  2249. * Sun Sep 17 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl41
  2250. - disable CONFIG_SND_AOA* on ppc.config (use snd-powermac instead)
  2251. * Sun Sep 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl40
  2252. - add Patch1343 to fix sky2 "phy read timeout" message flood.
  2253. (<BTS:189>)
  2254. * Sun Sep 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl39
  2255. - update sky2 to 1.7 (<BTS:189>)
  2256. - renumber sky2/skge patches
  2257. * Sat Sep 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl38
  2258. - add Patch1370 to update r8169 driver
  2259. - add support RTL8168*/RTL810x
  2260. * Mon Sep 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl37
  2261. - add Patch2200 to support JMicron JMB36x ATA controllers
  2262. by legacy IDE driver
  2263. - update configs
  2264. * Sun Sep 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl36
  2265. - update Patch6000 to fix unicon
  2266. (FIXME: bootsplash does not support unicon)
  2267. - add Patch2110 to add newer chipset support for AHCI
  2268. (JMicron, ATI, NVIDIA)
  2269. * Sat Sep 09 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl35
  2270. - update x86_64.config (CONFIG_SND_VXPOCKET is not set)
  2271. * Fri Sep 08 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl34
  2272. - add Patch351 for offb on unsupported cards
  2273. * Fri Sep 08 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl33
  2274. - fix ppc.config (CONFIG_FB_RIVA is not set, disable unneeded snd modulers)
  2275. - fix Patch3000 (no changes under ppc/ directory - it's broken)
  2276. * Tue Sep 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl32
  2277. - update e1000 driver to 7.2.7
  2278. - update configs
  2279. * Mon Sep 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl31
  2280. - update alsa-driver to 1.0.12
  2281. - update e1000 driver to 7.1.9-k4 (from 2.6.18-rc5) (<BTS:0136>)
  2282. - add patch10000 to remove localized version string from /proc/version
  2283. (<BTS:0126>)
  2284. - update unionfs to 1.2 (<BTS:0131>)
  2285. * Sun Sep 03 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl30
  2286. - fix ppc.config (CONFIG_XMON etc)
  2287. * Thu Aug 31 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl29
  2288. - update x86_64.config
  2289. * Tue Aug 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl28
  2290. - update to 2.6.16.28
  2291. * Fri Aug 25 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl27
  2292. - fix more of ppc.config (CONFIG_MD etc)
  2293. * Wed Aug 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl26
  2294. - add Patch1350,1351 for sky2 update
  2295. - sky2-1.5, sky2 jumbo paket fix
  2296. - add Patch1352 for skge update
  2297. - add Patch2100 to add support Promise 2037x SATA controllers with PATA ports
  2298. * Thu Aug 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl25
  2299. - update x86.config, re-create i586.config from i686.config
  2300. - add Patch1850 from FC (add nosoftlock runtime option)
  2301. * Wed Jul 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl24
  2302. - add Patch1203 to fix nfsd crash.
  2303. * Tue Jul 25 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl23
  2304. - update to 2.6.16.27
  2305. * Thu Jul 20 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl22
  2306. - update x86_64.config
  2307. * Tue Jul 18 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl21
  2308. - update to 2.6.16.26
  2309. * Fri Jul 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl20
  2310. - update to 2.6.16.24
  2311. * Sun Jul 02 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl19
  2312. - update x86_64.config, add CONFIG_HPET_EMULATE_RTC=y
  2313. (see [VineSeed-x86_64:00146] from s.mishima)
  2314. * Wed Jun 28 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl18
  2315. - modify Patch3000 for ppc
  2316. - disable swsusp on ppc again
  2317. - update ppc.config
  2318. * Wed Jun 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl17
  2319. - update to 2.6.16.22
  2320. - disable buildsmp, default normal kernel supports smp now.
  2321. * Tue Jun 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl16
  2322. - update to 2.6.16.20
  2323. * Sun May 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl15
  2324. - update to 2.6.16.18
  2325. - update squashfs to 3.0
  2326. * Sun May 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl14
  2327. - update to 2.6.16.17
  2328. * Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl13
  2329. - add Patch3000 to update alsa driver from 2.6.17-rc4
  2330. * Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl12
  2331. - add saa7133gyc/ivtv driver from paken. (Patch7000)
  2332. (Thanks for T.Adachi)
  2333. - update ix86 config
  2334. add CONFIG_VIDEO_GR3DYCS=m, CONFIG_VIDEO_IVTV=m
  2335. * Sat May 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl11
  2336. - update to 2.6.16.16
  2337. - update ix86 config
  2338. * Wed May 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl10
  2339. - update to 2.6.16.13
  2340. - update software suspend2 to 2.2.5
  2341. * Wed Apr 26 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl9
  2342. - enable swsusp2 on ppc (for testing)
  2343. * Thu Apr 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl8
  2344. - update to 2.6.16.9
  2345. * Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl7
  2346. - update to 2.6.16.4
  2347. - update software suspend2 to 2.2.4
  2348. * Tue Mar 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl6
  2349. - update to 2.6.16.1
  2350. - update software suspend2 to 2.2.2.1
  2351. * Tue Mar 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl5
  2352. - XXX:temporarily back to suspend2-2.2.0.1, 2.2.1 does not work correctly.
  2353. * Tue Mar 21 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl4
  2354. - fix more of ppc configs
  2355. * Mon Mar 20 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl3
  2356. - update ppc configs
  2357. * Mon Mar 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl2
  2358. - update x86_64 configs
  2359. * Mon Mar 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl1
  2360. - update to 2.6.16
  2361. - update ix86*, x86_64* configs
  2362. regenerate smp configs from up config
  2363. - update software suspend2 to 2.2.1
  2364. * Sat Mar 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl7
  2365. - fix unicon driver
  2366. - update x86_64 configs (still need to work)
  2367. - TODO: ppc* configs
  2368. * Thu Mar 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl6
  2369. - add missing files to -devel package
  2370. * Wed Mar 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl5
  2371. - add symlinks for initrd/initrd.old
  2372. * Wed Mar 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl4
  2373. - add Patch6011 to fix supermount-ng
  2374. - add Patch6031 to fix unionfs
  2375. * Tue Feb 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl3
  2376. - update ix86* config
  2377. - drop some FC patches
  2378. - debug optios, execshield
  2379. * Mon Feb 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl2
  2380. - update to 2.6.16-rc5
  2381. - update ix86* configs
  2382. - update software suspend2 to 2.2.0.1
  2383. - update unionfs to 1.1.3.20060221
  2384. - TODO: unicon driver should be fixed
  2385. - TODO: ppc* configs and x86_64* configs not fixed yet
  2386. * Sun Feb 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl1
  2387. - update to 2.6.16-rc2
  2388. - update ix86* config
  2389. - update squashfs to 2.2-r2
  2390. - update software suspend2 to 2.2 (not applied yet)
  2391. - TODO: unicon driver should be fixed
  2392. * Mon Oct 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.14-0vl1
  2393. - upated to 2.6.14.3
  2394. - update ix86* config
  2395. - update software suspend to 2.2-rc13
  2396. - TODO: unicon driver should be fixed
  2397. * Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.14-0vl0
  2398. - based on 2.6.14-1.1636_FC4 (changelogs NOT merged yet)
  2399. - updated to 2.6.14.2
  2400. - Patch6000 (unicon) temporally disabled - TODO in top priority!
  2401. - updated Patch6030 (unionfs 1.1.1), with eliminating asm/segment.h inclusion
  2402. (ppc* and sparc* don't have asm/segment.h - see ChangeLog-2.6.14)
  2403. - TODO: ix86* configs not fixed yet
  2404. * Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl11
  2405. - added Patch313 for better fan control on recent PowerBooks
  2406. (http://lists.debian.org/debian-powerpc/2005/08/msg00478.html)
  2407. * Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl10
  2408. - added Patch1920
  2409. (http://lists.debian.org/debian-powerpc/2005/01/msg00219.html)
  2410. * Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl9
  2411. - some more fixes for ppc.config and ppc-smp.config (THERM_* to y)
  2412. - updated Patch6030 (unionfs 1.0.3)
  2413. - added Patch312 to supress CPU-temp messages from therm_windtunnel module
  2414. * Sun Aug 14 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl7
  2415. - more fixes for ppc.config and ppc-smp.config
  2416. * Thu Jul 14 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl6
  2417. - initial attempt for ppc archtecture (ppc64 not yet)
  2418. * Fri Jun 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl5
  2419. - update to 2.6.12.1 (was not applied in 2.6.12-0vl4)
  2420. - add suquashfs-2.1-r2 (Patch6030)
  2421. - update configs
  2422. - change to 'y' for BLK_DEV_LOOP, CRAMFS, SQUASHFS
  2423. - set samba default codepage to cp932
  2424. - set vfat default codepage to cp932, default iocharset to euc-jp
  2425. - set NLS_DEFAULT to cp932 instead of utf-8
  2426. * Wed Jun 22 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl4
  2427. - add requires: kernel-doc instead of kernel26-doc
  2428. * Tue Jun 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl3
  2429. - rename kernel26 to kernel
  2430. * Mon Jun 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl2
  2431. - update configs
  2432. - enable CONFIG_INPUT_MOUSEDEV_PSAUX for compatibility
  2433. * Sat Jun 18 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl1
  2434. - update to 2.6.12
  2435. - remove tux http accelerator
  2436. * Sat Jun 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl7
  2437. - fix saa7133gyc driver
  2438. - add Patch200 to add no_timer_check hack for i386 kernel.
  2439. (thanks to NAKAMURA Kenta)
  2440. - update configs
  2441. - enable IO_APIC in UP kernel.
  2442. * Fri Jun 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl6
  2443. - update to 2.6.12-rc6
  2444. - add software suspend 2.1.9 ( not applyed yet )
  2445. - add Patch6030 for unionfs-1.0.12a
  2446. - update configs
  2447. * Wed Jun 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl5
  2448. - add kernel-source package.
  2449. * Sun Jun 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl4
  2450. - fix and update bootsplash to 3.1.6
  2451. - add Patch6010 for supermount-ng-2.0.8
  2452. * Sun May 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl3
  2453. - add Patch6010 for bootsplash-3.1.4
  2454. * Sun May 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl2
  2455. - port unicon patch(Patch6000) from 2.6.9 ppc kernel.
  2456. * Sat May 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl1
  2457. - initial build of kernel26 package for Vine Linux
  2458. (partially based on FC kernel)
  2459. - update to kernel-2.6.12-rc5
  2460. - use Vine Logo for fb console.
  2461. * Tue May 24 2005 Dave Jones <davej@redhat.com>
  2462. - Update various cpufreq drivers.
  2463. * Mon May 23 2005 Dave Jones <davej@redhat.com>
  2464. - Add extra id to SATA Sil driver. (#155748)
  2465. - Fix oops on rmmod of lanai & ms558 drivers when no hardware present.
  2466. * Mon May 23 2005 Dave Jones <davej@redhat.com>
  2467. - Fix double unlock of spinlock on tulip. (#158522)
  2468. * Mon May 23 2005 David Woodhouse <dwmw2@redhat.com>
  2469. - audit updates: log serial # in user messages, escape comm= in syscalls
  2470. * Mon May 23 2005 Dave Jones <davej@redhat.com>
  2471. - 2.6.12-rc4-git6
  2472. MMC update, reiserfs fixes, AIO fix.
  2473. - Fix absolute symlink in -devel (#158582)
  2474. - 2.6.12-rc4-git7
  2475. PPC64 & i2c fixes
  2476. - Fix another divide by zero in ipw2100 (#158406)
  2477. - Fix dir ownership in kernel-doc rpm (#158478)
  2478. * Sun May 22 2005 Dave Jones <davej@redhat.com>
  2479. - Fix divide by zero in ipw2100 driver. (#158406)
  2480. - 2.6.12-rc4-git5
  2481. More x86-64 updates, Further pktcdvd frobbing,
  2482. yet more dvb updates, x86(64) ioremap fixes,
  2483. ppc updates, IPMI sysfs support (reverted for now due to breakage),
  2484. various SCSI fixes (aix7xxx, spi transport), vmalloc improvements
  2485. * Sat May 21 2005 David Woodhouse <dwmw2@redhat.com>
  2486. - Fix oops in avc_audit() (#158377)
  2487. - Include serial numbers in non-syscall audit messages
  2488. * Sat May 21 2005 Bill Nottingham <notting@redhat.com>
  2489. - bump ipw2200 conflict
  2490. * Sat May 21 2005 Dave Jones <davej@redhat.com> [2.6.11-1.1334_FC4]
  2491. - driver core: restore event order for device_add()
  2492. * Sat May 21 2005 David Woodhouse <dwmw2@redhat.com>
  2493. - More audit updates. Including a fix for AVC_USER messages.
  2494. * Fri May 20 2005 Dave Jones <davej@redhat.com>
  2495. - 2.6.12-rc4-git4
  2496. networking fixes (netlink, pkt_sched, ipsec, netfilter,
  2497. ip_vs, af_unix, ipv4/6, xfrm). TG3 driver improvements.
  2498. * Thu May 19 2005 Dave Jones <davej@redhat.com> [2.6.11-1.1327_FC4]
  2499. - 2.6.12-rc4-git3
  2500. Further fixing to raw driver. More DVB updates,
  2501. driver model updates, power management improvements,
  2502. ext3 fixes.
  2503. - Radeon on thinkpad backlight power-management goodness.
  2504. (Peter Jones owes me two tacos).
  2505. - Fix ieee1394 smp init.
  2506. * Thu May 19 2005 Rik van Riel <riel@redhat.com>
  2507. - Xen: disable TLS warning (#156414)
  2508. * Thu May 19 2005 David Woodhouse <dwmw2@redhat.com>
  2509. - Update audit patches
  2510. * Thu May 19 2005 Dave Jones <davej@redhat.com> [2.6.11-1.1325_FC4]
  2511. - Fix up missing symbols in ipw2200 driver.
  2512. - Reenable debugfs / usbmon. SELinux seems to cope ok now.
  2513. (Needs selinux-targeted-policy >= 1.23.16-1)
  2514. * Wed May 18 2005 Dave Jones <davej@redhat.com>
  2515. - Fix up some warnings in the IDE patches.
  2516. - 2.6.12-rc4-git2
  2517. Further pktcdvd fixing, DVB update, Lots of x86-64 updates,
  2518. ptrace fixes, ieee1394 changes, input layer tweaks,
  2519. md layer fixes, PCI hotplug improvements, PCMCIA fixes,
  2520. libata fixes, serial layer, usb core, usbnet, VM fixes,
  2521. SELinux tweaks.
  2522. - Update ipw2100 driver to 1.1.0
  2523. - Update ipw2200 driver to 1.0.4 (#158073)
  2524. * Tue May 17 2005 Dave Jones <davej@redhat.com>
  2525. - 2.6.12-rc4-git1
  2526. ARM, ioctl security fixes, mmc driver update,
  2527. ibm_emac & tulip netdriver fixes, serial updates
  2528. ELF loader security fix.
  2529. * Mon May 16 2005 Rik van Riel <riel@redhat.com>
  2530. - enable Xen again (not tested yet)
  2531. - fix a typo in the EXPORT_SYMBOL patch
  2532. * Sat May 14 2005 Dave Jones <davej@redhat.com>
  2533. - Update E1000 driver from netdev-2.6 tree.
  2534. - Add some missing EXPORT_SYMBOLs.
  2535. * Fri May 13 2005 Dave Jones <davej@redhat.com>
  2536. - Bump maximum supported CPUs on x86-64 to 32.
  2537. - Tickle the NMI watchdog when we're doing serial writes.
  2538. - SCSI CAM geometry fix.
  2539. - Slab debug single-bit error improvement.
  2540. * Thu May 12 2005 David Woodhouse <dwmw2@redhat.com>
  2541. - Enable CONFIG_ISA on ppc32 to make the RS/6000 user happy.
  2542. - Update audit patches
  2543. * Wed May 11 2005 Dave Jones <davej@redhat.com>
  2544. - Add Ingo's patch to detect soft lockups.
  2545. - Thread exits silently via __RESTORE_ALL exception for iret. (#154369)
  2546. * Wed May 11 2005 David Woodhouse <dwmw2@redhat.com>
  2547. - Import post-rc4 audit fixes from git, including ppc syscall auditing
  2548. * Wed May 11 2005 Dave Jones <davej@redhat.com>
  2549. - Revert NMI watchdog changes.
  2550. * Tue May 10 2005 Dave Jones <davej@redhat.com>
  2551. - Enable PNP on x86-64
  2552. * Tue May 10 2005 Jeremy Katz <katzj@redhat.com>
  2553. - make other -devel packages provide kernel-devel so they get
  2554. installed instead of upgraded (#155988)
  2555. * Mon May 9 2005 Dave Jones <davej@redhat.com>
  2556. - Rebase to 2.6.12-rc4
  2557. | Xen builds are temporarily disabled again.
  2558. - Conflict if old version of ipw firmware is present.
  2559. * Fri May 6 2005 Dave Jones <davej@redhat.com>
  2560. - Add PCI ID for new sundance driver. (#156859)
  2561. * Thu May 5 2005 David Woodhouse <dwmw2@redhat.com>
  2562. - Import audit fixes from upstream
  2563. * Wed May 4 2005 Jeremy Katz <katzj@redhat.com>
  2564. - enable radeonfb and agp on ppc64 to fix X on the G5
  2565. * Tue May 3 2005 Dave Jones <davej@redhat.com>
  2566. - Disable usbmon/debugfs again for now until SELinux policy is fixed.
  2567. * Mon May 2 2005 David Woodhouse <dwmw2@redhat.com>
  2568. - Make kallsyms include platform-specific symbols
  2569. - Fix might_sleep warning in pbook clock-spreading fix
  2570. * Sun May 1 2005 Dave Jones <davej@redhat.com>
  2571. - Fix yesterdays IDE fixes.
  2572. - Blacklist another brainless SCSI scanner. (#155457)
  2573. * Sun May 1 2005 David Woodhouse <dwmw2@redhat.com>
  2574. - Fix EHCI port power switching
  2575. * Sun May 1 2005 Dave Jones <davej@redhat.com>
  2576. - Enable usbmon & debugfs. (#156489)
  2577. * Sat Apr 30 2005 Dave Jones <davej@redhat.com>
  2578. - Numerous IDE layer fixes from Alan Cox.
  2579. - Kill off some stupid messages from the input layer.
  2580. * Fri Apr 29 2005 Roland McGrath <roland@redhat.com>
  2581. - Fix the 32bit emulation on x86-64 segfaults.
  2582. * Wed Apr 27 2005 Dave Jones <davej@redhat.com>
  2583. - Hopefully fix the random reboots some folks saw on x86-64.
  2584. * Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com>
  2585. - fix prereqs for -devel packages
  2586. * Wed Apr 27 2005 Rik van Riel <riel@redhat.com>
  2587. - Fix up the vdso stuff so kernel-xen* compile again
  2588. - Import upstream bugfix so xenU domains can be started again
  2589. * Tue Apr 26 2005 Dave Jones <davej@redhat.com>
  2590. - Fix up the vdso again, which broke on the last rebase to -rc3
  2591. - Fix the put_user() fix. (#155999)
  2592. * Mon Apr 25 2005 Dave Jones <davej@redhat.com>
  2593. - Fix x86-64 put_user()
  2594. - Fix serio oops.
  2595. - Fix ipv6_skip_exthdr() invocation causing OOPS.
  2596. - Fix up some permissions on some /proc files.
  2597. - Support PATA drives on Promise SATA. (#147303)
  2598. * Mon Apr 25 2005 Rik van Riel <riel@redhat.com>
  2599. - upgrade to the latest version of xenolinux patches
  2600. - reenable xen (it boots, ship it!)
  2601. * Sat Apr 23 2005 David Woodhouse <dwmw2@redhat.com>
  2602. - Enable adt746x and windtunnel thermal modules
  2603. - Disable clock spreading on certain pbooks before sleep
  2604. - Sound support for Mac Mini
  2605. * Fri Apr 22 2005 Dave Jones <davej@redhat.com>
  2606. - Reenable i2c-viapro on x86-64.
  2607. * Fri Apr 22 2005 Dave Jones <davej@redhat.com>
  2608. - Don't build powernow-k6 on anything other than 586 kernels.
  2609. - Temporarily disable Xen again.
  2610. * Wed Apr 20 2005 Dave Jones <davej@redhat.com>
  2611. - 2.6.12rc3
  2612. * Wed Apr 20 2005 Dave Jones <davej@redhat.com>
  2613. - Adjust struct dentry 'padding' based on 64bit'ness.
  2614. * Tue Apr 19 2005 Dave Jones <davej@redhat.com>
  2615. - Print stack trace when we panic.
  2616. Might give more clues for some of the wierd panics being seen right now.
  2617. - Blacklist another 'No C2/C3 states' Thinkpad R40e BIOS. (#155236)
  2618. * Mon Apr 18 2005 Dave Jones <davej@redhat.com>
  2619. - Make ISDN ICN driver not oops when probed with no hardware present.
  2620. - Add missing MODULE_LICENSE to mac_modes.ko
  2621. * Sat Apr 16 2005 Dave Jones <davej@redhat.com>
  2622. - Make some i2c drivers arch dependant.
  2623. - Make multimedia buttons on Dell inspiron 8200 work. (#126148)
  2624. - Add diffutils buildreq (#155121)
  2625. * Thu Apr 14 2005 Dave Jones <davej@redhat.com>
  2626. - Build DRM modular. (#154769)
  2627. * Wed Apr 13 2005 Rik van Riel <riel@redhat.com>
  2628. - fix up Xen for 2.6.12-rc2
  2629. - drop arch/xen/i386/signal.c, thanks to Roland's vdso patch (yay!)
  2630. - reenable xen compile - this kernel test boots on my system
  2631. * Tue Apr 12 2005 Dave Jones <davej@redhat.com>
  2632. - Further vdso work from Roland.
  2633. * Mon Apr 11 2005 David Woodhouse <dwmw2@redhat.com>
  2634. - Disable PPC cpufreq/sleep patches which make sleep less reliable
  2635. - Add TIMEOUT to hotplug environment when requesting firmware (#153993)
  2636. * Sun Apr 10 2005 Dave Jones <davej@redhat.com>
  2637. - Integrate Roland McGrath's changes to make exec-shield
  2638. and vdso play nicely together.
  2639. * Fri Apr 8 2005 Dave Jones <davej@redhat.com>
  2640. - Disable Longhaul driver (again).
  2641. * Wed Apr 6 2005 Dave Jones <davej@redhat.com>
  2642. - 2.6.12rc2
  2643. - netdump/netconsole currently broken.
  2644. - Xen temporarily disabled.
  2645. * Fri Apr 1 2005 Dave Jones <davej@redhat.com>
  2646. - Make the CFQ elevator the default again.
  2647. * Thu Mar 31 2005 Rik van Riel <riel@redhat.com>
  2648. - upgrade to new upstream Xen code, twice
  2649. - for performance reasons, disable CONFIG_DEBUG_PAGEALLOC for FC4t2
  2650. * Wed Mar 30 2005 Rik van Riel <riel@redhat.com>
  2651. - fix Xen kernel compilation (pci, page table, put_user, execshield, ...)
  2652. - reenable Xen kernel compilation
  2653. * Tue Mar 29 2005 Rik van Riel <riel@redhat.com>
  2654. - apply Xen patches again (they don't compile yet, though)
  2655. - Use uname in kernel-devel directories (#145914)
  2656. - add uname-based kernel-devel provisions (#152357)
  2657. - make sure /usr/share/doc/kernel-doc-%%{kversion} is owned by a
  2658. package, so it will get removed again on uninstall/upgrade (#130667)
  2659. * Mon Mar 28 2005 Dave Jones <davej@redhat.com>
  2660. - Don't generate debuginfo files if %%_enable_debug_packages isnt set. (#152268)
  2661. * Sun Mar 27 2005 Dave Jones <davej@redhat.com>
  2662. - 2.6.12rc1-bk2
  2663. - Disable NVidia FB driver for time being, it isn't stable.
  2664. * Thu Mar 24 2005 Dave Jones <davej@redhat.com>
  2665. - rebuild
  2666. * Tue Mar 22 2005 Dave Jones <davej@redhat.com>
  2667. - Fix several instances of swapped arguments to memset()
  2668. - 2.6.12rc1-bk1
  2669. * Fri Mar 18 2005 Dave Jones <davej@redhat.com>
  2670. - kjournald release race. (#146344)
  2671. - 2.6.12rc1
  2672. * Thu Mar 17 2005 Rik van Riel <riel@redhat.com>
  2673. - upgrade to latest upstream Xen code
  2674. * Tue Mar 15 2005 Rik van Riel <riel@redhat.com>
  2675. - add Provides: headers for external kernel modules (#149249)
  2676. - move build & source symlinks from kernel-*-devel to kernel-* (#149210)
  2677. - fix xen0 and xenU devel %%post scripts to use /usr/src/kernels (#149210)
  2678. * Thu Mar 10 2005 Dave Jones <davej@redhat.com>
  2679. - Reenable advansys driver for x86
  2680. * Tue Mar 8 2005 Dave Jones <davej@redhat.com>
  2681. - Change SELinux execute-related permission checking. (#149819)
  2682. * Sun Mar 6 2005 Dave Jones <davej@redhat.com>
  2683. - Forward port some FC3 patches that got lost.
  2684. * Fri Mar 4 2005 Dave Jones <davej@redhat.com>
  2685. - Fix up ACPI vs keyboard controller problem.
  2686. - Fix up Altivec usage on PPC/PPC64.
  2687. * Fri Mar 4 2005 Dave Jones <davej@redhat.com>
  2688. - Finger the programs that try to read from /dev/mem.
  2689. - Improve spinlock debugging a little.
  2690. * Thu Mar 3 2005 Dave Jones <davej@redhat.com>
  2691. - Fix up the unresolved symbols problem.
  2692. * Thu Mar 3 2005 Rik van Riel <riel@redhat.com>
  2693. - upgrade to new Xen snapshot (requires new xen RPM, too)
  2694. * Wed Mar 2 2005 Dave Jones <davej@redhat.com>
  2695. - 2.6.11
  2696. * Tue Mar 1 2005 David Woodhouse <dwmw2@redhat.com>
  2697. - Building is nice. Booting would be better. Work around GCC -Os bug which
  2698. which makes the PPC kernel die when extracting its initramfs. (#150020)
  2699. - Update include/linux/compiler-gcc+.h
  2700. * Tue Mar 1 2005 Dave Jones <davej@redhat.com>
  2701. - 802.11b/ipw2100/ipw2200 update.
  2702. - 2.6.11-rc5-bk4
  2703. * Tue Mar 1 2005 David Woodhouse <dwmw2@redhat.com>
  2704. - Fix ppc/ppc64/ppc64iseries builds for gcc 4.0
  2705. - Fix Xen build too
  2706. * Mon Feb 28 2005 Dave Jones <davej@redhat.com>
  2707. - 2.6.11-rc5-bk3
  2708. - Various compile fixes for building with gcc-4.0
  2709. * Sat Feb 26 2005 Dave Jones <davej@redhat.com>
  2710. - 2.6.11-rc5-bk1
  2711. * Fri Feb 25 2005 Dave Jones <davej@redhat.com>
  2712. - Hopefully fix the zillion unresolved symbols. (#149758)
  2713. * Thu Feb 24 2005 Dave Jones <davej@redhat.com>
  2714. - 2.6.11-rc5
  2715. * Wed Feb 23 2005 Rik van Riel <riel@redhat.com>
  2716. - get rid of unknown symbols in kernel-xen0 (#149495)
  2717. * Wed Feb 23 2005 Dave Jones <davej@redhat.com>
  2718. - 2.6.11-rc4-bk11
  2719. * Mon Feb 21 2005 Dave Jones <davej@redhat.com>
  2720. - 2.6.11-rc4-bk9
  2721. * Sat Feb 19 2005 Dave Jones <davej@redhat.com>
  2722. - 2.6.11-rc4-bk7
  2723. * Sat Feb 19 2005 Rik van Riel <riel@redhat.com>
  2724. - upgrade to newer Xen code, needs xen-20050218 to run
  2725. * Sat Feb 19 2005 Dave Jones <davej@redhat.com>
  2726. - 2.6.11-rc4-bk6
  2727. * Fri Feb 18 2005 David Woodhouse <dwmw2@redhat.com>
  2728. - Add SMP kernel for PPC32
  2729. * Fri Feb 18 2005 Dave Jones <davej@redhat.com>
  2730. - 2.6.11-rc4-bk5
  2731. * Tue Feb 15 2005 Dave Jones <davej@redhat.com>
  2732. - 2.6.11-rc4-bk3
  2733. * Mon Feb 14 2005 Dave Jones <davej@redhat.com>
  2734. - 2.6.11-rc4-bk2
  2735. * Sun Feb 13 2005 Dave Jones <davej@redhat.com>
  2736. - 2.6.11-rc4-bk1
  2737. * Sat Feb 12 2005 Dave Jones <davej@redhat.com>
  2738. - 2.6.11-rc4
  2739. * Fri Feb 11 2005 Dave Jones <davej@redhat.com>
  2740. - 2.6.11-rc3-bk8
  2741. * Thu Feb 10 2005 Dave Jones <davej@redhat.com>
  2742. - 2.6.11-rc3-bk7
  2743. * Wed Feb 9 2005 Dave Jones <davej@redhat.com>
  2744. - 2.6.11-rc3-bk6
  2745. * Tue Feb 8 2005 Dave Jones <davej@redhat.com>
  2746. - Enable old style and new style USB initialisation.
  2747. - More PPC jiggery pokery hackery.
  2748. - 2.6.11-rc3-bk5
  2749. * Mon Feb 7 2005 Dave Jones <davej@redhat.com>
  2750. - 2.6.11-rc3-bk4
  2751. - Various patches to unbork PPC.
  2752. - Display taint bits on VM error.
  2753. * Mon Feb 7 2005 Rik van Riel <riel@redhat.com>
  2754. - upgrade to latest upstream Xen bits, upgrade those to 2.6.11-rc3-bk2
  2755. * Sat Feb 5 2005 Dave Jones <davej@redhat.com>
  2756. - 2.6.11-rc3-bk2
  2757. * Fri Feb 4 2005 Dave Jones <davej@redhat.com>
  2758. - 2.6.11-rc3-bk1
  2759. * Wed Feb 2 2005 Dave Jones <davej@redhat.com>
  2760. - Stop the input layer spamming the console. (#146906)
  2761. - 2.6.11-rc3
  2762. * Tue Feb 1 2005 Dave Jones <davej@redhat.com>
  2763. - 2.6.11-rc2-bk10
  2764. - Reenable periodic slab checker.
  2765. * Tue Feb 1 2005 Rik van Riel <riel@redhat.com>
  2766. - update to latest xen-unstable source snapshot
  2767. - add agpgart patch from upstream xen tree
  2768. - port Ingo's latest execshield updates to Xen
  2769. * Mon Jan 31 2005 Rik van Riel <riel@redhat.com>
  2770. - enable SMP support in xenU kernel, use the xen0 kernel for the
  2771. unprivileged domains if the SMP xenU breaks on your system
  2772. * Thu Jan 27 2005 Dave Jones <davej@redhat.com>
  2773. - Drop VM hack that broke in yesterdays rebase.
  2774. * Wed Jan 26 2005 Dave Jones <davej@redhat.com>
  2775. - Drop 586-SMP kernels. These are a good candidate for
  2776. fedora-extras when it appears. The number of people
  2777. actually using this variant is likely to be very very small.
  2778. - 2.6.11-rc2-bk4
  2779. * Tue Jan 25 2005 Dave Jones <davej@redhat.com>
  2780. - 2.6.11-rc2-bk3
  2781. * Sun Jan 23 2005 Dave Jones <davej@redhat.com>
  2782. - Updated periodic slab debug check from Manfred.
  2783. - Enable PAGE_ALLOC debugging again, it should now be fixed.
  2784. - 2.6.11-rc2-bk1
  2785. * Fri Jan 21 2005 Dave Jones <davej@redhat.com>
  2786. - Rebase to 2.6.11-rc2
  2787. * Fri Jan 21 2005 Rik van Riel <riel@redhat.com>
  2788. - make exec-shield segment limits work inside the xen kernels
  2789. * Thu Jan 20 2005 Dave Jones <davej@redhat.com>
  2790. - Rebase to -bk8
  2791. * Wed Jan 19 2005 Dave Jones <davej@redhat.com>
  2792. - Re-add diskdump/netdump based on Jeff Moyers patches.
  2793. - Rebase to -bk7
  2794. * Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com>
  2795. - fixup xen0 %%post to use new grubby features for multiboot kernels
  2796. - conflict with older mkinitrd for kernel-xen0
  2797. * Tue Jan 18 2005 Dave Jones <davej@redhat.com>
  2798. - -bk6
  2799. * Mon Jan 17 2005 Dave Jones <davej@redhat.com>
  2800. - First stab at kernel-devel packages. (David Woodhouse).
  2801. * Mon Jan 17 2005 Rik van Riel <riel@redhat.com>
  2802. - apply dmi fix, now xenU boots again
  2803. * Fri Jan 14 2005 Dave Jones <davej@redhat.com>
  2804. - Rebase to 2.6.11-bk2
  2805. * Thu Jan 13 2005 Dave Jones <davej@redhat.com>
  2806. - Rebase to 2.6.11-bk1
  2807. * Wed Jan 12 2005 Dave Jones <davej@redhat.com>
  2808. - Rebase to 2.6.11rc1
  2809. * Tue Jan 11 2005 Rik van Riel <riel@redhat.com>
  2810. - fix Xen compile with -bk14
  2811. * Tue Jan 11 2005 Dave Jones <davej@redhat.com>
  2812. - Update to -bk14
  2813. - Print tainted information in slab corruption messages.
  2814. * Tue Jan 11 2005 Rik van Riel <riel@redhat.com>
  2815. - merge fix for the Xen TLS segment fixup issue
  2816. * Tue Jan 11 2005 Dave Jones <davej@redhat.com>
  2817. - Depend on hardlink, not kernel-utils.
  2818. * Mon Jan 10 2005 Dave Jones <davej@redhat.com>
  2819. - Update to -bk13, reinstate GFP_ZERO patch which hopefully
  2820. is now fixed.
  2821. - Add another Lexar card reader to the whitelist. (#143600)
  2822. - Package asm-m68k for asm-ppc includes. (don't ask). (#144604)
  2823. * Sat Jan 8 2005 Dave Jones <davej@redhat.com>
  2824. - Periodic slab debug is incompatable with pagealloc debug.
  2825. Disable the latter.
  2826. * Fri Jan 7 2005 Dave Jones <davej@redhat.com>
  2827. - Santa came to Notting's house too. (another new card reader)
  2828. - Rebase to 2.6.10-bk10
  2829. * Thu Jan 6 2005 Rik van Riel <riel@redhat.com>
  2830. - update to latest xen-unstable tree
  2831. - fix up Xen compile with -bk9, mostly pudding
  2832. * Thu Jan 6 2005 Dave Jones <davej@redhat.com>
  2833. - Rebase to 2.6.10-bk9
  2834. * Tue Jan 4 2005 Dave Jones <davej@redhat.com>
  2835. - Rebase to 2.6.10-bk7
  2836. - Add periodic slab debug checker.
  2837. * Sun Jan 2 2005 Dave Jones <davej@redhat.com>
  2838. - Rebase to 2.6.10-bk5
  2839. * Sat Jan 1 2005 Dave Jones <davej@redhat.com>
  2840. - Fix probing of vesafb. (#125890)
  2841. - Reenable EDD.
  2842. - Don't assume existance of ~/.gnupg (#142201)
  2843. * Fri Dec 31 2004 Dave Jones <davej@redhat.com>
  2844. - Rebase to 2.6.10-bk4
  2845. * Thu Dec 30 2004 Dave Jones <davej@redhat.com>
  2846. - Rebase to 2.6.10-bk3
  2847. * Tue Dec 28 2004 Dave Jones <davej@redhat.com>
  2848. - Drop bogus ethernet slab cache.
  2849. * Sun Dec 26 2004 Dave Jones <davej@redhat.com>
  2850. - Santa brought a new card reader that needs whitelisting.
  2851. * Fri Dec 24 2004 Dave Jones <davej@redhat.com>
  2852. - Rebase to 2.6.10
  2853. * Wed Dec 22 2004 Dave Jones <davej@redhat.com>
  2854. - Re-add missing part of the exit() race fix. (#142505, #141896)
  2855. * Tue Dec 21 2004 Dave Jones <davej@redhat.com>
  2856. - Fix two silly bugs in the AGP posting fixes.
  2857. * Fri Dec 17 2004 Dave Jones <davej@redhat.com>
  2858. - Fix bio error propagation.
  2859. - Clear ebp on sysenter return.
  2860. - Extra debugging info on OOM kill.
  2861. - exit() race fix.
  2862. - Fix refcounting order in sd/sr, fixing cable pulls on USB storage.
  2863. - IGMP source filter fixes.
  2864. - Fix ext2/3 leak on umount.
  2865. - fix missing wakeup in ipc/sem
  2866. - Fix another tux corner case bug.
  2867. - NULL out ptrs in airo driver after kfree'ing them.
  2868. * Thu Dec 16 2004 Dave Jones <davej@redhat.com>
  2869. - Better version of the PCI Posting fixes for AGPGART.
  2870. - Add missing cache flush to the AGP code.
  2871. - Drop netdump and common crashdump code.
  2872. * Mon Dec 13 2004 Dave Jones <davej@redhat.com>
  2873. - Drop diskdump. Aiming for a better kexec based solution for FC4.
  2874. * Sun Dec 12 2004 Dave Jones <davej@redhat.com>
  2875. - fix false ECHILD result from wait* with zombie group leader.
  2876. * Sat Dec 11 2004 Dave Jones <davej@redhat.com>
  2877. - Workaround broken pci posting in AGPGART.
  2878. - Compile 686 kernel tuned for pentium4.
  2879. | Needs benchmarking across various CPUs under
  2880. | various workloads to find out if its worth keeping.
  2881. - Make sure VC resizing fits in s16.
  2882. * Fri Dec 10 2004 Dave Jones <davej@redhat.com>
  2883. - Prevent block device queues from being shared in viocd. (#139018)
  2884. - Libata updates. (#132848, #138405)
  2885. - aacraid: remove aac_handle_aif (#135527)
  2886. - fix uninitialized variable in waitid(2). (#142505)
  2887. - Fix CMSG validation checks wrt. signedness.
  2888. - Fix memory leak in ip_conntrack_ftp
  2889. - [IPV4]: Do not leak IP options.
  2890. - ppc64: Align PACA buffer for hypervisor's use. (#141817)
  2891. - ppc64: Indicate that the veth link is always up. (#135402)
  2892. - ppc64: Quiesce OpenFirmware stdin device at boot. (#142009)
  2893. - SELinux: Fix avc_node_update oops. (#142353)
  2894. - Fix CCISS ioctl return code.
  2895. - Make ppc64's pci_alloc_consistent() conform to documentation. (#140047)
  2896. - Enable EDD
  2897. - Enable ETH1394. (#138497)
  2898. - Workaround E1000 post-maturely writing back to TX descriptors. (#133261)
  2899. - Fix the previous E1000 errata workaround.
  2900. - Several IDE fixes from 2.6.9-ac
  2901. - vm pageout throttling. (#133858)
  2902. - Fix Tux from oopsing. (#140918)
  2903. - Fix Tux/SELinux incompatability (#140916)
  2904. - Fix Tux/IPV6 problem. (#140916)
  2905. - ide: Fix possible oops on boot.
  2906. - Make spinlock debugging panic instead of printk.
  2907. - Update Emulex lpfc driver to 8.0.16
  2908. - Selected patches from 2.6.9-ac12
  2909. - ppc64: Fix inability to find space for TCE table (#138844)
  2910. - Fix compat fcntl F_GETLK{,64} (#141680)
  2911. - blkdev_get_blocks(): handle eof
  2912. - Another card reader for the whitelist. (#134094)
  2913. - Disable tiglusb module. (#142102)
  2914. - E1000 64k-alignment fix. (#140047)
  2915. - Disable tiglusb module. (#142102)
  2916. - ID updates for cciss driver.
  2917. - Fix overflows in USB Edgeport-IO driver. (#142258)
  2918. - Fix wrong TASK_SIZE for 32bit processes on x86-64. (#141737)
  2919. - Fix ext2/ext3 xattr/mbcache race. (#138951)
  2920. - Fix bug where __getblk_slow can loop forever when pages are partially mapped. (#140424)
  2921. - Add missing cache flushes in agpgart code.
  2922. * Thu Dec 9 2004 Dave Jones <davej@redhat.com>
  2923. - Drop the 4g/4g hugemem kernel completely.
  2924. * Wed Dec 8 2004 Rik van Riel <riel@redhat.com>
  2925. - make Xen inherit config options from x86
  2926. * Mon Dec 6 2004 Rik van Riel <riel@redhat.com>
  2927. - apparently Xen works better without serial drivers in domain0 (#141497)
  2928. * Sun Dec 5 2004 Rik van Riel <riel@redhat.com>
  2929. - Fix up and reenable Xen compile.
  2930. - Fix bug in install part of BuildKernel.
  2931. * Sat Dec 4 2004 Dave Jones <davej@redhat.com>
  2932. - Enable both old and new megaraid drivers.
  2933. - Add yet another card reader to usb scsi whitelist. (#141367)
  2934. * Fri Dec 3 2004 Dave Jones <davej@redhat.com>
  2935. - Sync all patches with latest updates in FC3.
  2936. - Fix up xen0/xenU uninstall.
  2937. - Temporarily disable xen builds.
  2938. * Wed Dec 1 2004 Rik van Riel <riel@redhat.com>
  2939. - replace VM hack with the upstream version
  2940. - more Xen bugfixes
  2941. * Tue Nov 30 2004 Rik van Riel <riel@redhat.com>
  2942. - upgrade to later Xen sources, with upstream bugfixes
  2943. - export direct_remap_area_pages for Xen
  2944. * Mon Nov 29 2004 Dave Jones <davej@redhat.com>
  2945. - Add another card reader to whitelist. (#141022)
  2946. * Fri Nov 26 2004 Rik van Riel <riel@redhat.com>
  2947. - add Xen kernels for i686, plus various bits and pieces to make them work
  2948. * Mon Nov 15 2004 Dave Jones <davej@redhat.com>
  2949. - Rebase to 2.6.9-ac9
  2950. * Sat Nov 13 2004 Dave Jones <davej@redhat.com>
  2951. - Drop some bogus patches.
  2952. * Thu Nov 11 2004 Dave Jones <davej@redhat.com>
  2953. - NFS: Fix dentry refcount accounting error
  2954. - Fix single-stepping on PPC64
  2955. - Integrate kernel-devel changes
  2956. - SELinux: netif fixes.
  2957. - SELinux: add DAC check to setxattr() hook.
  2958. - SELinux: sidtab locking fix.
  2959. - SELinux: mediate send_sigurg().
  2960. - SELinux: fix setscheduler hook deadlock.
  2961. - ide-floppy: Supresses error messages resulting from Medium not present
  2962. - Various IA64 updates from 2.6.10rc1
  2963. - nfsd: make sure getxattr inode op is non-NULL before calling it.
  2964. - Handle NULL dev->dev_addr in SIOCGIFHWADDR correctly. (#137648)
  2965. - Fix NFSD domainname size limit.
  2966. - nfsd4: nfsd oopsed when encountering a conflict with a local lock
  2967. - nfsd4: fix putrootfh return
  2968. - nfsd: Insecure port warning shows decimal IPv4 address
  2969. - Disable sw irqbalance/irqaffinity for e7520/e7320/e7525 (#136419)
  2970. - Fix exec-shield non-PIE/non-prelinked bug
  2971. - ext3 reservations: fix goal hit accounting.
  2972. - Fix problems with non-power-of-two sector size discs. (#135094)
  2973. - Fix possible oops in netpoll (#132153)
  2974. - Add missing MODULE_VERSION tags to various modules. (#136399)
  2975. - Add USB card reader de jour. (#124048)
  2976. - Remove SG_IO deprecation warning (#136179)
  2977. - Make sure that modules get signed with the right key.
  2978. - Remove SG_IO deprecation warning (#136179)
  2979. - s390: Fix fake_ll for qeth device. (#136175)
  2980. - s390: zfcp: Kernel stack frame for zfcp_cfdc_dev_ioctl() is too big
  2981. - s390: Use slab allocator for DASD I/O pages.
  2982. - PPC64: HVSI udbg support
  2983. - PPC64: Make HVSI console survive FSP reset
  2984. - PPC64: Make PCI hostbridge hotplugging work
  2985. - PPC64: Fix IBM VSCSI problems (#138124)
  2986. - Rebase -ac patch to 2.6.9-ac8.
  2987. * Wed Nov 3 2004 Dave Jones <davej@redhat.com>
  2988. - Reenable token-ring drivers (#122602)
  2989. * Tue Nov 2 2004 Dave Jones <davej@redhat.com>
  2990. - Reenable SLIP. (#124223)
  2991. - Add USB card reader de jour. (#124048)
  2992. * Mon Nov 1 2004 Dave Jones <davej@redhat.com>
  2993. - Fix memory leak on x86-64 in mixed 32/64 mode. (#132947)
  2994. - Yet another USB card reader for the whitelist. (#137722)
  2995. * Fri Oct 29 2004 Dave Jones <davej@redhat.com>
  2996. - Fix raid5 oops (#127862)
  2997. - Stop E820 BIOS entries being corrupted by EDID info. (#137510)
  2998. * Thu Oct 28 2004 Dave Jones <davej@redhat.com>
  2999. - Remove the possibility of some false OOM kills. (#131251)
  3000. - Add more USB card readers to SCSI whitelist (#131546)
  3001. - Disable CONFIG_SCHED_SMT for iseries.
  3002. * Wed Oct 27 2004 Dave Jones <davej@redhat.com>
  3003. - Reenable ISA NIC support (#136569)
  3004. * Tue Oct 26 2004 Dave Jones <davej@redhat.com>
  3005. - Reenable Initio 9100U(W) SCSI driver. (#137153)
  3006. * Mon Oct 25 2004 Dave Jones <davej@redhat.com>
  3007. - Add another USB card reader to SCSI whitelist (#132923)
  3008. * Fri Oct 22 2004 Dave Jones <davej@redhat.com>
  3009. - Fix PPC NUMA (#130716).
  3010. - Fix autoraid for S390 (#123842/#130339)
  3011. - Selected bits from 2.6.9-ac3
  3012. - Fix syncppp/async ppp problems with new hangup
  3013. - Fix broken parport_pc unload
  3014. - Stop i8xx_tco making some boxes reboot on load
  3015. - Fix cpia/module tools deadlock
  3016. - Security fix for smbfs leak/overrun
  3017. * Thu Oct 21 2004 Dave Jones <davej@redhat.com>
  3018. - Misc security fixes from 2.6.9-ac2
  3019. * Wed Oct 20 2004 Dave Jones <davej@redhat.com>
  3020. - Fix ia64 module loading. (#136365)
  3021. - Enable discontigmem for PPC64
  3022. - Disable a bunch of useless PPC config options
  3023. - Enable PACK_STACK on s390.
  3024. * Tue Oct 19 2004 Dave Jones <davej@redhat.com>
  3025. - Fix NFS badness (#132726)
  3026. - Drop bogus USB workaround. (#131127)
  3027. * Mon Oct 18 2004 Dave Jones <davej@redhat.com>
  3028. - Rebase to 2.6.9
  3029. - Speedtouch USB DSL modem driver update.
  3030. - Cleanup some iseries config options.
  3031. * Fri Oct 15 2004 Dave Jones <davej@redhat.com>
  3032. - 2.6.9-rc4-bk3
  3033. - Fix up a bunch of unresolved symbols that crept in recently.
  3034. - Remove bogus O_NONBLOCK patch which broke lots of userspace.
  3035. - Fix booting on PPC64 by reserving initrd pages.
  3036. * Thu Oct 14 2004 Dave Jones <davej@redhat.com>
  3037. - Rebase to 2.6.9-rc4-bk2
  3038. - librtas needs to work around the /dev/mem restrictions.
  3039. - EXT3 reservations use-before-initialised bugfix.
  3040. - support O_NONBLOCK for read,pread,readv of regular files.
  3041. - EDD blows up some x86-64's. Disable again.
  3042. * Wed Oct 13 2004 Dave Jones <davej@redhat.com>
  3043. - Make EDD driver modular on x86-64 too.
  3044. - Various mkinitrd spec changes (Jeremy Katz)
  3045. - Enable a bunch more PPC64 config options. (Dave Howells)
  3046. - Enable ACPI cpufreq driver for x86-64 too.
  3047. * Tue Oct 12 2004 Dave Jones <davej@redhat.com>
  3048. - Rebase to 2.6.9-rc4-bk1
  3049. - Tux update.
  3050. - Update netdump/diskdump patches
  3051. - PowerPC 64 netboot changes.
  3052. - Various CONFIG_ option diddling.
  3053. - Fix up the find_isa_irq_pin() oops on reboot for x86-64 too.
  3054. * Mon Oct 11 2004 Dave Jones <davej@redhat.com>
  3055. - Rebase to 2.6.9-rc4
  3056. - Enable CONFIG_MICROCODE for x86-64
  3057. * Fri Oct 8 2004 Dave Jones <davej@redhat.com>
  3058. - Rebase to 2.6.9-rc3-bk8
  3059. * Thu Oct 7 2004 Dave Jones <davej@redhat.com>
  3060. - Rebase to 2.6.9-rc3-bk7
  3061. - Fix up PPC/PPC64 compilation failures due to new binutils. (David Woodhouse)
  3062. * Wed Oct 6 2004 Dave Jones <davej@redhat.com>
  3063. - Rebase to 2.6.9-rc3-bk6
  3064. - Add xattr support for tmpfs.
  3065. * Mon Oct 4 2004 Stephen C. Tweedie <sct@redhat.com>
  3066. - Update ext3 online resize to 2.6.9-rc3-mm2 upstream
  3067. - Reenable ext3 online resize in .spec
  3068. * Tue Sep 28 2004 Jeremy Katz <katzj@redhat.com>
  3069. - add patch from Roland McGrath/James Morris to fix mprotect hook bug (#133505)
  3070. * Mon Sep 20 2004 Arjan van de Ven <arjanv@redhat.com>
  3071. - 2.6.9-rc2-bk5
  3072. * Thu Sep 16 2004 Arjan van de Ven <arjanv@redhat.com>
  3073. - fix tux for x86-64 and ppc64
  3074. * Tue Sep 14 2004 Arjan van de Ven <arjanv@redhat.com>
  3075. - 2.6.9-rc2
  3076. - add diskdump
  3077. * Fri Sep 10 2004 Arjan van de Ven <arjanv@redhat.com>
  3078. - 2.6.9-rc1-bk17 ; make ppc32 build
  3079. * Tue Sep 07 2004 Arjan van de Ven <arjanv@redhat.com>
  3080. - 2.6.9-rc1-bk13
  3081. * Mon Sep 06 2004 Arjan van de Ven <arjanv@redhat.com>
  3082. - disable online resize again
  3083. - hopefully fix Quake3 interaction with execshield
  3084. - add Alan's borken-bios-IRQ workaround patch
  3085. * Sat Sep 04 2004 Arjan van de Ven <arjanv@redhat.com>
  3086. - 2.6.9-rc1-bk11
  3087. * Tue Aug 31 2004 Arjan van de Ven <arjanv@redhat.com>
  3088. - fix execshield buglet with legacy binaries
  3089. - 2.6.9-rc1-bk7
  3090. * Mon Aug 30 2004 Arjan van de Ven <arjanv@redhat.com>
  3091. - 2.6.9-rc1-bk6
  3092. * Sat Aug 28 2004 Arjan van de Ven <arjanv@redhat.com>
  3093. - 2.6.9-rc1-bk4, now with i915 DRM driver
  3094. * Fri Aug 27 2004 Arjan van de Ven <arjanv@redhat.com>
  3095. - 2.6.9-rc1-bk2
  3096. * Mon Aug 23 2004 Arjan van de Ven <arjanv@redhat.com>
  3097. - 2.6.8.1-bk2
  3098. * Sat Aug 21 2004 Arjan van de Ven <arjanv@redhat.com>
  3099. - attempt to fix early-udev bug
  3100. * Fri Aug 13 2004 Arjan van de Ven <arjanv@redhat.com>
  3101. - 2.6.8-rc4-bk3
  3102. - split execshield up some more
  3103. * Fri Aug 13 2004 Dave Jones <davej@redhat.com>
  3104. - Update SCSI whitelist again with some more card readers.
  3105. * Mon Aug 9 2004 Arjan van de Ven <arjanv@redhat.com>
  3106. - 2.6.8-rc3-bk3
  3107. * Wed Aug 4 2004 Arjan van de Ven <arjanv@redhat.com>
  3108. - Add the flex-mmap bits for s390/s390x (Pete Zaitcev)
  3109. - Add flex-mmap for x86-64 32 bit emulation
  3110. - 2.6.8-rc3
  3111. * Mon Aug 2 2004 Arjan van de Ven <arjanv@redhat.com>
  3112. - Add Rik's token trashing control patch
  3113. * Sun Aug 1 2004 Arjan van de Ven <arjanv@redhat.com>
  3114. - 2.6.8-rc2-bk11
  3115. * Fri Jul 30 2004 Arjan van de Ven <arjanv@redhat.com>
  3116. - 2.6.8-rc2-bk8
  3117. * Wed Jul 28 2004 Arjan van de Ven <arjanv@redhat.com>
  3118. - 2.6.8-rc2-bk6
  3119. - make a start at splitting up the execshield patchkit
  3120. * Fri Jul 16 2004 Arjan van de Ven <arjanv@redhat.com>
  3121. - ppc32 embedded updates
  3122. * Thu Jul 15 2004 Arjan van de Ven <arjanv@redhat.com>
  3123. - make USB modules again and add Alan's real fix for the SMM-meets-USB bug
  3124. - 2.6.8-rc1-bk4
  3125. * Wed Jul 14 2004 Arjan van de Ven <arjanv@redhat.com>
  3126. - 2.6.8-rc1-bk3
  3127. * Tue Jul 13 2004 Arjan van de Ven <arjanv@redhat.com>
  3128. - add "enforcemodulesig" boot option to make the kernel load signed modules only
  3129. * Mon Jul 12 2004 Arjan van de Ven <arjanv@redhat.com>
  3130. - updated voluntary preempt
  3131. - 2.6.8-rc1
  3132. * Wed Jul 7 2004 Arjan van de Ven <arjanv@redhat.com>
  3133. - fix boot breakage that was hitting lots of people (Dave Jones)
  3134. * Tue Jul 6 2004 Arjan van de Ven <arjanv@redhat.com>
  3135. - add voluntary preemption patch from Ingo
  3136. - 2.6.7-bk19
  3137. * Tue Jun 29 2004 Arjan van de Ven <arjanv@redhat.com>
  3138. - make a start at gpg signed modules support
  3139. * Sun Jun 27 2004 Arjan van de Ven <arjanv@redhat.com>
  3140. - experiment with making the hardlink call in post more efficient
  3141. - 2.6.7-bk9
  3142. * Thu Jun 24 2004 Arjan van de Ven <arjanv@redhat.com>
  3143. - 2.6.7-bk7
  3144. - Add wli's patch to allocate memory bottom up not top down
  3145. - change some config options in the kernel-sourcecode package that are
  3146. good for rpm kernel builds but not for custom user builds to more appropriate
  3147. default values.
  3148. - reenable kernel-sourcecode again for a few builds
  3149. * Wed Jun 23 2004 Arjan van de Ven <arjanv@redhat.com>
  3150. - 2.6.7-bk5
  3151. - fix tux unresolved symbols (#126532)
  3152. * Mon Jun 21 2004 Arjan van de Ven <arjanv@redhat.com>
  3153. - make kernel-doc and kernel-sourcecode builds independent of eachother
  3154. - disable kernel-sourcecode builds entirely, we'll be replacing it with documentation
  3155. on how to use the src.rpm instead for building your own kernel.
  3156. * Sat Jun 19 2004 Arjan van de Ven <arjanv@redhat.com>
  3157. - 2.6.7-bk2
  3158. * Sun Jun 13 2004 Arjan van de Ven <arjanv@redhat.com>
  3159. - add patch from DaveM to fix the ppp-keeps-iface-busy bug
  3160. * Sat Jun 12 2004 Arjan van de Ven <arjanv@redhat.com>
  3161. - add fix from Andi Kleen/Linus for the fpu-DoS
  3162. * Thu Jun 10 2004 Arjan van de Ven <arjanv@redhat.com>
  3163. - disable mlock-uses-rlimit patch, it has a security hole and needs more thought
  3164. - revert airo driver to the FC2 one since the new one breaks
  3165. * Tue Jun 8 2004 Dave Jones <davej@redhat.com>
  3166. - Update to 2.6.7rc3
  3167. * Fri Jun 4 2004 Arjan van de Ven <arjanv@redhat.com>
  3168. - fix the mlock-uses-rlimit patch
  3169. * Wed Jun 2 2004 David Woodhouse <dwmw2@redhat.com>
  3170. - Add ppc64 (Mac G5)
  3171. * Wed Jun 2 2004 Arjan van de Ven <arjanv@redhat.com>
  3172. - add a forward port of the mlock-uses-rlimit patch
  3173. - add NX support for x86 (Intel, Ingo)
  3174. * Tue Jun 1 2004 Arjan van de Ven <arjanv@redhat.com>
  3175. - refresh ext3 reservation patch
  3176. * Sun May 30 2004 Arjan van de Ven <arjanv@redhat.com>
  3177. - 2.6.7-rc2
  3178. - set the ACPI OS name to "Microsoft Windows XP" for better compatibility
  3179. * Thu May 27 2004 Pete Zaitcev <zaitcev@redhat.com>
  3180. - Fix qeth and zfcp (s390 drivers): align qib by 256, embedded into qdio_irq.
  3181. * Thu May 27 2004 Dave Jones <davej@redhat.com>
  3182. - Fix the crashes on boot on Asus P4P800 boards. (#121819)
  3183. * Wed May 26 2004 Dave Jones <davej@redhat.com>
  3184. - Lots more updates to the SCSI whitelist for various
  3185. USB card readers. (#112778, among others..)
  3186. * Wed May 26 2004 Arjan van de Ven <arjanv@redhat.com>
  3187. - back out ehci suspend/resume patch, it breaks
  3188. - add fix for 3c59x-meets-kudzu bug from Alan
  3189. * Tue May 25 2004 Arjan van de Ven <arjanv@redhat.com>
  3190. - try improving suspend/resume by restoring more PCI state
  3191. - 2.6.7-rc1-bk1
  3192. * Mon May 24 2004 Dave Jones <davej@redhat.com>
  3193. - Add yet another multi-card reader to the whitelist (#85851)
  3194. * Sun May 23 2004 Dave Jones <davej@redhat.com>
  3195. - Add another multi-card reader to the whitelist (#124048)
  3196. * Wed May 19 2004 Arjan van de Ven <arjanv@redhat.com>
  3197. - put firewire race fix in (datacorruptor)
  3198. * Tue May 18 2004 Dave Jones <davej@redhat.com>
  3199. - Fix typo in ibmtr driver preventing compile (#123391)
  3200. * Mon May 17 2004 Arjan van de Ven <arjanv@redhat.com>
  3201. - update to 2.6.6-bk3
  3202. - made kernel-source and kernel-doc noarch.rpm's since they are not
  3203. architecture specific.
  3204. * Sat May 08 2004 Arjan van de Ven <arjanv@redhat.com>
  3205. - fix non-booting on Transmeta cpus (Peter Anvin)
  3206. - fix count leak in message queues
  3207. * Fri May 07 2004 Arjan van de Ven <arjanv@redhat.com>
  3208. - more ide cache flush work
  3209. - patch from scsi-bk to fix sd refcounting
  3210. * Thu May 06 2004 Arjan van de Ven <arjanv@redhat.com>
  3211. - some more ide cache flush fixes
  3212. * Wed May 05 2004 Arjan van de Ven <arjanv@redhat.com>
  3213. - fix bug 122504
  3214. - convert b44 to ethtool ops (jgarzik)
  3215. - make IDE do a cache-flush on shutdown (me/Alan)
  3216. * Tue May 04 2004 Arjan van de Ven <arjanv@redhat.com>
  3217. - work around i810/i830 DRM issue
  3218. * Fri Apr 30 2004 Arjan van de Ven <arjanv@redhat.com>
  3219. - 2.6.6-rc3-bk1
  3220. - make amd64 boot again
  3221. - fix vm86-vs-4g4g interaction (Ingo)
  3222. * Thu Apr 22 2004 Arjan van de Ven <arjanv@redhat.com>
  3223. - 2.6.6-rc2
  3224. * Tue Apr 20 2004 Arjan van de Ven <arjanv@redhat.com>
  3225. - add the ext3 online resize patch
  3226. * Mon Apr 19 2004 Arjan van de Ven <arjanv@redhat.com>
  3227. - 2.6.6-rc1-bk3
  3228. - add the objrmap vm from the -mm tree; it needs testing
  3229. * Thu Apr 15 2004 Arjan van de Ven <arjanv@redhat.com>
  3230. - 2.6.5-bk2
  3231. - disable DISCONTIGMEM on ia64 for performance
  3232. - fix sleep_on use in reiserfs (Chris Mason)
  3233. * Tue Apr 13 2004 Arjan van de Ven <arjanv@redhat.com>
  3234. - 2.6.5-mc4
  3235. - reenable sg driver for scsi tape changers and such
  3236. - the sk98lin driver oopses on module unload, preven that
  3237. * Mon Apr 12 2004 Arjan van de Ven <arjanv@redhat.com>
  3238. - fix "bad pmd" bug with patch from Ingo
  3239. * Fri Apr 09 2004 Arjan van de Ven <arjanv@redhat.com>
  3240. - 2.6.5-mc3
  3241. - finish up the -mc2 merge
  3242. - latest 4g/4g patch from Ingo
  3243. - latest execshield patch from Ingo
  3244. - fix a few framebuffer bugs
  3245. * Thu Apr 08 2004 Arjan van de Ven <arjanv@redhat.com>
  3246. - first attempt at a 2.6.5-mc2 merge
  3247. * Thu Apr 08 2004 Dave Jones <davej@redhat.com>
  3248. - Add in missing SiS AGP fix.
  3249. * Tue Apr 06 2004 Dave Jones <davej@redhat.com>
  3250. - More agpgart fixes.
  3251. * Fri Apr 02 2004 Arjan van de Ven <arjanv@redhat.com>
  3252. - fix another 4g/4g-vs-resume bug
  3253. * Tue Mar 30 2004 Arjan van de Ven <arjanv@redhat.com>
  3254. - 2.6.5-rc3
  3255. - fix PCI posting bug in i830 DRM
  3256. * Mon Mar 29 2004 Arjan van de Ven <arjanv@redhat.com>
  3257. - 2.6.5-rc2-bk8
  3258. * Mon Mar 29 2004 Dave Jones <davej@redhat.com>
  3259. - Include latest agpgart fixes.
  3260. * Thu Mar 25 2004 Arjan van de Ven <arjanv@redhat.com>
  3261. - more DRM fixes
  3262. - add the fsync patches from akpm
  3263. * Tue Mar 23 2004 Arjan van de Ven <arjanv@redhat.com>
  3264. - 2.6.5-rc2-bk3
  3265. - fix direct userspace memory access in i830 drm driver
  3266. * Mon Mar 22 2004 Arjan van de Ven <arjanv@redhat.com>
  3267. - 2.6.5-rc2-bk2
  3268. - some stackbloat reductions from Dave and me
  3269. * Sat Mar 20 2004 Arjan van de Ven <arjanv@redhat.com>
  3270. - 2.6.5-rc2
  3271. * Tue Mar 16 2004 Dave Jones <davej@redhat.com>
  3272. - 2.6.5-rc1
  3273. * Mon Mar 15 2004 Arjan van de Ven <arjanv@redhat.com>
  3274. - 2.6.4-bk3
  3275. - fix oops in toshiba_acpi (Barry K. Nathan)
  3276. * Sat Mar 13 2004 Arjan van de Ven <arjanv@redhat.com>
  3277. - 2.6.4-bk2 merge
  3278. * Thu Mar 11 2004 Arjan van de Ven <arjanv@redhat.com>
  3279. - renable sonypi driver that was off accidentally
  3280. - 2.6.4-final
  3281. - fix the oops on alsa module unloads
  3282. * Wed Mar 10 2004 Arjan van de Ven <arjanv@redhat.com>
  3283. - add ppc64/iseries, ppc32 (powermac/ibook) and ia64 architectures
  3284. - 2.6.4-rc3
  3285. * Tue Mar 09 2004 Arjan van de Ven <arjanv@redhat.com>
  3286. - 2.6.4-rc2-bk5
  3287. - fix nfs-vs-selinux issue
  3288. - fix typo in URL as per #117849
  3289. * Mon Mar 08 2004 Arjan van de Ven <arjanv@redhat.com>
  3290. - fix race in lp.c (#117710)
  3291. - 2.6.4-rc2-bk3
  3292. - attempt to fix S3 suspend-to-ram with 4g/4g split
  3293. * Sat Mar 06 2004 Arjan van de Ven <arjanv@redhat.com>
  3294. - fix reiserfs
  3295. - set HZ to 1000 again for some tests
  3296. * Wed Feb 25 2004 Arjan van de Ven <arjanv@redhat.com>
  3297. - merge back a bunch of fedora fixes
  3298. - disable audit
  3299. * Tue Feb 24 2004 Arjan van de Ven <arjanv@redhat.com>
  3300. - audit bugfixes
  3301. - update tux to a working version
  3302. - 2.6.3-bk5 merge
  3303. * Fri Feb 20 2004 Arjan van de Ven <arjanv@redhat.com>
  3304. - re-add and enable the Auditing patch
  3305. - switch several cpufreq modules to built in since detecting in userspace
  3306. which to use is unpleasant
  3307. * Thu Jul 03 2003 Arjan van de Ven <arjanv@redhat.com>
  3308. - 2.6 start