diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2015-01-07 16:15:28 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-01-07 22:36:56 +0100 |
commit | 727f58044e3ae3c861acff78c369b400e0334734 (patch) | |
tree | 1e429dc2fcc5038cd11e910d7359d0b9d6ca4776 | |
parent | 53f5e83c8710d8223028f36df417c73b94aac8b4 (diff) | |
download | buildroot-727f58044e3ae3c861acff78c369b400e0334734.tar.gz buildroot-727f58044e3ae3c861acff78c369b400e0334734.zip |
linux: hide custom patches when using a local tree
When using a custom local tree, we're using the OVERRIDE_SRCDIR
internally, which means we do not apply patches. Since this is the
expected behavior, make BR2_LINUX_KERNEL_PATCH and
BR2_LINUX_KERNEL_CUSTOM_LOCAL options exclusive.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | linux/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/Config.in b/linux/Config.in index bf30426e15..13ae1acbeb 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -119,6 +119,7 @@ config BR2_LINUX_KERNEL_VERSION config BR2_LINUX_KERNEL_PATCH string "Custom kernel patches" + depends on !BR2_LINUX_KERNEL_CUSTOM_LOCAL help A space-separated list of patches to apply to the kernel. Each patch can be described as an URL, a local file |