summaryrefslogtreecommitdiffstats
path: root/baseconfig/powerpc
Commit message (Collapse)AuthorAgeFilesLines
* configs: Rename config directories to sub-directoryDon Zickus2017-11-13398-399/+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.
* drop ppc64p7 kernel options, not supported in F-26+ and never in dnf (NFC)Peter Robinson2017-10-016-6/+0
|
* Raspberry Pi serial console fixes, minor other Pi improvements, Various ARM ↵Peter Robinson2017-09-112-1/+0
| | | | cleanups, build mmc/pwrseq non modular
* Linux v4.13-9219-g015a9e66b9b8Justin M. Forbes2017-09-082-0/+2
|
* Linux v4.13-4257-ge7d0c41ecc2eJustin M. Forbes2017-09-061-0/+1
|
* disable SWIOTLB on Power (#1480380)Dan Horák2017-08-111-1/+1
| | | | All supported platforms have IOMMU, thus disable.
* Disable MEMORY_HOTPLUG_DEFAULT_ONLINE on ppc64 (rhbz 1476380)Josh Boyer2017-08-111-1/+1
|
* minor arm cleanupPeter Robinson2017-07-151-1/+0
|
* Linux v4.12-11618-gb86faee6d111Laura Abbott2017-07-141-0/+1
|
* Linux v4.12-10317-gaf3c8d9Laura Abbott2017-07-102-0/+2
|
* Updates for ARM devices, Build ARM Chromebook specifics on all ARM architecturesPeter Robinson2017-05-291-1/+0
|
* Linux v4.12-rc1Justin M. Forbes2017-05-153-0/+3
|
* minor cleanup, add explicit declare of a couple of optionsPeter Robinson2017-05-151-1/+0
|
* Linux v4.11-11413-g2868b25Justin M. Forbes2017-05-092-1/+2
|
* Linux v4.11-10603-g13e0988Justin M. Forbes2017-05-081-1/+0
|
* Linux v4.11-7650-ga1be8edJustin M. Forbes2017-05-041-0/+1
|
* Linux v4.11-4395-g89c9feaJustin M. Forbes2017-05-032-0/+2
|
* Enable sound SoC on aarch64, Update some ARM patches to latest upstream, ↵Peter Robinson2017-04-261-1/+0
| | | | small cleanups
* enable THP on Power (#1434007)Dan Horák2017-03-295-1/+5
| | | | [labbott: Build the kernel configs, add rpm changelog)
* - Enable Tiny DRM on ARM platformsPeter Robinson2017-03-012-0/+2
| | | | | | - ARM config updates - General config cleanups - Add patch to fix desktop lockups on RPi (vc4) RHBZ# 1389163
* s390x: disable unneeded network driversDan Horák2017-02-272-0/+2
| | | | | | | | | | s390x: disable unneeded SCSI drivers s390x: disable unneeded miscellaneous drivers s390x,powerpc: enable GenWQE PCIe Accelerator driver s390x: disable unneeded miscellaneous drivers 2 s390x: disable unneeded miscellaneous drivers 3 [labbott: Squashed changes]
* minor config cleanups (NFC)Peter Robinson2017-02-211-1/+0
|
* Linux v4.10-rc1 (didn't adjust debug options), ARM config updates, minor ↵Peter Robinson2016-12-278-7/+1
| | | | general config cleanups
* Add script to check config generationLaura Abbott2016-12-2229-12/+29
| | | | | | | | | | | 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-06379-0/+380
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.