Commit Graph

3650 Commits

Author SHA1 Message Date
Justin M. Forbes d8e509e91c Linux v4.8-rc6 2016-09-12 13:40:02 -05:00
Peter Robinson 8cdb4f279f Minor ARM config tweaks 2016-09-10 21:09:30 +01:00
Justin M. Forbes c3ff88e551 Linux v4.8-rc5-176-gd0acc7d 2016-09-09 16:58:04 -05:00
Justin M. Forbes 2915748084 Linux v4.8-rc5-129-g711bef6 2016-09-08 16:28:59 -05:00
Peter Robinson b7b78a8eda Enable some popular audio addon drivers 2016-09-08 14:28:56 +01:00
Justin M. Forbes fdbebc1572 Linux v4.8-rc5-62-gd060e0f 2016-09-07 12:48:19 -05:00
Justin M. Forbes ebe44508e6 Linux v4.8-rc5-5-gbc4dee5 2016-09-06 10:19:37 -05:00
Peter Robinson 0ee68ad896 Disable omap_aes currently broken 2016-09-05 08:36:07 +01:00
Peter Robinson bb2ad54eb7 minor iio driver config changes 2016-09-04 23:59:39 +01:00
Peter Robinson ae31c8a576 Use IIO BMP280 driver instead of old misc driver, wider HW support, Minor sensor driver changes 2016-09-04 15:25:55 +01:00
Justin M. Forbes e1aabdb952 Add ulimit for debugging, to be removed 2016-09-02 10:34:18 -05:00
Justin M. Forbes ee8e04e7bd Linux v4.8-rc4-199-gcc4163d 2016-09-02 09:52:53 -05:00
Justin M. Forbes 7523224718 Linux v4.8-rc4-162-g071e31e 2016-09-01 13:23:27 -05:00
Justin M. Forbes abb1ae30ca Linux v4.8-rc4-155-g86a1679 2016-08-31 11:01:18 -05:00
Justin M. Forbes a5b5f8c65c Linux v4.8-rc4-119-ge4e98c4 2016-08-30 09:42:20 -05:00
Laura Abbott aaaae68f00 Correct bugzilla number 2016-08-29 14:22:59 -07:00
Alec Leamas 2235f17f43 Add event decoding fix (rhbz 1360688)
[labbott@redhat.com: Add change log and tweak commit message]
2016-08-29 14:19:37 -07:00
Justin M. Forbes e058006821 Add SELinux OverlayFS support 2016-08-29 09:32:29 -05:00
Justin M. Forbes 36c8ef9805 Linux v4.8-rc4 2016-08-29 09:00:16 -05:00
Peter Robinson 583f918ee0 arm: just go 64Mb CMA everywhere and be done with it 2016-08-29 14:08:39 +01:00
Peter Robinson 1f77dbb08d arm: increase default CMA size to 32Mb (from 16Mb) 2016-08-29 13:17:38 +01:00
Peter Robinson 2c530ad257 update bcm2837 with what's currently upstream for a64 2016-08-29 09:20:11 +01:00
Peter Robinson e2ba24e6f4 enable common ARM IoT pressure sensor 2016-08-29 00:30:22 +01:00
Peter Robinson 769351a2f4 Minor ARM updates 2016-08-28 23:37:46 +01:00
Justin M. Forbes a9fd31238a Linux v4.8-rc3-39-g61c0457 2016-08-25 15:36:50 -05:00
Jeffrey Bastian ec3031ac73 add 32-bit ARM opcodes.h to kernel-devel rpm
64-bit ARM opcodes.h references the 32-bit version:
    $ cat arch/arm64/include/asm/opcodes.h
    #include <../../arm/include/asm/opcodes.h>

Include the 32-bit ARM opcodes.h in kernel-devel so tools like SystemTap
can use it (see RHBZ 1291868).

Signed-off-by: Jeff Bastian <jbastian@redhat.com>
2016-08-25 16:15:39 -04:00
Peter Robinson 20d49fec63 Config updates and fixes for ARMv7 platforms 2016-08-25 10:53:58 +01:00
Justin M. Forbes d5ce7505e0 Linux v4.8-rc3-26-gcad9d20 2016-08-24 09:11:15 -05:00
Laura Abbott 8fd61b3a44 Fix for inabiltiy to send zero sized UDP packets (rhbz 1365940) 2016-08-23 16:52:53 -07:00
Peter Robinson 0c1a1f4ca9 Adjust max CPUs on ARM platforms to reflect newer real world hardware 2016-08-23 21:05:13 +01:00
Peter Robinson 656a8be1e6 Move to upstream patches for ACPI SPCR (serial console) 2016-08-23 17:20:50 +01:00
Peter Robinson db34f96e9d Qualcomm QDF2432 errata fix 2016-08-23 17:11:40 +01:00
Josh Boyer 3222f9a9b7 Don't use early_param if fbcon is a module
Upstream 0-day testing has reported build issues with this patch when
fbcon is built as a module:

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/fedora.git rawhide
head:   bb46fd92b76deb12e06d53bc79db187c5217e540
commit: 3eb6be4c89daa67620490f9126fa8b7218963edc [16/51] silence fbcon logo
config: x86_64-randconfig-s1-08210816 (attached as .config)
compiler: gcc-4.4 (Debian 4.4.7-8) 4.4.7
reproduce:
        git checkout 3eb6be4c89daa67620490f9126fa8b7218963edc
        # save the attached .config to linux build tree
        make ARCH=x86_64

All errors (new ones prefixed by >>):

   drivers/video/console/fbcon.c:3633: error: expected declaration specifiers or '...' before string constant
   drivers/video/console/fbcon.c:3633: error: expected declaration specifiers or '...' before 'quiet_logo'
   drivers/video/console/fbcon.c:3633: warning: data definition has no type or storage class
>> drivers/video/console/fbcon.c:3633: error: type defaults to 'int' in declaration of 'early_param'
>> drivers/video/console/fbcon.c:3633: error: function declaration isn't a prototype

vim +3633 drivers/video/console/fbcon.c

  3627  static int __init quiet_logo(char *str)
  3628  {
  3629          logo_shown = FBCON_LOGO_DONTSHOW;
  3630          return 0;
  3631  }
  3632
> 3633  early_param("quiet", quiet_logo);
  3634
  3635  fs_initcall(fb_console_init);
  3636

This is because early_param is only defined in the #ifndef MODULE case.
Fedora always builds this as =y, so just move the code inside the #else
case.
2016-08-22 15:17:46 -04:00
Justin M. Forbes 114729e728 Linux v4.8-rc3 2016-08-22 08:13:07 -05:00
Peter Robinson b325251966 Add fix for RTC crash on ARMv7 am33xx devices 2016-08-20 13:52:20 +01:00
Justin M. Forbes d51e15e2b7 Linux v4.8-rc2-348-g6040e57 2016-08-19 17:06:06 -05:00
Justin M. Forbes a5acca3c59 Linux v4.8-rc2-232-g3408fef 2016-08-19 07:54:13 -05:00
Peter Robinson b0aef6661d Minor Tegra changes 2016-08-19 13:37:35 +01:00
Justin M. Forbes aa1bd41b87 add CVE number 2016-08-18 11:07:22 -05:00
Josh Boyer 3cc6a14ebc Fix typo in CVE number 2016-08-18 09:47:28 -04:00
Justin M. Forbes 06a192f0a9 Linux v4.8-rc2-42-g5ff132c spec file 2016-08-17 15:20:26 -05:00
Justin M. Forbes bc44e90122 Fix sources 2016-08-17 15:08:39 -05:00
Justin M. Forbes 773618662c Linux v4.8-rc2-42-g5ff132c 2016-08-17 15:08:12 -05:00
Justin M. Forbes d5efb68b2d Actually add the patch 2016-08-16 16:58:06 -05:00
Justin M. Forbes 0c95c00a58 Linux v4.8-rc2-17-gae5d68b 2016-08-16 16:43:35 -05:00
Justin M. Forbes 1b268d6baa Linux v4.8-rc2 2016-08-15 08:42:38 -05:00
Justin M. Forbes 28b020a75e Linux v4.8-rc1-166-g9909170 2016-08-12 16:43:15 -05:00
Justin M. Forbes 84f878999c Linux v4.8-rc1-88-g3b3ce01 2016-08-11 16:58:51 -05:00
Laura Abbott 744edb7493 Fix for crash seen with open stack (rhbz 1361414) 2016-08-11 14:50:22 -07:00
Peter Robinson 018c63534e Enable Atmel i2c TPM on ARM platforms 2016-08-11 22:24:22 +01:00