kernel-vl.spec 117 KB

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