Anas Nashif | 7d4163d | 2015-08-22 14:43:07 -0400 | [diff] [blame] | 1 | # Kconfig - general configuration options |
| 2 | |
| 3 | # |
| 4 | # Copyright (c) 2014-2015 Wind River Systems, Inc. |
Daniel Leung | 8df10d4 | 2016-03-25 14:30:50 -0700 | [diff] [blame] | 5 | # Copyright (c) 2016 Intel Corporation |
Anas Nashif | 7d4163d | 2015-08-22 14:43:07 -0400 | [diff] [blame] | 6 | # |
Javier B Perez Hernandez | f7fffae | 2015-10-06 11:00:37 -0500 | [diff] [blame] | 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
Anas Nashif | 7d4163d | 2015-08-22 14:43:07 -0400 | [diff] [blame] | 10 | # |
Javier B Perez Hernandez | f7fffae | 2015-10-06 11:00:37 -0500 | [diff] [blame] | 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
Anas Nashif | 7d4163d | 2015-08-22 14:43:07 -0400 | [diff] [blame] | 12 | # |
Javier B Perez Hernandez | f7fffae | 2015-10-06 11:00:37 -0500 | [diff] [blame] | 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
Anas Nashif | 7d4163d | 2015-08-22 14:43:07 -0400 | [diff] [blame] | 18 | # |
Anas Nashif | 7d4163d | 2015-08-22 14:43:07 -0400 | [diff] [blame] | 19 | config KERNELVERSION |
Kumar Gala | 9ec2f3b | 2016-05-24 18:17:13 -0500 | [diff] [blame] | 20 | string |
| 21 | option env="KERNELVERSION" |
Anas Nashif | 7d4163d | 2015-08-22 14:43:07 -0400 | [diff] [blame] | 22 | |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 23 | source "arch/Kconfig" |
| 24 | |
| 25 | source "kernel/Kconfig" |
| 26 | |
| 27 | source "drivers/Kconfig" |
| 28 | |
| 29 | source "net/Kconfig" |
| 30 | |
| 31 | source "misc/Kconfig" |
| 32 | |
Anas Nashif | 0b2c44a | 2016-05-14 23:10:51 -0400 | [diff] [blame] | 33 | source "lib/Kconfig" |
| 34 | |
Ramesh Thomas | cc74572 | 2016-07-25 16:20:54 -0700 | [diff] [blame] | 35 | source "fs/Kconfig" |
| 36 | |
Kumar Gala | 7584a12 | 2016-05-24 14:23:26 -0500 | [diff] [blame] | 37 | source "ext/Kconfig" |
| 38 | |
Adrian Bradianu | 7a16ade | 2016-06-01 14:20:02 +0300 | [diff] [blame] | 39 | source "usb/Kconfig" |
| 40 | |
Jaakko Hannikainen | 9167a03 | 2016-08-22 14:51:46 +0300 | [diff] [blame^] | 41 | source "tests/Kconfig" |
| 42 | |
Daniel Leung | 8df10d4 | 2016-03-25 14:30:50 -0700 | [diff] [blame] | 43 | # |
| 44 | # The following are for Kconfig files for default values only. |
| 45 | # These should be parsed at the end. |
| 46 | # |
Anas Nashif | 3f3dc59 | 2016-09-10 09:55:55 -0400 | [diff] [blame] | 47 | # Board defaults should be parsed after SoC defaults |
| 48 | # because board usually overrides SoC values. |
Daniel Leung | 8df10d4 | 2016-03-25 14:30:50 -0700 | [diff] [blame] | 49 | # |
Daniel Leung | 8df10d4 | 2016-03-25 14:30:50 -0700 | [diff] [blame] | 50 | source "arch/*/soc/*/Kconfig.defconfig" |
Anas Nashif | 3f3dc59 | 2016-09-10 09:55:55 -0400 | [diff] [blame] | 51 | source "boards/*/Kconfig.defconfig" |