Commit Graph

874 Commits

Author SHA1 Message Date
John W. Linville e04a21258f Add compat-wireless patch to define module_usb_driver 2011-12-03 13:29:53 -05:00
John W. Linville aeaaac5e9a - Revise compat-wireless configuration
- Update compat-wireless snapshot
- Enable with-backports by default
2011-12-02 19:39:24 -05:00
Josh Boyer 9f33e8dbe2 Backport ALPS touchpad patches from input/next branch (rhbz #590880) 2011-12-02 16:20:17 -05:00
Josh Boyer 08b653a9f8 Add changelog for last patch.
Oops.  Didn't realize John didn't include a %changelog
2011-12-02 14:42:35 -05:00
John W. Linville 8be461cb79 kernel.spec: reverse dependency logic for moving packages between kernel and kernel-modules-extra
The logic to process mod-extra.list finds modules that depend on
the modules in that list and includes those in kernel-module-extra
as well.  This logic is broken, because it does not account for
multi-layer dependency chains.  Specifically, if a module depends
on another module, and only the second one depends on something in
mod-extra.list, then only the second would get moved.  This leaves the
first module in the kernel package, resulting in WARNING messages
when the kernel rpm is installed:

Preparing...                ########################################### [100%]
   1:kernel                 ########################################### [100%]
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/scsi/bnx2fc/bnx2fc.ko needs unknown symbol cnic_register_driver
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/scsi/bnx2fc/bnx2fc.ko needs unknown symbol cnic_unregister_driver
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/scsi/bnx2i/bnx2i.ko needs unknown symbol cnic_register_driver
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/scsi/bnx2i/bnx2i.ko needs unknown symbol cnic_unregister_driver
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/wusbcore/wusb-wa.ko needs unknown symbol wusbhc_reset_all
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/wusbcore/wusb-wa.ko needs unknown symbol wusbhc_handle_dn
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/wusbcore/wusb-wa.ko needs unknown symbol wusbd
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/wusbcore/wusb-wa.ko needs unknown symbol __wusb_dev_get_by_usb_dev
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/wusbcore/wusb-wa.ko needs unknown symbol wusbhc_giveback_urb
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/wusbcore/wusb-wa.ko needs unknown symbol wusb_dev_destroy
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/atm/xusbatm.ko needs unknown symbol usbatm_usb_disconnect
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/drivers/usb/atm/xusbatm.ko needs unknown symbol usbatm_usb_probe
WARNING: /lib/modules/3.2.0-0.rc3.git1.2.fc14.x86_64/kernel/net/bridge/netfilter/ebtable_broute.ko needs unknown symbol br_should_route_hook

This patch reverses that logic, so that anything in kernel with
a dependency on something in mod-extra.list will cause the module
in mod-extra.list to be treated as if it was _not_ in that list.
This prevents the WARNING lines above.

Signed-off-by: John W. Linville <linville@tuxdriver.com>
2011-12-02 14:39:45 -05:00
Josh Boyer 42087d6524 Put ssb.ko back in the main kernel package 2011-12-02 14:17:44 -05:00
Dave Jones 5e401e5e6f Enable Poulsbo DRM. 2011-12-02 14:15:49 -05:00
Dave Jones 8c98cf4ff6 Linux 3.2-rc4-git1 (5983fe2b29df5885880d7fa3b91aca306c7564ef)
dropped: rtlwifi-fix-lps_lock-deadlock.patch (applied upstream)
2011-12-02 11:36:33 -05:00
Josh Boyer b66345bb32 Adjust Requires for modules-extra pacakge to rely on kernel-uname-r
The variant kernels (e.g. PAE) Provide kernel-%{_target_cpu}, which doesn't
include the variant name so we wind up with broken deps on the modules-extra
subpackage.  kernel-uname-r incorporates the variant value at the end (e.g.
kernel-uname-r = 3.2.0-0.rc4.git0.2.fc17.i686.PAE)
2011-12-02 09:34:46 -05:00
Dave Jones 115248e310 Linux 3.2-rc4 2011-12-01 21:13:52 -05:00
Dave Jones 6678319180 Linux 3.2-rc3-git2 (b930c26416c4ea6855726fd977145ccea9afbdda) 2011-12-01 12:28:39 -05:00
Dave Jones fdf5cd89b9 remove git-linus.diff
now that we're creating our own snapshots, there's no need for this.
2011-11-29 13:56:48 -05:00
Josh Boyer fe32595ee9 Add patch to fix deadlock in rtlwifi (rhbz #755154) 2011-11-29 11:33:34 -05:00
Josh Boyer 5bd5546b84 Drop drm-intel-make-lvds-work.patch (rhbz #731296)
Discussed this with mjg59 and ajax.  This fix was supposed to go upstream,
but never actually made it.  Since it's breaking xrandr, we're dropping it.
2011-11-29 11:24:53 -05:00
Josh Boyer b8b2783bb9 Create a kernel-modules-extra subpackage
This creates a modules-extra subpackage which places a number of less
frequently used modules into the extra directory under
/lib/modules/`uname -r`/.  This reduces the size of the default kernel
package while still allowing those modules to be built and installed if
needed.  We also limit the security exposure by keeping these modules out
of the default install.
2011-11-29 09:02:14 -05:00
Josh Boyer 5e296fd758 Linux 3.2-rc3-git1 (upstream 8748dfae379) 2011-11-29 08:47:46 -05:00
Dave Jones 9af210dc91 remove old junk.
Pointed out by Kyle.
2011-11-28 17:01:35 -05:00
Josh Boyer 471066eceb Linux 3.2-rc3. Gobble.
Try switching to using xz patches for rc and gitrev.
2011-11-24 08:47:36 -05:00
Josh Boyer d7de9e2bcf Linux 3.2-rc2-git8 (upstream b4bbb02934e4511) 2011-11-23 07:50:01 -05:00
Josh Boyer c78a082959 Fix the baserelease sanity check
We need to explicitly check for 0, so that we can do things like setting
baserelease to 1.1 for scratch builds, etc.
2011-11-22 10:38:03 -05:00
Josh Boyer c877f36df2 Linux 3.2-rc2-git7 (upstream bbbc4791cd48ac1) 2011-11-22 09:36:34 -05:00
Josh Boyer 467901ae52 Linux 3.2-rc2-git6 (upstream f8f5ed7c996ad9) 2011-11-21 15:47:52 -05:00
Josh Boyer 43864d3d09 Linux 3.2-rc2-git5 (upstream 6fe4c6d466e9)
Disable PM_DEVFREQ as it seems to be embedded (ARM?) specific even though
the Kconfig dependencies don't mark it as such any longer.
2011-11-21 09:00:53 -05:00
Josh Boyer 09eae387a1 Linux 3.2-rc2-git4 (upstream a767835f6dc8) 2011-11-20 09:49:52 -05:00
Josh Boyer 0ab1ce7b8d Linux 3.2-rc2-git3 (upstream 15bd1cfb3055)
Disable various fb and drm drivers that don't have xorg equivalents per ajax
Other minor config cleanup
2011-11-18 07:45:26 -05:00
Josh Boyer 9e8b97b6a1 Linux 3.2-rc2-git2 (upstream aa1b052a34d) 2011-11-17 10:50:35 -05:00
Kyle McMartin 058752857c Drop Obsoletes/Provides from kernel-tools onto perf. 2011-11-17 10:34:35 -05:00
John W. Linville 10731a4cc7 Add compat-wireless as an option for kernel build 2011-11-16 15:52:10 -05:00
Kyle McMartin 8bcddfb033 Avoid CFLAGS changing across building perf 2011-11-16 14:31:36 -05:00
Kyle McMartin e20e75789d Work around #663080 and restore building 'perf' on s390x. 2011-11-16 11:19:44 -05:00
Josh Boyer 6df08a4308 Linux 3.2-rc2-git1 (upstream 6aaf05f47) 2011-11-16 09:24:33 -05:00
Josh Boyer e7cafd409a Quite a warning in apm_cpu_idle (rhbz 753776)
WARN_ONCE is now the top thing on my "BIGGEST WASTE OF TIME" list.  It changes
daily though.
2011-11-14 14:26:26 -05:00
Josh Boyer 8e7e637502 Add patch to fix ip6_tunnel naming (rhbz 751165) 2011-11-14 13:59:00 -05:00
Josh Boyer 4215bf0858 Patch from Joshua Roys to add rtl8192* to modules.networking (rhbz 753645) 2011-11-14 13:09:12 -05:00
Josh Boyer c7a536b330 Linux 3.2-rc1-git4
Also fix CVE-2011-4131: nfs4_getfacl decoding kernel oops (rhbz 753236)
2011-11-14 09:55:52 -05:00
Josh Boyer 90ac8d9ea5 Linux 3.2-rc2-git3 2011-11-12 18:06:35 -05:00
Chuck Ebbert e6236b7bde Use the same naming scheme as rawhide for -stable RC kernels
(e.g. 3.1.1-0.rc1.1 instead of 3.1.1-1.rc1)
2011-11-11 19:51:31 -05:00
Josh Boyer 03f8e6abc9 Add patch to rework ASPM handling from Matthew Garrett 2011-11-11 14:36:05 -05:00
John W. Linville 2be5490569 Remove overlap between bcma/b43 and brcmsmac and reenable bcm4331 2011-11-11 10:03:43 -05:00
Josh Boyer 9b8fcc47a0 Linux 3.2-rc1-git2 2011-11-10 08:51:22 -05:00
Josh Boyer 33f57de72a Linux 3.2-rc1-git1 (upstream 19e0bafc36a)
Enable the brcm80211 modules now that they have left staging
2011-11-09 07:44:03 -05:00
Josh Boyer 27d8a0e9b5 Add python-perf-debuginfo package (rhbz 752140) 2011-11-08 14:44:50 -05:00
Neil Horman 778a29ad09 sysfs: Add msi irq device enumeration (bz 744012) 2011-11-08 11:37:04 -05:00
Josh Boyer e3e38acf4d Linux 3.2-rc1
From kernel.org this time, not git generated locally:
http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.2-rc1.bz2
2011-11-08 07:39:48 -05:00
Josh Boyer 44ef27d0d0 Add two patches to fix mac80211 issues (rhbz 731365) 2011-11-07 12:33:04 -05:00
Josh Boyer dee356203f Add from git://openlinux.windriver.com/people/paulg/modsplit-post-merge
These fix various build failures from the module.h split out stuff for 3.2
2011-11-07 11:50:45 -05:00
Josh Boyer ea8a97de39 Linux 3.1-git7 (upstream 31555213f) 2011-11-07 11:25:51 -05:00
Chuck Ebbert 05e763b50e Add sanity check for baserelease 2011-11-07 08:46:25 -05:00
Chuck Ebbert 7cfa6899ff Add support for .xz compressed patches 2011-11-07 08:16:50 -05:00
Josh Boyer 7b0cc2278d Linux 3.1-git6 (upstream 1a67a573b8d)
Make CONFIG_EDAC_SBRIDGE only build on x86_64 since it has 64-bit divide errors
on 32-bit kernels.
2011-11-04 08:26:47 -04:00
Josh Boyer 6cc3fe9c50 Linux 3.1-git5 (upstream 43672a0784707) 2011-11-03 09:30:13 -04:00
Josh Boyer 906f34d53b Linux 3.1-git4 (upstream dc47d3810cdc) 2011-11-01 15:15:29 -04:00
Dave Jones bf976a17c4 allow building the perf rpm for ARM (rhbz 741325) 2011-11-01 14:08:42 -04:00
Dave Jones e4fe1faa82 Add another Sony laptop to the nonvs blacklist. (rhbz 641789) 2011-11-01 12:57:12 -04:00
Kyle McMartin 42d4c31d31 Restore perf sub-package for great justice 2011-11-01 10:23:43 -04:00
Josh Boyer 6f692a1e5e Add CVE number in changelog (rhbz 750402) 2011-10-31 21:10:19 -04:00
Josh Boyer 36ae5a6210 Add patch to fix integer overflow of points in oom_badness (rhbz 750402) 2011-10-31 21:01:48 -04:00
Kyle McMartin 420c123ef4 Fix paste-o (accidentally had a stray %endif) 2011-10-31 16:01:58 -04:00
Kyle McMartin ec31efd5d5 Build a python-perf sub-package. 2011-10-31 16:01:28 -04:00
Josh Boyer 8e04ce5a38 Linux 3.1-git3. Happy Halloween. 2011-10-31 15:20:40 -04:00
Josh Boyer dff0854796 Linux 3.1-git2 snapshot (upstream f362f98e7c) 2011-10-28 15:42:03 -04:00
Josh Boyer 59694fb9f0 Drop alpha
At one point in time, you were awesome.  Then Compaq bought you and switched to
ia64 instead.  You can see how that turned out in the previous commit.
2011-10-27 14:17:26 -04:00
Josh Boyer 2ee118c7e0 Drop ia64.
Goodbye, ia64.  Prarit will miss you.
2011-10-27 14:16:56 -04:00
Kyle McMartin d87b3f2e6e don't set DEBUG_BLK_CGROUP twice, it'll be toggled by debug/release 2011-10-27 12:16:48 -04:00
Kyle McMartin 080adf836d some dvb config changes noticed during kconfig review 2011-10-27 12:14:19 -04:00
Chuck Ebbert 11ee03372b Add build option "--with=release" to build a non-debug kernel in rawhide. 2011-10-27 11:47:50 -04:00
Josh Boyer 34f9218fe5 Linux 3.1-git1 (138c4ae9cfda upstream)
First take on the upcomming Linux 3.2 kernel.  The moving of the ethernet
drivers into vendor subdirectories caused a lot of churn in config-generic, but
hopefully it's a bit cleaner now.
2011-10-26 21:03:18 -04:00
Dennis Gilmore 829bffe3f9 - Rebuilt for glibc bug#747377 2011-10-26 19:08:49 -05:00
Kyle McMartin 145e7ecaa3 drop 2.6->3.0 transition Source hack 2011-10-26 15:29:00 -04:00
Kyle McMartin 9410e6cc1a drop rhel config bits which are not used in fedora kernels 2011-10-26 15:25:50 -04:00
Kyle McMartin 9845830cdc note Makefile changes in the spec-file 2011-10-26 15:03:30 -04:00
Kyle McMartin d54f6ca992 Disable CC_OPTIMIZE_FOR_SIZE on config-generic 2011-10-26 13:13:47 -04:00
Josh Boyer 00f7e867d9 Edit changelog to reflect CVE-2011-4077 2011-10-26 12:22:48 -04:00
Kyle McMartin 1bfd59b084 Convert fancy_debuginfo into with_debuginfo in the 21st century 2011-10-26 10:53:45 -04:00
Kyle McMartin 428cea3da2 Install vdso on s390/s390x 2011-10-26 10:37:54 -04:00
Kyle McMartin 3655202151 ppc/ppc64 vdso patches have been upstream for ages 2011-10-26 10:36:40 -04:00
Kyle McMartin eb0d563f57 Drop the kernel-firmware subpackage from the spec file
We've depended on linux-firmware as a separate package for enough
releases, and kernel-firmware hasn't had firmware updated in it for
a long time.
2011-10-26 10:18:33 -04:00
Josh Boyer 3f831a8799 Add patch to fix XFS memory corruption (rhbz 749166) 2011-10-26 09:18:09 -04:00
Josh Boyer 78ef95d192 CVE-2011-3347: be2net: promiscuous mode and non-member VLAN packets DoS
(rhbz 748691)
2011-10-25 13:52:02 -04:00
Josh Boyer 1582123108 CVE-2011-1083: excessive in kernel CPU consumption when creating large nested
epoll structures (rhbz 748668)
2011-10-25 11:04:13 -04:00
Josh Boyer e78653bd39 Backport 3 fixed from linux-next to fix dib0700 playback (rhbz 733827) 2011-10-24 09:09:48 -04:00
Chuck Ebbert 750207a68f Linux 3.1 2011-10-24 07:35:29 -04:00
Chuck Ebbert c6b36e066d Make rpmbuild option "without_debug" work properly on rawhide. 2011-10-23 00:17:53 -04:00
Chuck Ebbert 65b0d9b17d Update to upstream HEAD (v3.1-rc10-42-g2efd7c0). 2011-10-21 20:01:25 -04:00
Chuck Ebbert 62a1a480d4 Require grubby >= 8.3-1 like F16 does. 2011-10-21 15:09:10 -04:00
Dave Jones 19e3780693 Lower severity of Radeon lockup messages. 2011-10-21 13:02:20 -04:00
Dave Jones a4b83ee14b Add Sony VGN-FW21E to nonvs blacklist. (rhbz 641789) 2011-10-19 13:24:36 -04:00
Chuck Ebbert e05440cad9 Sync with F16
Linux 3.1-rc10
Copy nouveau updates patch from F16
Fix deadlock in POSIX cputimer code (rhbz #746485)
2011-10-19 01:28:40 -04:00
Josh Boyer 18312c11db Add patch to fix invalid EFI remap calls from Matt Fleming 2011-10-18 17:00:01 -04:00
Josh Boyer 922059227c Add two patches to fix stalls in khugepaged (rhbz 735946) 2011-10-17 13:33:12 -04:00
Dave Jones 3e1637b657 Disable CONFIG_ACPI_PROCFS_POWER which is supposed to be going away soon.
"This option, together with the proc directories, will be deleted in 2.6.39."
2011-10-14 13:13:46 -04:00
Josh Boyer 04203df13c Add C600 ID to the Logitech USB patch 2011-10-13 15:52:35 -04:00
Adam Jackson b0217d003c drm/i915: Treat SDVO LVDS as digital when parsing EDID (#729882) 2011-10-13 10:49:31 -04:00
Josh Boyer c681662fda Add patch from Stanislaw Gruszka to fix iwlagn NULL dereference (rhbz 744155) 2011-10-13 08:48:43 -04:00
Josh Boyer b2efe0138e Disable Xen balloon memory hotplug support (rhbz 744408) 2011-10-11 08:45:59 -04:00
Josh Boyer 220cb1c7cb Add patch to fix Ricoh e823 SD card readers (rhbz 722509) 2011-10-06 20:33:00 -04:00
Dave Jones 64f1bc96d9 Taint if virtualbox modules have been loaded. 2011-10-06 18:39:09 -04:00
Josh Boyer 8260326a96 Linux 3.1-rc9
The patch-3.1-rc9.bz2 file is generated from git again.  One day, kernel.org
will come back.
2011-10-05 10:27:02 -04:00
Josh Boyer d0042d3517 Update logitech USB quirk patch 2011-09-29 11:30:32 -04:00
Chuck Ebbert c39b72eeb3 Linux 3.1-rc8
New option: CONFIG_ARM_ERRATA_764369 is not set
Fix up utrace.patch to apply after commit f9d81f61c
2011-09-27 21:13:20 -04:00
Dave Jones bc4f079b61 drop dead unapplied patch that's been around forever 2011-09-23 11:56:43 -04:00
Dave Jones 2ddef1f77d Make CONFIG_XEN_PLATFORM_PCI=y (rhbz 740664) 2011-09-22 18:34:54 -04:00
Dennis Gilmore bb586187c5 * Thu Sep 22 2011 Dennis Gilmore <dennis@ausil.us>
- build a vmlinux image on sparc64
2011-09-22 16:40:47 -05:00
Josh Boyer 962393f362 Linux 3.1-rc7 2011-09-21 21:42:15 -04:00
Dave Jones 8674cb1bd8 Limit 32-bit x86 kernels to 32 processors. 2011-09-20 17:13:44 -04:00
Dave Jones bd4ac46f66 Merge some improvements to the 32bit mmap randomisation from Kees Cook. 2011-09-19 16:44:51 -04:00
Josh Boyer 1830f9798f Add patch to fix deadlock in ppc64 icswx code (rhbz 737984) 2011-09-14 16:12:36 -04:00
Josh Boyer 1b241cbc21 Add patches to fix various ibmveth driver issues (rhbz 733766) 2011-09-14 14:30:04 -04:00
Neil Horman 2f723968f7 Enable CONFIG_IP_VS_IPV6 support 2011-09-14 11:55:37 -04:00
Josh Boyer 86a04b4309 Add patch to fix POWER virtual serial driver (rhbz 738096) 2011-09-14 09:44:57 -04:00
Josh Boyer 5f0e65d63d Add patches Bastien pointed out for MacBookAir 4,1 support 2011-09-14 09:23:29 -04:00
Josh Boyer 0471e51e8b 3.1-rc6
This is another hand-rolled patch from a fully updated git tree as of today.
The top level upstream commit is b6fd41e29dea9c6753b1843a77e50433e6123bcb
2011-09-12 18:21:08 -04:00
Josh Boyer 27b62b6f85 Avoid false quiescent states in rcutree with CONFIG_RCU_FAST_NO_HZ. (rhbz 577968) 2011-09-12 07:31:24 -04:00
Josh Boyer 737c9c7da8 Change to 64K page size for ppc64 kernels (rhbz 736751) 2011-09-09 11:22:24 -04:00
Josh Boyer 1bc752781f Linux 3.1-rc5
At the moment, kernel.org has been down for several days.  Linus pushed his
repository to a github repo and did the -rc5 release there.  I've generated
the patch-3.1-rc5.bz2 from a git tree containing those changes and the -rc5
tag via:

	git diff v3.0..v3.1-rc5 > patch-3.1-rc5

Hopefully kernel.org will come back before -rc6.
2011-09-07 16:12:01 -04:00
Josh Boyer 4cf7022846 Fix for rhbz 735437 2011-09-07 12:31:24 -04:00
Dave Jones 82e8051371 utrace: s390: fix the compile problem with traps.c (rhbz 735118) 2011-09-02 11:33:26 -04:00
Dave Jones 92c3aba6f2 Revert "x86: Serialize EFI time accesses on rtc_lock" (rhbz 732755) 2011-08-30 11:49:37 -04:00
Josh Boyer 5e97a201ac Add patch to fix rhbz 606017 2011-08-30 09:00:40 -04:00
Josh Boyer fe5d1cd9dd Linux 3.1-rc4 2011-08-29 08:31:59 -04:00
Dave Jones c62acbf43a Bring back the 32bit mmap randomization patch for now.
NX emulation is still too dependant upon it.
2011-08-27 14:00:14 -04:00
Dave Jones acf0fc7b14 NX emulation fixes
Fix get_gate_vma usage in i386 NX emulation
Fix up dependancy on the dropped randomization patch.
2011-08-27 13:27:38 -04:00
Josh Boyer 96b3b74649 3.1-rc3-git6 snapshot 2011-08-27 09:56:04 -04:00
Dave Jones 448d79664f Enable CONFIG_DETECT_HUNG_TASK for debug builds & rawhide. 2011-08-26 16:15:58 -04:00
Dave Jones fa32e9c52f Drop linux-2.6-debug-vm-would-have-oomkilled.patch
The oom-killer heuristics have improved enough that this should
never be necessary (and it probably doesn't dtrt any more)
2011-08-26 14:27:21 -04:00
Dave Jones 0f55b32a44 clean up a little 2011-08-26 12:49:48 -04:00
Dave Jones 3f1a765f53 Drop linux-2.6-32bit-mmap-exec-randomization.patch
Outlived it's usefulness (and made of ugly)
2011-08-26 12:46:33 -04:00
Dave Jones ce55283388 remove pointless linux-2.6.29-sparc-IOC_TYPECHECK.patch
This is the same definition as the one in asm-generic
2011-08-26 11:49:02 -04:00
Dave Jones d9244d0441 remove dead patches 2011-08-26 11:40:21 -04:00
Dave Jones 0ad4e113ad Drop acpi-ec-add-delay-before-write.patch (rhbz 733690) 2011-08-26 11:39:07 -04:00
Josh Boyer 9c44ba9cff 3.1-rc3-git5
cleanup some of the cpupowerutils build stuff
2011-08-26 08:30:26 -04:00
Josh Boyer 28597795d3 3.1-rc3-git3 snapshot 2011-08-25 07:58:18 -04:00
Josh Boyer 04d46b9ad7 Revert 'iwlwifi: advertise max aggregate size'. (rhbz 708747) 2011-08-24 08:42:15 -04:00
Josh Boyer d20ff5e932 3.1-rc3.
Add patch to fix duplicate backlight registration on i915
2011-08-22 17:15:34 -04:00
Josh Boyer 0b3ccf1fa5 3.1-rc2-git9 snapshot 2011-08-22 10:20:15 -04:00
Josh Boyer 7252f6d902 3.1-rc2-git8 snapshot 2011-08-20 09:21:51 -04:00
Josh Boyer 0ad3713581 3.1-rc2-git7 snapshot. Fix provides/obsoletes for cpupowerutils-devel 2011-08-20 08:13:48 -04:00
Josh Boyer 7aac3ebb1e Fix 64-bit divide error in btrfs 2011-08-19 09:30:34 -04:00
Josh Boyer c3c2b77d29 3.1-rc2-git5 snapshot
Make XHCI builtin, add a patch to fix a race in the crypto framework
2011-08-19 08:32:04 -04:00
Josh Boyer 02587b4efa Adjust obsoletes/provides to replace the cpupowerutils package 2011-08-18 11:44:24 -04:00
Josh Boyer 5106c63573 Fix build against rawhide glibc and add BR for gettext 2011-08-18 08:14:20 -04:00
Josh Boyer 69fc02b694 3.1-rc2-git4 snapshot 2011-08-17 22:57:30 -04:00
Josh Boyer 93e7772b8b Make sure %post/%postun for kernel-tools is wrapped with %{with_tools}
otherwise noarch fails (also make prep)
2011-08-17 22:15:25 -04:00
Josh Boyer 8addb5fc3a Create the kernel-tools package. WHEE 2011-08-17 21:19:57 -04:00
Dave Jones 1d18ad9c11 Prepare for packaging more of tools/ by renaming 'perf' subpackage to kernel-tools 2011-08-16 15:20:09 -04:00
Dennis Gilmore 3e616b4b28 tweak the arm configs a little
build a up image on armv5tel its a basic qemu image.

setup to make configs for building kernels on hardware floating point arm arches
2011-08-16 11:34:23 -05:00
Dennis Gilmore 41dc1eca4d only build the omap and tegra variants on armv7 builds 2011-08-16 11:34:07 -05:00
Dennis Gilmore 94b00675ee only build kernel headers on the base arm arches 2011-08-16 11:33:55 -05:00
Dennis Gilmore 986a9f3a2e setup config for tegra based arm boards, add device tree
patches for arm build tegra and omap kernel on arm
2011-08-16 11:33:15 -05:00
Josh Boyer bc12142e94 Add a few patches that were in f16 but not in rawhide 2011-08-16 10:31:40 -04:00
Josh Boyer 8ffa0afd4c From: David Marlin <dmarlin@redhat.com>
Modify to split the ARM config files to work more like other archs.

Rename:
  config-arm -> config-arm-generic
Add:
  config-arm-omap-generic
2011-08-16 10:31:26 -04:00
Josh Boyer 6920e17ebc Linux-3.1-rc2
Add better fix from Paul McKenney for rcu scheduling issue (rhbz 726877)
2011-08-15 10:06:52 -04:00
Josh Boyer f1b16b1fca 3.1-rc1-git6 snapshot. Make ide_pmac a module 2011-08-11 22:27:54 -04:00
Josh Boyer c1aa9d7541 3.1-rc1-git3 snapshot 2011-08-11 08:09:36 -04:00
Josh Boyer d71f188339 Make sure all the config-* files are in some Sources line 2011-08-10 09:18:01 -04:00
Josh Boyer 3922dda442 Linux 3.1-rc1-git2 snapshot 2011-08-10 08:51:50 -04:00
Dave Jones 18192bce4c ptrace_report_syscall: check if TIF_SYSCALL_EMU is defined 2011-08-09 14:13:24 -04:00
Dave Jones b4b8a811e8 Enable CONFIG_SAMSUNG_LAPTOP (rhbz 729363) 2011-08-09 13:34:53 -04:00
Josh Boyer 557f2a47cb Linux 3.1-rc1-git1 snapshot 2011-08-08 21:16:21 -04:00
Josh Boyer 740de53011 Linux-3.1-rc1
Adjust Makefile munging for 3.x numbering scheme
2011-08-08 10:17:46 -04:00
Dave Jones 84f976bc28 Deselect CONFIG_DECNET. Unmaintained, and rubbish. 2011-08-05 16:14:18 -04:00
Josh Boyer fac491b47c 3.0-git21 snapshot 2011-08-05 10:48:31 -04:00
Dave Jones 6d621fbb57 Drop neuter_intel_microcode_load.patch (rhbz 690930) 2011-08-04 13:53:04 -04:00
Josh Boyer 8e3ae989b3 3.0-git19 snapshot
Add epoll patch until it gets upstreamed
Add trial patch to fix the scheduling while atomic issues around pidmap_init
2011-08-04 11:12:43 -04:00
Dave Jones 1aa2339b01 Re-apply the rebased utrace 2011-08-03 16:05:34 -04:00
John W. Linville 7e3f828310 Disable CONFIG_BCMA since no driver currently uses it (rhbz 727796) 2011-08-03 13:35:58 -04:00
Dave Jones f52a0de1ad Change USB_SERIAL_OPTION back to modular. (rhbz 727680) 2011-08-02 18:20:02 -04:00
Dave Jones ed3d2678ba document this magic from the commit msg. 2011-08-02 15:55:13 -04:00
Josh Boyer c2057797f6 3.0-git17 snapshot
Add changes for rhbz 720128,720054,708314
2011-08-02 12:49:07 -04:00
Josh Boyer 502500759d 3.0-git16 snapshot 2011-08-02 08:20:26 -04:00
Josh Boyer 12ba4aac8a 3.0-git15 snapshot 2011-08-01 09:14:13 -04:00
Josh Boyer 3575ffb1af 3.0-git14 snapshot
Add scary cow back to remind people we're branched now
2011-08-01 08:11:27 -04:00
Josh Boyer 0b39172ce2 3.0-git12 snapshot 2011-07-30 11:21:38 -04:00
Josh Boyer 9e4aeabc4e Adjust sedding for the 3.x release style now that we know it's 3.x.x and not
just 3.x
2011-07-29 13:55:57 -04:00
Josh Boyer 37a65c7868 3.0-git11 snapshot
Add patch from linux-next to fix udlfb binding (rhbz 726163)
2011-07-29 10:12:47 -04:00
Dave Jones 4e3ef44362 module-init-tools needs to be a prereq not a conflict. 2011-07-28 21:37:54 -04:00
Josh Boyer 35ffdcd40e 3.0-git9 snapshot 2011-07-27 21:07:17 -04:00
Kyle McMartin 4a2041744e 3.0-git3 snapshot
Testing that this part of the spec still works...

Hopefully the next release is indeed 3.1.0...
2011-07-25 09:46:01 -04:00
Dave Jones 524b8cb855 bootwrapper needs objcopy. Add it to requires: (wwoods) 2011-07-22 14:32:48 -04:00
Kyle McMartin e8ba2bf13a Update to 3.0.0
Sadly Linus decided to stick with three digit versions. Modify our
assumptions in the spec file and use the final digit as the
permanent stable_rev.
2011-07-22 11:56:27 -04:00
Chuck Ebbert bfe340785a Linux 3.0-rc7-git10 2011-07-21 21:39:08 -04:00
Chuck Ebbert e2a36baadc Use ext4 for ext2 and ext3 filesystems 2011-07-21 21:32:15 -04:00
Dave Jones 441b0a7fe7 Switch BLK_DEV_RAM to be modular (rhbz 720833) 2011-07-21 16:11:37 -04:00
Chuck Ebbert 826713d48b 3.0-rc7-git8 2011-07-20 18:37:01 -04:00
Dave Jones 5ac3ec1548 3.0-rc7-git3 2011-07-15 18:45:29 -04:00
Dave Jones 5a6744203a Bring back utrace until uprobes gets merged upstream. 2011-07-15 16:04:21 -04:00
Kyle McMartin cdb291795c Update to snapshot 3.0-rc7-git1 for intel drm fixes. 2011-07-13 19:09:03 -04:00
John W. Linville 5274cf846b zd1211rw: fix invalid signal values from device (rhbz 720093) 2011-07-12 15:33:00 -04:00
John W. Linville b054bb0821 rt2x00: Add device ID for RT539F device. (rhbz 720594) 2011-07-12 14:40:49 -04:00
Kyle McMartin a6b4f0c571 Linux 3.0-rc7
hopefully the last before the Great Renumbering becomes
official.
2011-07-12 08:32:18 -04:00
Dave Jones d74412cfc2 Change BINFMT_MISC to be modular. (rhbz 695415) 2011-07-11 17:03:10 -04:00
Kyle McMartin e04b212cc5 update to snapshot 3.0-rc6-git6
revert CONFIG_X86_RESERVE_LOW=640, it breaks boot.
2011-07-10 11:49:54 -04:00
Dave Jones 75d6a46098 Centralise CPU_FREQ options into config-generic.
Switch to using ondemand by default. (rhbz 713572)
2011-07-07 15:44:13 -04:00
Chuck Ebbert c2cf2cf990 Set CONFIG_X86_RESERVE_LOW=640 as requested by mjg 2011-07-06 18:05:04 -04:00
Dave Jones 4d4f51ed0d Revert "Don't suppress output from make. (rhbz #716563)"
This reverts commit 83ea416dda.
2011-07-06 16:05:03 -04:00
Dave Jones 83ea416dda Don't suppress output from make. (rhbz #716563) 2011-07-06 14:05:06 -04:00
Kyle McMartin 99ca0896f9 linux 3.0-rc6
CONFIG_SCSI_ISCI=m
2011-07-04 20:27:46 -04:00
Kyle McMartin d2e2953bea update to snapshot 3.0-rc5-git5 2011-07-02 20:08:12 -04:00
Kyle McMartin 631520c5f2 linux 3.0-rc5 2011-06-27 23:56:06 -04:00
Dave Jones 4e11b0fb25 Disable CONFIG_CRYPTO_MANAGER_DISABLE_TESTS, as this also disables FIPS (rhbz 716942) 2011-06-27 12:27:32 -04:00
Kyle McMartin 4cc6bd7c83 iwlagn-fix-dma-direction.patch 2011-06-23 15:29:02 -04:00
Kyle McMartin 472d463edc update to 3.0-rc4-git3
drop linux-3.0-fix-uts-release.patch and just perl the Makefile
instead

linux-2.6-silence-noise.patch: fix context
2011-06-23 15:27:07 -04:00
Kyle McMartin 761d1c022e re-enable debuginfo generation, which had been accidentally
disabled in 3d121413
2011-06-22 12:17:08 -04:00
Kyle McMartin e2875c52bd Update to 3.0-rc4
CONFIG_USB_NET_KALMIA =m
Fix context in linux-3.0-fix-uts-release.patch
2011-06-21 17:00:48 -04:00
Kyle McMartin 11b539c9cb update to 3.0-rc3-git6 2011-06-17 23:17:40 -04:00
Dave Jones 27d8829e66 drop linux-2.6-debug-always-inline-kzalloc.patch.
Can't recall why this was added. Can easily re-add if deemed necessary.
2011-06-17 15:46:56 -04:00
Dave Jones 3e5443018e drop sizeof structs patch
not really very useful any more.
2011-06-17 15:25:13 -04:00
Dave Jones 975b3750e0 drop qcserial 'compile fix' that was just duplicating an include. 2011-06-17 14:23:37 -04:00
Kyle McMartin 30be1b3c22 drop more upstream patch (linux-2.6-v4l-dvb-add-lgdt3304-support.patch) 2011-06-17 13:30:29 -04:00
Kyle McMartin 55e809ca1a drm-i915-gen4-has-non-power-of-two-strides.patch: drop buggy bugfix 2011-06-17 13:24:45 -04:00
Kyle McMartin a71a059a20 drop firewire patches 2011-06-17 13:23:12 -04:00
Kyle McMartin 7918b0cd6c re-sync more patches 2011-06-17 13:21:55 -04:00
Kyle McMartin f9204b5a27 and also linux-2.6-defaults-pci_use_crs.patch dropped 2011-06-17 12:59:33 -04:00
Kyle McMartin 6491f553df linux-2.6-defaults-pci_no_msi.patch: drop 2011-06-17 12:47:35 -04:00
Kyle McMartin a8a2918cfc update to 3.0-rc3-git5 2011-06-17 12:09:24 -04:00
Kyle McMartin ff5dfe257c disable slub mm patches for now 2011-06-16 12:56:32 -04:00
Kyle McMartin 930d409822 add mdadm conflict 2011-06-15 12:23:23 -04:00
Kyle McMartin 64e35b526f build in aesni on i586 2011-06-15 10:33:37 -04:00
Kyle McMartin 1d8e3474dc fix libdm conflict 2011-06-14 12:58:31 -04:00
Kyle McMartin 61c4903272 Update to 3.0-rc3
Add another conflicts to deal with 2 digit
versions (libdm.)

Now that $SUBLEVEL in Makefile is optional, drop it and simplify
linux-3.0-fix-uts-release.patch

linux-2.6-i386-nx-emulation.patch: fix simple reject

drm-intel-eeebox-eb1007-quirk.patch,
revert-ftrace-remove-unnecessary-disabling-of-irqs.patch,
ath5k-disable-fast-channel-switching-by-default.patch: drop
upstream patches.
2011-06-14 09:54:44 -04:00
Kyle McMartin 33b31a1c76 ath5k-disable-fast-channel-switching-by-default.patch
(rhbz#709122) (korgbz#34992) [a99168ee in wireless-next]
2011-06-09 10:37:14 -04:00
Kyle McMartin 490bb4b273 rhbz#710921: revert-ftrace-remove-unnecessary-disabling-of-irqs.patch 2011-06-09 10:25:34 -04:00
Kyle McMartin 99b6793a5d update to 3.0-rc2
also build in ipv6 for the reasons documented by notting here
http://lists.fedoraproject.org/pipermail/kernel/2011-June/003105.html
2011-06-08 01:35:29 -04:00
Kyle McMartin 930327525a conflict with old module-init-tools 2011-06-06 16:20:39 -04:00
Kyle McMartin 911cdc530b fix utsname for 3.0-rc1 2011-06-02 23:02:53 -04:00
Kyle McMartin 6ece5fb0c5 fix nxemu 2011-05-30 13:13:15 -04:00
Kyle McMartin 3d121413b5 make debug 2011-05-30 12:48:48 -04:00
Kyle McMartin 90ed1a9fc4 tag changelog 2011-05-30 10:39:13 -04:00
Kyle McMartin 123d535ad8 rebase and nuke patches 2011-05-30 07:23:14 -04:00
Kyle McMartin cbc61c988b ditto 2011-05-30 07:09:30 -04:00
Kyle McMartin 385fc37ac8 trim changelog 2011-05-30 06:52:57 -04:00
Kyle McMartin 8b2fa9b506 continue working on 3.0 2011-05-30 06:50:03 -04:00
Kyle McMartin 1d83b4aade backport some low-impact enablement for the pegatron tablets 2011-05-24 11:11:50 -04:00
Chuck Ebbert ed7f8ddc67 Drop broken fix for stalls on AMD processors. 2011-05-20 22:38:50 -04:00
Dave Jones 22c40c590c Fix up the versioning. Derp. 2011-05-20 22:02:35 -04:00
Dave Jones 6fcff9df33 2.6.39 2011-05-19 14:55:57 -04:00
Kyle McMartin 09835821e3 update to v2 of mel gorman's slub patchset 2011-05-14 13:22:02 -04:00
Kyle McMartin b86173d0ca switch NF_CONNTRACK to modular 2011-05-14 12:15:36 -04:00
Kyle McMartin c0414507fc bump base release 2011-05-14 11:22:37 -04:00
Kyle McMartin 9787d244d7 tmpfs: implement generic xattr support
Merge Eric Paris' patch to add xattr support to tmpfs, so that it can be
used to host mockroots for mass rebuilds.
Drop IMA disabling patch, which is no longer necessary since it's run time
(but unused) cost is now minimized.
2011-05-14 11:11:01 -04:00
Kyle McMartin 480eadaeb5 update to 2.6.39-rc7-git6 2011-05-14 09:35:10 -04:00
Chuck Ebbert 52548dc138 Fix yet another bug in AMD erratum checking (#704059) 2011-05-12 19:27:16 -04:00
Kyle McMartin d8616baf4a flip the release builds toggle 2011-05-12 10:34:16 -04:00
Kyle McMartin b365a824ae update to snapshot 2.6.39-rc7-git3 2011-05-12 09:40:15 -04:00
Kyle McMartin a7e4f1ccd5 pull in some SLUB fixes from Mel Gorman for testing 2011-05-11 16:20:16 -04:00
Kyle McMartin 9b1caead9a linux 2.6.39-rc7 2011-05-10 09:06:44 -04:00
Dave Jones 57671e4ed5 adios utrace. 2011-05-09 16:41:28 -04:00
Kyle McMartin 9de65275ff update to 2.6.39-rc6-git6 and build 2011-05-09 09:56:51 -04:00
Chuck Ebbert 29e8da62aa Enable CONFIG_FB_UDL (#634636) 2011-05-09 07:38:25 -04:00
Kyle McMartin 6d61c1b222 update to 2.6.39-rc6-git5 2011-05-07 09:52:35 -04:00
Kyle McMartin ba4b07ab78 update to 2.6.39-rc6-git2 2011-05-04 22:26:37 -04:00
Kyle McMartin 33e7113233 linux 2.6.39-rc6 2011-05-04 11:49:33 -04:00
Kyle McMartin 8e5f42dd3d snapshot 2.6.39-rc5-git5 2011-05-01 22:17:23 -04:00
Kyle McMartin 0ca2d8f721 update to 2.6.39-rc5-git1 2011-04-28 16:22:58 -04:00
Kyle McMartin 9541e8e962 update to 2.6.39-rc5 2011-04-27 10:23:19 -04:00
Kyle McMartin 26d27c51d7 update to 2.6.39-rc4-git8 2011-04-26 16:05:32 -04:00
Kyle McMartin 1060ecc3d2 ppc64: disable CONFIG_TUNE_CELL 2011-04-24 21:49:17 -04:00
Dave Jones 123939a217 2.6.39rc4-git2 2011-04-20 22:14:41 -04:00
Dave Jones 0e465b7a3f Make USB serial console work.
How did we go this long with this not working ?
2011-04-19 20:04:42 -04:00
Kyle McMartin aac9f66ea2 update to 2.6.39-rc3-git2 2011-04-13 13:19:45 -04:00
Kyle McMartin 4e0e69a64c snapshot 2.6.39-rc2-git3 2011-04-11 12:32:43 -04:00
Hans de Goede 042ba03b68 Add a no lvds quirk for the Asus EB1007 to the i915 drm driver,
this fixes gnome-shell not working on it
2011-04-07 14:01:43 +02:00
Kyle McMartin 289e9e97ca update to 2.6.39-rc2 2011-04-06 11:19:10 -04:00
Kyle McMartin db2e653dec update to git snapshot 2.6.39-rc1-git5
(Not test-built before commit since my rawr box is down atm.)
2011-04-05 15:23:45 -04:00
Kyle McMartin dba63f5a2e update to snap 2.6.39-rc1-git3 2011-04-02 12:18:46 -04:00
Kyle McMartin ae1de152a4 update to snapshot 2.6.39-rc1-git1 2011-03-31 17:06:54 -04:00
Kyle McMartin 5db0b2d98f disable tpm/ima on ppc 2011-03-29 20:31:13 -04:00
Kyle McMartin f80257e047 disable qla4xxx on ppc32 2011-03-29 19:58:30 -04:00
Kyle McMartin 46be4d7b89 linux 2.6.39-rc1 2011-03-29 18:09:45 -04:00
Kyle McMartin 78563abd65 Update to 2.6.38-git21 2011-03-29 17:59:22 -04:00
Kyle McMartin db49e9edd8 update to snapshot 2.6.38-git19 2011-03-28 17:22:32 -04:00
Chuck Ebbert 561c61e4ca Drop two obsolete patches 2011-03-27 23:00:49 -04:00
Chuck Ebbert cf8d6fcbcd Drop unused patches already applied upstream 2011-03-25 19:20:21 -04:00
Kyle McMartin 1121f6ddf0 re-create ACPI battery sysfs files on resume from suspend
Fixes the upstream changes to the dropped
acpi-update-battery-information-on-notification-0x81.patch.
2011-03-23 09:42:21 -04:00
Kyle McMartin e8c0dae39e Update to 2.6.38-git12
Enable I2C_DIOLAN_U2C USB i2c adapter [all], I2C_PXA [i686].
2011-03-23 08:55:25 -04:00
Kyle McMartin a135357dad fix up utrace-ptrace for smp_lock removal 2011-03-22 17:49:36 -04:00
Kyle McMartin 31c46e0c23 update to 2.6.38-git11 2011-03-22 17:04:14 -04:00
Kyle McMartin 3f74cb629d update to 2.6.38-git6 2011-03-18 13:15:43 -04:00
Matthew Garrett a725c00ed4 drop efi_default_physical.patch - it's actually setting up something that's
neither physical nor virtual, and it's probably breaking EFI boots
2011-03-17 10:34:55 -04:00
Kyle McMartin 3ddbdca8f8 Set rawhide back on the bleeding edge
Test out scripts/rebase.sh on 2.6.38-git1.
Enable fhandle syscalls (ugh. conditional syscalls... update
CONFIG_EXPORTFS to =y, since it's now a bool.)
CONFIG_XEN_DEBUG [i386,x86_64] =n, but possibly should be -debug
conditional. Needs a xen user to benchmark and see how bad the overhead
is.
2011-03-16 09:05:07 -04:00
Adam Jackson 09c361fdb6 Drop the intel gen2 hack 2011-03-15 14:56:28 -04:00
Chuck Ebbert 22477214dd Make documentation build single-threaded 2011-03-15 00:59:23 -04:00
Chuck Ebbert 6754d6203b Linux 2.6.38 2011-03-15 00:31:27 -04:00
Chuck Ebbert 073f3d17c8 Linux 2.6.38-rc8-git4 2011-03-14 08:58:18 -04:00
Chuck Ebbert 0e7752b196 Linux 2.6.38-rc8-git3 2011-03-10 21:54:06 -05:00
Chuck Ebbert 2ee25bcd9d Linux 2.6.38-rc8-git2 2011-03-10 12:17:33 -05:00
Chuck Ebbert 0f3aefa567 Linux 2.6.38-rc8-git1 2011-03-09 20:21:08 -05:00
Dennis Gilmore f5bdb227c4 apply gcc-4.6.0 sparc build fix patch 2011-03-09 18:45:06 -06:00
Ben Skeggs 496d23d393 nouveau: minor updates 2011-03-09 16:34:54 +10:00
Chuck Ebbert b2abdb079d Linux 2.6.38-rc8 2011-03-08 02:52:28 -05:00
Chuck Ebbert 3d285d4290 Linux 2.6.38-rc7-git4
Revert upstream commit e3e89cc535223433a619d0969db3fa05cdd946b8
for now to fix utrace build.
2011-03-05 21:51:32 -05:00
Roland McGrath 3c4ea9ad7f Split out perf-debuginfo subpackage. 2011-03-04 15:40:12 -08:00
Kyle McMartin 68c77e0c03 revert drm-i915-gen4-has-non-power-of-two-strides.patch for now 2011-03-04 17:03:21 -05:00
Kyle McMartin 5554884073 Linux 2.6.38-rc7-git2 2011-03-04 12:10:22 -05:00
Kyle McMartin 973b532fe7 drm/i915: Gen4+ has non-power-of-two strides
[bea96046b4245e9abd65ed7acfed9adfd5f6c639 in drm-intel-staging]
2011-03-04 12:06:51 -05:00
Chuck Ebbert a61f011427 Linux 2.6.38-rc7-git1 2011-03-03 21:33:20 -05:00
Kyle McMartin 4bb56089e3 patch 2.6.38-rc7 2011-03-01 18:42:29 -05:00
Chuck Ebbert a7940a1d09 Linux 2.6.38-rc6-git6
Build in virtio_pci driver so virtio_console will be built-in (#677713)
2011-02-25 20:01:24 -05:00
Chuck Ebbert 8ec9c79221 Linux 2.6.38-rc6-git4 2011-02-24 22:31:53 -05:00
Matthew Garrett 31a889617a linux-2.6-acpi-fix-implicit-notify.patch: Fix implicit notify when there's
more than one device per GPE
2011-02-24 10:58:57 -05:00
Chuck Ebbert a8bce03c83 Linux 2.6.38-rc6-git2 2011-02-23 20:21:27 -05:00
Ben Skeggs a2c6d29711 nouveau: additional fixes on top of .38 2011-02-23 11:08:53 +10:00
Kyle McMartin 64f9d17204 patch 2.6.38-rc6 2011-02-22 12:52:46 -05:00
Chuck Ebbert 7cfb2e418c Linux 2.6.38-rc5-git7 2011-02-22 00:25:54 -05:00
Dave Jones cdb4bdad9b Linux 2.6.38-rc5-git6 2011-02-21 11:43:11 -05:00
Chuck Ebbert 3d2b80aa7e Linux 2.6.38-rc5-git5 2011-02-19 10:06:55 -05:00
Chuck Ebbert 1edc59625c Linux 2.6.38-rc5-git1 2011-02-16 20:34:36 -05:00
Chuck Ebbert b161e65d96 Revert check for read-only block device added in .38 (#672265) 2011-02-16 17:04:06 -05:00
Chuck Ebbert acd41dbaf4 Make virtio_console built-in on x86_64 (#677713) 2011-02-16 11:57:58 -05:00
Chuck Ebbert 4679d77e75 Add support for Airprime/Sierra USB IP modem (#676860) 2011-02-16 08:20:49 -05:00
Kyle McMartin b269e6ad09 rc 2.6.38-rc5 update 2011-02-16 00:00:03 -05:00
Chuck Ebbert c0fb6725be Linux 2.6.38-rc4-git7 2011-02-13 19:55:45 -05:00
Chuck Ebbert 822aa68f4f Fix memory corruption caused by bug in bridge code. 2011-02-12 21:00:46 -05:00
Chuck Ebbert c60c9d544f Linux 2.6.38-rc4-git6 2011-02-12 20:56:59 -05:00
Chuck Ebbert 9d77807e44 Linux 2.6.38-rc4-git5 2011-02-12 11:55:34 -05:00
Chuck Ebbert bad79d2eb0 Linux 2.6.38-rc4-git3 2011-02-10 20:02:57 -05:00
Dennis Gilmore 06c3e5f3f8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 20:26:47 -06:00
Kyle McMartin ea66bd4f85 patch-2.6.38-rc4 2011-02-07 19:30:45 -05:00
Chuck Ebbert 3b6f1e555c Linux 2.6.38-rc3-git4 2011-02-04 20:11:50 -05:00
Chuck Ebbert 9fd29980ae Linux 2.6.38-rc3-git3 2011-02-03 22:02:14 -05:00
Chuck Ebbert b2f151780e Enable Advansys SCSI driver on x86_64 (#589115) 2011-02-03 21:56:38 -05:00
Kyle McMartin 928e7a877d snapshot 2.6.38-rc3-git2
and an ath5k fix from sgruszka@/nick.
2011-02-03 09:32:19 -05:00
Kyle McMartin cacb6d3eba Linux 2.6.38-rc3-git1 snapshot 2011-02-02 15:18:29 -05:00
Chuck Ebbert d12d7e80c2 Fix autoload of atl1c driver for latest hardware (#607499) 2011-02-02 11:21:43 -05:00
Chuck Ebbert 6dc8e998dc add version to changelog 2011-02-01 22:17:47 -05:00
Chuck Ebbert 64ca523865 Proper HFS+ mount failure fix from hch 2011-02-01 19:27:02 -05:00
Chuck Ebbert 580ae71e04 Linux 2.6.38-rc3 2011-02-01 12:38:03 -05:00
Chuck Ebbert 285227b68c Try to fix some obvious bugs in hfsplus mount failure handling (#673857) 2011-02-01 12:21:31 -05:00
Chuck Ebbert 270ebd2028 Linux 2.6.38-rc2-git9 2011-01-31 21:42:49 -05:00
Kyle McMartin faf478c98c disable CONFIG_SERIAL_8250_DETECT_IRQ (from mschmidt@redhat.com)
Should reduce boot times by ~200ms.
2011-01-31 12:13:31 -05:00
Chuck Ebbert b02e2e357a Add Trond's NFS bugfixes branch from git.linux-nfs.org 2011-01-31 11:21:40 -05:00
Chuck Ebbert 78fc9d2434 Linux 2.6.38-rc2-git8 2011-01-31 10:15:49 -05:00
Chuck Ebbert f8eae5b665 Fix build failure on s390. 2011-01-31 09:52:08 -05:00
Chuck Ebbert 3a78e4bfde Add missing config options, and make prep really fail when it should 2011-01-29 11:43:08 -05:00
Chuck Ebbert 60ec942e9f Linux 2.6.38-rc2-git7 2011-01-28 10:38:45 -05:00
Kyle McMartin 6257b8803c snapshot 2.6.38-rc2-git5 2011-01-26 18:13:27 -05:00
Kyle McMartin 77886ddffa [x86] disable TRANSPARENT_HUGEPAGEs 2011-01-25 19:48:45 -05:00
Kyle McMartin 84056ee1b8 update to snapshot 2.6.38-rc2-git3
fix context in perf-gcc460-build-fixes.patch
2011-01-25 13:19:18 -05:00
Dan Horák cfdfd01df8 all_arch_configs can be undefined
"all_arch_configs" is not defined on architectures where only the kernel-headers
package is built, like on s390 and sparc/sparcv9.

workarounds Jarod's 5b65297cef
2011-01-25 09:50:05 +01:00
Kyle McMartin 89a0c6d9b9 disable usb autosuspend goo for now 2011-01-24 17:47:13 -05:00
Kyle McMartin 641f5c96f6 fix buglet(?) in runtime_pm_fixups.patch 2011-01-24 13:55:48 -05:00
Kyle McMartin f5ea23d7bc annotate 2011-01-24 13:24:03 -05:00
Kyle McMartin a56ba88660 rebase runtime pm fixups and drop debug-tty-print-dev-name.patch 2011-01-24 13:04:53 -05:00
Kyle McMartin d8122d51be perf-gcc460-build-fixes.patch 2011-01-24 11:17:13 -05:00
Kyle McMartin a08b493398 snapshot 2.6.38-rc2-git1 2011-01-24 11:17:05 -05:00
Kyle McMartin 71f70cd13e utrace update
Conflicts:

	kernel.spec
2011-01-22 13:43:13 -05:00
Kyle McMartin b8f320f96d - linux-2.6-ehci-check-port-status.patch - fix USB resume on some AMD systems
Conflicts:

	kernel.spec
2011-01-22 13:42:30 -05:00
Kyle McMartin e6636acec4 update to 2.6.38-rc2 2011-01-22 13:34:11 -05:00
Kyle McMartin c3b3bb2e85 enable release builds 2011-01-21 12:02:38 -05:00
Kyle McMartin 2f1cbe3493 snapshot 2.6.38-rc1-git1 2011-01-20 16:01:42 -05:00
Kyle McMartin b79a31e8f2 commit 2.6.38-rc1 2011-01-19 01:22:50 -05:00
Kyle McMartin b83e18e0fc snapshot 2.6.37-git18 2011-01-18 15:48:42 -05:00
Kyle McMartin 7838e83d9c snapshot 2.6.37-git16 2011-01-17 11:04:55 -05:00
Kyle McMartin 126cc8b40c Linux 2.6.37-git13 2011-01-15 12:43:39 -05:00
Kyle McMartin c55a797910 fix build of xen-gntdev.ko 2011-01-15 01:34:12 -05:00
Kyle McMartin ee6c061eb9 snapshot 2.6.37-git12 2011-01-15 00:56:55 -05:00
Kyle McMartin 8d441ef7e2 tag clog for 2.6.38-0.rc0.git9.1 2011-01-12 21:41:45 -05:00
Kyle McMartin ae502d2a45 update drm-intel-big-hammer.patch
i915_gem execbuffer code was split into its own file. also drop patches
which have been merged upstream.
2011-01-12 20:52:03 -05:00
Kyle McMartin 6c1e38b718 update linux-2.6-silence-noise.patch and suck in gitrev 9
re-enable RONX modules, since it's been fixed to get along with
dynamic ftrace.
2011-01-12 20:46:30 -05:00
Jarod Wilson 5b032757ea Add missing --with/--without pae build flag support
Signed-off-by: Jarod Wilson <jarod@redhat.com>
2011-01-10 17:38:06 -05:00
Jarod Wilson 5b65297cef Add support for local rebuild config option overrides
Signed-off-by: Jarod Wilson <jarod@redhat.com>
2011-01-10 17:37:27 -05:00
Kyle McMartin d9fdd68cbe disable CONFIG_DEBUG_SET_MODULE_RONX for now 2011-01-10 14:00:14 -05:00
Kyle McMartin 173354353e drop obsolete linux-2.6-debug-nmi-timeout.patch 2011-01-10 13:18:32 -05:00
Kyle McMartin 4f860245a9 Branch for 2.6.38
- Rebase trivial patches.
- Switch debug configs back on.
- config changes:
  DEBUG_SET_MODULE_RONX=y
  B43_PHY_N=y
  RT2800USB_RT33XX=y |
  RT2800PCI_RT33XX=y | experimental
  WL12XX=m
  RTL8192CE=m
  CAN_SLCAN=m
  SCHED_AUTOGROUP=n
2011-01-10 11:05:09 -05:00
Chuck Ebbert 482441b552 remove modules.builtin.bin to prevent RPM verify errors (#650807) 2011-01-10 08:14:04 -05:00
Kyle McMartin e2a5d65ab5 drm_i915-check-eDP-encoder-correctly-when-setting-modes.patch 2011-01-07 09:39:48 -05:00
Dennis Gilmore 9c74977711 build sparc headers on sparcv9 2011-01-05 14:38:06 -06:00
Dennis Gilmore 1c442e5d3d add patch for sparc build failure 2011-01-05 14:36:33 -06:00
Kyle McMartin 973a30d1db Linux 2.6.37 2011-01-04 21:36:50 -05:00
Kyle McMartin d6f08ea2fb Linux 2.6.37-rc8-git3 2011-01-03 10:57:25 -05:00
Kyle McMartin 6a82260f5d flexcop: fix xlate_proc_name warning through request_irq 2010-12-23 11:29:38 -05:00
Kyle McMartin 20f7603f9c bump baserelease for build 2010-12-22 11:41:29 -05:00
Kyle McMartin fabc0f344f actually switch on the release builds 2010-12-21 17:38:42 -05:00
Kyle McMartin 2884f24fc4 Linux 2.6.37-rc7 2010-12-21 17:30:26 -05:00
Kyle McMartin d696c1a26a Linux 2.6.37-rc6-git5
sched-cure-more-NO_HZ-load-average-woes.patch merged upstream.
2010-12-19 20:44:06 -05:00
Kyle McMartin c8d2616fb7 copy nhorman's AF_PACKET vmalloc patch from f13 (#637619) 2010-12-18 11:08:40 -05:00
Kyle McMartin bb75611c3b fs-call-security_d_instantiate-in-d_obtain_alias (#662344) 2010-12-18 10:57:28 -05:00
Matthew Garrett e0cefa4992 Actually apply the input patch 2010-12-17 12:22:07 -05:00
Matthew Garrett b07d634fac - efi_default_physical.patch: Revert hunk that breaks boot
- linux-next-macbook-air-input.patch: Add input support for new Macbook Airs
2010-12-17 11:51:06 -05:00
Matthew Garrett 0988eed04e - applesmc_update.patch: Make the driver more generic. Should help Apples.
- apple_backlight.patch: Make sure that this loads on all hardware.
- efifb_update.patch: Fixes for the 11 inch Macbook Air
- acpi_reboot.patch: Should make reboot work better on most hardware
- efi_default_physical.patch: Some machines dislike EFI virtual mode
2010-12-16 15:37:54 -05:00
Kyle McMartin c6781123e5 linux 2.6.37-rc6 2010-12-15 23:24:41 -05:00
Kyle McMartin 72be6aa092 fix up rejects in acpi-update-battery-information-on-notification-0x81.patch 2010-12-15 22:37:56 -05:00
Kyle McMartin 8c3ff15b0d bodge it for now 2010-12-15 08:21:27 -05:00
Kyle McMartin b3c92af657 update to 2.6.37-rc5-git5 2010-12-15 08:06:26 -05:00
Dan Horák 1f623e9fd5 disable perf on s390x until gcc bug (rhbz#663080) is resolved 2010-12-14 18:25:58 +01:00
Kyle McMartin 6558398116 mjg59: Set _OSC supported field correctly (#638912) 2010-12-10 17:50:24 -05:00
Kyle McMartin 39ad3b9d9e PCI: Disable ASPM if BIOS asks us to 2010-12-10 10:51:13 -05:00
Kyle McMartin 5d5148cd48 orinoco: initialise priv->hw before assigning the interrupt
Enable previous sched patch, which hadn't been applypatch'd.
2010-12-09 19:02:25 -05:00
Kyle McMartin 98e6119f39 Linux 2.6.37-rc5-git2 2010-12-08 16:23:18 -05:00
Kyle McMartin abce2aa994 Linux 2.6.37-rc5 2010-12-07 21:29:28 -05:00
Kyle McMartin f6c1ae10e3 fix thinko in previous commit, resulting in /usr/src/kernels/$ver/build/ 2010-12-06 12:51:18 -05:00
Kyle McMartin 4b3b40727e don't prune kernel-devel in the %with_headers install section
commit c1bdfc8b broke the build on s390 since it is headers only,
and had nothing installed in /usr/src/kernels... since kernel-devel
is only produced when there's a BuildKernel, just prune '*.cmd'
when doing BuildKernel for the same net result.
2010-12-06 12:04:28 -05:00
Kyle McMartin 8002c02cae enable cplus_demangle in perf 2010-12-04 11:36:16 -05:00
Kyle McMartin 5acda93677 Linux 2.6.37-rc4-git3 2010-12-03 07:26:49 -05:00
Kyle McMartin 254585788f kswapd fixes from mmotm
(queuing them here since it's unclear if they'll go into .37 or wait for
 .38)
2010-12-02 11:57:44 -05:00
Kyle McMartin 8077b629b4 suck in edp-fixes too 2010-12-01 15:05:40 -05:00
Kyle McMartin f1aeb30fcc add on drm-fixes until they're queued 2010-12-01 10:27:16 -05:00
Kyle McMartin 5256969a14 Linux 2.6.37-rc4-git1 2010-12-01 10:12:17 -05:00
Kyle McMartin 1a48cbfeed Linux 2.6.37-rc4 2010-11-30 11:30:30 -05:00
Kyle McMartin 4d70d8dc24 update debug-vm-would-have-oomkilled 2010-11-29 21:10:59 -05:00