summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
| |
| * Fix for crash seen with open stack (rhbz 1361414)Laura Abbott2016-08-112-0/+59
| |
| * Enable Atmel i2c TPM on ARM platformsPeter Robinson2016-08-112-0/+2
| |
| * Enable NUMA on aarch64, Enable Cavium ThunderXPeter Robinson2016-08-114-13/+24
| |
| * Disable long running watchdog in VM patch (in theory fixed)Peter Robinson2016-08-111-1/+3
| |
| * Minor ARM config updatesPeter Robinson2016-08-112-2/+8
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc1.git3.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc1.git3.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-1111-174/+308
|\|
| * Cleanup patches/PatchList.txtLaura Abbott2016-08-102-109/+65
| | | | | | | | | | Now that we have a script to check the state of the tree, make it useful again.
| * Script to highlight state of patches in treeMiguel Flores Silverio2016-08-101-0/+113
| | | | | | | | | | | | | | | | The intent for this script is to make easier patch management and documentation. [labbott: Tweak help text] Signed-off-by: Miguel Flores Silverio <floresmigu3l@gmail.com>
| * Linux v4.8-rc1-70-g9512c47Justin M. Forbes2016-08-103-3/+6
| |
| * Fix false positive VM_BUG() in page_add_file_rmap (rhbz 1365686)Laura Abbott2016-08-102-0/+50
| |
| * Linux v4.8-rc1-53-ga0cba21Justin M. Forbes2016-08-103-3/+6
| |
| * Don't forget the actual patchJustin M. Forbes2016-08-091-0/+1
| |
| * Linux v4.8-rc1-19-g81abf25Justin M. Forbes2016-08-095-64/+69
| |
| * Build CONFIG_POWERNV_CPUFREQ in on ppc64* (rhbz 1351346)Josh Boyer2016-08-082-1/+4
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc1.git0.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc1.git0.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc1.git0.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc1.git0.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-089-66/+80
|\|
| * Linux v4.8-rc1Justin M. Forbes2016-08-089-66/+80
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc0.git7.1.vanilla.knurd.1.fc26kernel-4.8.0-0.rc0.git7.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc0.git7.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc0.git7.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-076-31/+38
|\|
| * kernel.spec: Fix up mixed indentsJason Tibbitts2016-08-051-10/+10
| | | | | | | | | | | | | | | | | | | | | | There are several instances of mixed spaces and tabs throughout the kernel. This makes vim yell and rpmlint complain, so.... It doesn't look like there was any consistency in the expected tab widths used, so I just tried to line things up as it appears to have been intended. [labbott: Tweaked commit text, fixed ever popular kenrel typo]
| * kernel.spec: Fix build dep on libelf-develJason Tibbitts2016-08-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | The dependency on libelf-devel is wrapped in "%if %{with_perf}". However, if you're building without perf (as fast-build.sh does) then you don't have this installed and the build will complain: Makefile:1037: "Cannot use CONFIG_STACK_VALIDATION, please install libelf-dev, libelf-devel or elfutils-libelf-devel" This just lifts the dependency out of the %if section.
| * There are a few instances if trailing whitespace throughout the spec.Jason Tibbitts2016-08-051-7/+7
| | | | | | | | | | It's not uncommon for editors to yell about this (such as vim with syntastic running rpmlint) and the yelling can be annoying so...
| * Linux v4.7-11891-gdd7fd3aLaura Abbott2016-08-056-12/+19
| |
* | merge orgin/master; disable iio tools, as they do not build on f23 and f24kernel-4.8.0-0.rc0.git6.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc0.git6.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc0.git6.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-08-0441-5852/+254
|\|
| * Linux v4.7-11544-g96b5852Laura Abbott2016-08-034-56/+6
| |
| * update script to add a new patchMiguel Flores Silverio2016-08-031-17/+38
| | | | | | | | | | | | | | It enables the builid macro and uses the name of the patch as label instead of using rpmdev-bumpspec. Signed-off-by: Miguel Flores Silverio <floresmigu3l@gmail.com>
| * Linux v4.7-11470-gd52bd54Laura Abbott2016-08-0311-1868/+49
| |
| * Sync 2 skylake i915 bug-fix patches with latest upstream versionHans de Goede2016-08-024-275/+69
| |
| * Linux v4.7-10753-g731c7d3Laura Abbott2016-08-0231-3641/+98
| |
* | Merge remote-tracking branch 'origin/master'kernel-4.8.0-0.rc0.git3.1.vanilla.knurd.1.fc25kernel-4.8.0-0.rc0.git3.1.vanilla.knurd.1.fc24kernel-4.8.0-0.rc0.git3.1.vanilla.knurd.1.fc23Thorsten Leemhuis2016-07-3025-192/+774
|\|