kernel-vl.spec 129 KB

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