summaryrefslogtreecommitdiffstats
path: root/debugconfig
Commit message (Collapse)AuthorAgeFilesLines
* configs: Rename config directories to sub-directoryDon Zickus2017-11-1380-80/+0
| | | | | | | | | | | | | | | | | | | | | | As part of an effort to foster better cross collaboration with internal Red Hat kernels, align the configs layout to match that kernel. This will allow Red Hat engineers to provide easier guidance on how to set various config options. In addition, the scripts that process the config options will migrate to the configs/ directory too in later patches. Future config workflows will stage all work in the configs/ area. A simple diff between the kernels will easily expose which config options are different. Reading the comments in the file provides guidance to Fedora to determine if that kernel should make a similar change or not. Rename debugconfig -> configs/base-debug Rename baseconfig -> configs/base-generic Rename configs/base-generic/arm/arm64 -> configs/base-generic/arm/aarch64 No code changes made.
* Stop setting CONFIG_MAXSMP and adjust NR_CPUSLaura Abbott2017-10-311-0/+1
| | | | | | | During the Kconfig factor, CONFIG_MAXSMP was set for all builds instead of just debug builds. This bumps the NR_CPUs up to 8192 which is far more than anyone actually needs for Fedora. Stop setting CONFIG_MAXSMP on non-debug configs and adjust NR_CPUs back to what it was before.
* disable CONFIG_DMADEVICES_DEBUG on all arm targetsLaura Abbott2017-08-091-0/+0
|
* Linux v4.12-3441-g1996454Laura Abbott2017-07-051-0/+1
|
* Linux v4.10-1242-g9763dd6Laura Abbott2017-02-211-0/+1
|
* increase KMEMLEAK_EARLY_LOG_SIZE (rhbz 1201179)Justin M. Forbes2017-02-061-1/+1
|
* Fix nodebug kernels, CPUMASK_OFFSTACK is always selected with MAXSMPJustin M. Forbes2017-01-031-1/+0
|
* Change method of configuration generationLaura Abbott2016-12-0678-0/+78
The existing method of managing configuration files gets unweildy. Changing individual lines in text files gets difficult without manual organization. Switch to a method of configuration generation that's inspired from the method used inside Red Hat. Each configuration option gets its own file which are then combined to form the configuration files. This makes confirming what's actually enabled much easier.