summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add ulimit for debugging, to be removedJustin M. Forbes2016-09-021-0/+1
| |
| * Linux v4.8-rc4-199-gcc4163dJustin M. Forbes2016-09-023-3/+6
| |
| * Linux v4.8-rc4-162-g071e31eJustin M. Forbes2016-09-013-3/+6
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc4.git2.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc4.git2.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc4.git2.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc4.git2.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-313-3/+6
|\|
| * Linux v4.8-rc4-155-g86a1679Justin M. Forbes2016-08-313-3/+6
| |
* | Merge remote-tracking branch 'origin/master'Thorsten Leemhuis2016-08-3110-189/+1058
|\|
| * Linux v4.8-rc4-119-ge4e98c4Justin M. Forbes2016-08-305-128/+7
| |
| * Correct bugzilla numberLaura Abbott2016-08-291-1/+1
| |
| * Add event decoding fix (rhbz 1360688)Alec Leamas2016-08-292-0/+52
| | | | | | | | [labbott@redhat.com: Add change log and tweak commit message]
| * Add SELinux OverlayFS supportJustin M. Forbes2016-08-295-63/+1001
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc4.git0.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc4.git0.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc4.git0.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc4.git0.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-297-104/+70
|\|
| * Linux v4.8-rc4Justin M. Forbes2016-08-297-104/+70
| |
* | Merge remote-tracking branch 'origin/master'Thorsten Leemhuis2016-08-297-1264/+51
|\|
| * arm: just go 64Mb CMA everywhere and be done with itPeter Robinson2016-08-292-4/+1
| |
| * arm: increase default CMA size to 32Mb (from 16Mb)Peter Robinson2016-08-291-1/+1
| |
| * update bcm2837 with what's currently upstream for a64Peter Robinson2016-08-293-27/+44
| |
| * enable common ARM IoT pressure sensorPeter Robinson2016-08-291-0/+1
| |
| * Minor ARM updatesPeter Robinson2016-08-285-1234/+6
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc3.git2.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc3.git2.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-267-56/+42
|\|
| * Linux v4.8-rc3-39-g61c0457Justin M. Forbes2016-08-253-3/+6
| |
| * add 32-bit ARM opcodes.h to kernel-devel rpmJeffrey Bastian2016-08-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | 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>
| * Config updates and fixes for ARMv7 platformsPeter Robinson2016-08-255-53/+34
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc3.git1.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc3.git1.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-2415-112/+932
|\|
| * Linux v4.8-rc3-26-gcad9d20Justin M. Forbes2016-08-248-64/+186
| |
| * Fix for inabiltiy to send zero sized UDP packets (rhbz 1365940)Laura Abbott2016-08-232-0/+79
| |
| * Adjust max CPUs on ARM platforms to reflect newer real world hardwarePeter Robinson2016-08-234-1/+3
| |
| * Move to upstream patches for ACPI SPCR (serial console)Peter Robinson2016-08-233-47/+599
| |
| * Qualcomm QDF2432 errata fixPeter Robinson2016-08-232-0/+65
| |
* | Merge remote-tracking branch 'origin/master'Thorsten Leemhuis2016-08-231-8/+14
|\|
| * Don't use early_param if fbcon is a moduleJosh Boyer2016-08-221-8/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc3.git0.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc3.git0.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc3.git0.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc3.git0.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-228-67/+300
|\|
| * Linux v4.8-rc3Justin M. Forbes2016-08-227-67/+71
| |
| * Add fix for RTC crash on ARMv7 am33xx devicesPeter Robinson2016-08-202-0/+229
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc2.git4.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc2.git4.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc2.git4.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc2.git4.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-2010-148/+358
|\|
| * Linux v4.8-rc2-348-g6040e57Justin M. Forbes2016-08-194-70/+6
| |
| * Linux v4.8-rc2-232-g3408fefJustin M. Forbes2016-08-194-59/+6
| |
| * Minor Tegra changesPeter Robinson2016-08-194-3/+5
| |
| * add CVE numberJustin M. Forbes2016-08-181-2/+2
| |
| * Fix typo in CVE numberJosh Boyer2016-08-181-1/+1
| |
| * Linux v4.8-rc2-42-g5ff132c spec fileJustin M. Forbes2016-08-171-1/+8
| |
| * Fix sourcesJustin M. Forbes2016-08-171-1/+0
| |
| * Linux v4.8-rc2-42-g5ff132cJustin M. Forbes2016-08-174-19/+338
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc2.git1.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc2.git1.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-178-64/+244
|\|
| * Actually add the patchJustin M. Forbes2016-08-161-0/+167
| |
| * Linux v4.8-rc2-17-gae5d68bJustin M. Forbes2016-08-167-64/+77
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc2.git0.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc2.git0.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc2.git0.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc2.git0.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-156-67/+70
|\|
| * Linux v4.8-rc2Justin M. Forbes2016-08-156-67/+70
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc1.git5.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc1.git5.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc1.git5.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc1.git5.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-1311-69/+109
|\|
| * Linux v4.8-rc1-166-g9909170Justin M. Forbes2016-08-125-7/+11
| |
| * Linux v4.8-rc1-88-g3b3ce01Justin M. Forbes2016-08-114-50/+6
| |