kernel-vl.spec 107 KB

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