kernel-vl.spec 108 KB

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