[linux-yocto] [yocto-kernel-cache][PATCH 3/3] features/dca/dca.cfg: fix CONFIG_IXGBE_DCA can not enble if build ixgbe in kernel

Liwei Song liwei.song at windriver.com
Wed Nov 15 17:47:51 PST 2017


if we set CONFIG_IXGBE=y to build ixgbe in kernel, CONFIG_IXGBE_DCA can not be
enabled since dependcy: IXGBE_DCA depend (IXGBE [=y]!=y || DCA [=y]!=m)
although we set CONFIG_IXGBE_DCA=y in ixgbe.cfg; This will led a kernel config
check warning as below:
Requested value: CONFIG_IXGBE_DCA=y
Actual value:

To make CONFIG_IXGBE_DCA work, set CONFIG_DCA=y and CONFIG_INTEL_IOATDMA=y
this also can aviod the check warning.

Signed-off-by: Liwei Song <liwei.song at windriver.com>
---
 features/dca/dca.cfg | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/features/dca/dca.cfg b/features/dca/dca.cfg
index 3090212d7021..7c804b6e1408 100644
--- a/features/dca/dca.cfg
+++ b/features/dca/dca.cfg
@@ -1,4 +1,4 @@
-CONFIG_INTEL_IOATDMA=m
-CONFIG_DCA=m
+CONFIG_INTEL_IOATDMA=y
+CONFIG_DCA=y
 
 CONFIG_IGB_DCA=y
-- 
2.13.3



More information about the linux-yocto mailing list