diff options
author | Mathias Kresin <dev@kresin.me> | 2017-10-03 14:58:53 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-10-04 20:08:15 +0200 |
commit | 66a0f3a39709839c1e46141f5e431974e4bd4cdf (patch) | |
tree | 90cf537aa039eb8abb8223196d6377efdeee471e /target/linux/lantiq/xway | |
parent | 77fee9bcce5cb118be6e1f8168cf5a0fe6dcf2b7 (diff) | |
download | upstream-66a0f3a39709839c1e46141f5e431974e4bd4cdf.tar.gz upstream-66a0f3a39709839c1e46141f5e431974e4bd4cdf.tar.bz2 upstream-66a0f3a39709839c1e46141f5e431974e4bd4cdf.zip |
lantiq: select PCI support in subtargets
AmazonSE and Falcon do not have support for PCI and it can't be
unselected in the subtarget kernel config. This way the enabled PCI
support is inherit from the higher level config to the subtarget.
If CONFIG_PCI is selected, PCI_SUPPORT will be autoselected as well and
all packages depending on this config symbol will be build and at least
some of them fail due to missing pci functions.
The issue can be observed if all kmods and all non-shared packages are
build. Fix the issue by enabling PCI support only in subtargets with
PCI support.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/lantiq/xway')
-rw-r--r-- | target/linux/lantiq/xway/config-default | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/lantiq/xway/config-default b/target/linux/lantiq/xway/config-default index fde071cebe..79064ccc02 100644 --- a/target/linux/lantiq/xway/config-default +++ b/target/linux/lantiq/xway/config-default @@ -1,5 +1,6 @@ CONFIG_ADM6996_PHY=y CONFIG_AR8216_PHY=y +CONFIG_BLK_MQ_PCI=y CONFIG_CRC16=y CONFIG_CRYPTO_DEFLATE=y CONFIG_CRYPTO_LZO=y @@ -23,6 +24,13 @@ CONFIG_MTD_UBI_BLOCK=y # CONFIG_MTD_UBI_GLUEBI is not set CONFIG_MTD_UBI_WL_THRESHOLD=4096 CONFIG_NLS=y +CONFIG_OF_ADDRESS_PCI=y +CONFIG_OF_PCI=y +CONFIG_OF_PCI_IRQ=y +CONFIG_PCI=y +# CONFIG_PCIE_LANTIQ is not set +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_LANTIQ=y CONFIG_RTL8306_PHY=y CONFIG_RTL8366S_PHY=y CONFIG_RTL8367B_PHY=y |