kernel-vl.spec 110 KB

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