summaryrefslogtreecommitdiffstats
path: root/baseconfig/x86/x86_64
Commit message (Collapse)AuthorAgeFilesLines
* remove baseconfig, obsoletePeter Robinson2018-01-081-1/+0
|
* Oh whoops this was untrackedLaura Abbott2018-01-041-0/+1
|
* configs: Rename config directories to sub-directoryDon Zickus2017-11-13227-227/+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-1/+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.
* Linux v4.14-rc5-31-g73d3393ada4fJustin M. Forbes2017-10-191-0/+1
|
* Linux v4.13-11197-gf007cad159e9Justin M. Forbes2017-09-113-0/+3
|
* Linux v4.13-4257-ge7d0c41ecc2eJustin M. Forbes2017-09-063-0/+3
|
* Add missing config dependencyLaura Abbott2017-08-171-0/+1
|
* Enable CONFIG_DRM_VBOXVIDEO=m on x86, CONFIG_R8188EU=m on x86_64Hans de Goede2017-08-161-0/+1
|
* Add missing config filesLaura Abbott2017-07-311-0/+1
|
* Linux v4.12-10317-gaf3c8d9Laura Abbott2017-07-102-2/+0
|
* Linux v4.12-3441-g1996454Laura Abbott2017-07-056-6/+0
|
* minor config cleanups (NFC)Peter Robinson2017-06-281-1/+0
|
* Improve Bay and Cherry Trail device supportHans de Goede2017-06-2333-0/+33
| | | | | | | | - Enable AXP288 PMIC support on x86_64 for battery charging and monitoring support on Bay and Cherry Trail tablets and laptops - Enable various drivers for peripherals found on Bay and Cherry Trail tablets - Add some small patches fixing suspend/resume touchscreen and accelerometer issues on various Bay and Cherry Trail tablets
* Updates for ARM devices, Build ARM Chromebook specifics on all ARM architecturesPeter Robinson2017-05-291-1/+0
|
* Linux v4.11-10603-g13e0988Justin M. Forbes2017-05-081-1/+0
|
* Linux v4.11-7650-ga1be8edJustin M. Forbes2017-05-041-0/+1
|
* Enable sound SoC on aarch64, Update some ARM patches to latest upstream, ↵Peter Robinson2017-04-261-1/+0
| | | | small cleanups
* Linux v4.11-rc4-18-gad0376eLaura Abbott2017-03-281-0/+1
|
* Linux v4.10-10320-ge5d56efLaura Abbott2017-02-271-0/+1
|
* Linux v4.10-2512-g7bb0338Laura Abbott2017-02-221-1/+0
|
* Linux v4.10-rc1 (didn't adjust debug options), ARM config updates, minor ↵Peter Robinson2016-12-271-1/+0
| | | | general config cleanups
* Add script to check config generationLaura Abbott2016-12-2219-3/+19
| | | | | | | | | | | The kernel configuration generation currently checks to make sure every option is defined with listnewconfig. It does not check that each option is the same as listnewconfig. This can lead to odd situations where the Fedora configuration does not match what's actually present in the generated config. Add a script to check for these kinds of changes. Based on work done by Miguel Flores Silverio <floresmigu3l@gmail.com>
* Change method of configuration generationLaura Abbott2016-12-06179-0/+179
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.