summaryrefslogtreecommitdiffstats
path: root/configs
Commit message (Collapse)AuthorAgeFilesLines
* Set CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 on x86_64 only (rhbz 1525561)Jeremy Cline2017-12-152-1/+2
|
* Enable CONFIG_REGULATOR on x86_64Hans de Goede2017-12-1539-0/+39
|
* Linux v4.15-rc2-174-g328b4ed93b69Laura Abbott2017-12-062-0/+2
|
* Enable HID_CP2112Peter Robinson2017-12-061-1/+1
|
* enable GPIO_PCF857X for all ARM archesPeter Robinson2017-12-061-0/+0
|
* minor IrDA cleanup, add fix for Pine64 boot already in 4.14Peter Robinson2017-12-061-0/+1
|
* Disable IrDA (broken, being dropped upstream)Peter Robinson2017-12-0636-36/+1
|
* Minor updates for sun4i drm driversPeter Robinson2017-12-043-1/+1
|
* enable Simple PM Bus on ARMPeter Robinson2017-12-041-0/+1
|
* Linux v4.15-rc1Laura Abbott2017-11-272-0/+2
|
* explicitly enable reset simple on ARMPeter Robinson2017-11-271-0/+1
|
* Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/kernelPeter Robinson2017-11-232-0/+2
|\
| * Config options for non debug kernelsJustin M. Forbes2017-11-212-0/+2
| |
* | Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/kernelPeter Robinson2017-11-2136-3/+36
|\|
| * Enable driver for the Behringer BCD 2000 (rhbz 1514945)Laura Abbott2017-11-201-1/+1
| |
| * Linux v4.14-12891-gc8a0739b185dLaura Abbott2017-11-209-2/+9
| | | | | | | | Also turn off a powerpc crypto drive that was failing to compile
| * Linux v4.14-12375-g2dcd9c71c1ffLaura Abbott2017-11-1726-0/+26
| |
* | drop deprecated optionPeter Robinson2017-11-171-1/+0
|/
* Filtering really just gets too complicated. This is getting turned off.Laura Abbott2017-11-161-1/+1
|
* Turn of this option since it depends on the IR subsystemLaura Abbott2017-11-161-1/+1
|
* Turn off CONFIG_DRM_SIL_SII8620 since it has strange dependenciesLaura Abbott2017-11-161-1/+1
|
* Linux v4.14-9248-ge60e1ee60630Laura Abbott2017-11-1627-0/+27
|
* Enable USB autosuspend for USB bluetooth receivers by default, useHans de Goede2017-11-161-0/+1
| | | | btusb.enable_autosuspend=n on the kernel cmdline to disable
* Disable IPX and NCPFSLaura Abbott2017-11-152-2/+2
| | | | | | | These are being deprecated by the kernel community https://marc.info/?l=linux-netdev&m=151067745601327&w=2 Turn them off in advance.
* Linux v4.14-4050-g37cb8e1f8e10Laura Abbott2017-11-1518-0/+18
|
* Linux v4.14-2229-g894025f24bd0Laura Abbott2017-11-1415-0/+15
|
* Linux v4.14-104-g1e19bded7f5dLaura Abbott2017-11-134-2/+4
| | | | | Also flip MAXSMP for generic vs. debug config (see f4861c48b88ff145cc8b50655b61d6c6a411f073)
* configs: Update scripts and spec file with layout changesDon Zickus2017-11-133-25/+207
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the configs in the new place, update the scripts to find them and utilize the base-generic and generic heirarchy to apply configs and overrides. Implement new process_configs.sh script that post-process the config changes in a simple script and remove those commands from the spec file. Add option flags to preserve functionality. config_generation is a simple rename of baseconfig -> generic and debugconfig -> debug and arm64 -> aarach64. build_configs.sh is modified to find configs in generic and base-generic and then apply base-generic first and if any generic files, apply those next. The generic directory is used as an overrides and is expected to be empty for Fedora initially. kernel.spec is modified to use process_configs.sh instead of all the commands in the spec file. Enabled spec options are translated to script options. The config manipulation is moved to be grouped with all config manipulation commands. This makes 'cd configs/' simpler. Now all config scripts and executiion are done in configs/ directory. v1 -> v2: * the scripts were not working with SUBARCH correctly * checkoptions was using wrong comparison file * passing wrong kernel version to process_configs in spec file v2 -> v3: (incorporate Laura A's feedback) * update README.txt * fix build_configs.sh warnings * Output info message on listnewconfig failure
* configs: Create symlinks to used scriptsDon Zickus2017-11-132-0/+125
| | | | | | | | | As part of the config re-organization, put the scripts needed to create the config files in the configs/ directory. At the top level create symlinks for those scripts. This allows the kernel.spec file to find the scripts it needs and work correctly. No code changes.
* configs: Rename config directories to sub-directoryDon Zickus2017-11-1310155-0/+10158
| | | | | | | | | | | | | | | | | | | | | | 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.
* Change method of configuration generationLaura Abbott2016-12-061-0/+66
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.