kernel-vl.spec 130 KB

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