Discussion:
[meta-freescale] [PATCH 1/3] Add missing overrides to MACHINEOVERRIDES_EXTENDER_FILTER_OUT_use-mainline-bsp
Andreas Müller
2018-09-14 09:48:48 UTC
Permalink
Just in case somebody tries to build machines without BLOBs using these
overrides.

Signed-off-by: Andreas Müller <***@gmail.com>
---
conf/machine/include/imx-base.inc | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc
index b0474891..81f521e2 100644
--- a/conf/machine/include/imx-base.inc
+++ b/conf/machine/include/imx-base.inc
@@ -80,11 +80,18 @@ MACHINEOVERRIDES_EXTENDER_FILTER_OUT_use-mainline-bsp = " \
mx6dl \
mx6sx \
mx6sl \
+ mx6sll \
mx6ul \
mx6ull \
\
mx7 \
mx7d \
+ mx7ulp \
+ \
+ mx8 \
+ mx8qm \
+ mx8mq \
+ mx8qxp \
"

# Sub-architecture support
--
2.14.4

--
Andreas Müller
2018-09-14 09:48:49 UTC
Permalink
systemd in default oe-core configuration complains:

| Sep 11 15:36:33 imx6qdl-variscite-som systemd[1]: Starting Hostname Service...
| Sep 11 15:36:33 imx6qdl-variscite-som systemd[296]: systemd-hostnamed.service: PrivateNetwork=yes is configured, but the kernel does not support network namespaces, ignorin>

To enable it needs CONFIG_NAMESPACES=y either.

Same as [1]

[1] https://github.com/Freescale/linux-fslc/pull/35

Signed-off-by: Andreas Müller <***@gmail.com>
---
recipes-kernel/linux/linux-fslc/defconfig | 2 ++
1 file changed, 2 insertions(+)

diff --git a/recipes-kernel/linux/linux-fslc/defconfig b/recipes-kernel/linux/linux-fslc/defconfig
index abdc24e4..b3c6e4d3 100644
--- a/recipes-kernel/linux/linux-fslc/defconfig
+++ b/recipes-kernel/linux/linux-fslc/defconfig
@@ -6,6 +6,8 @@ CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_LOG_BUF_SHIFT=18
CONFIG_CGROUPS=y
+CONFIG_NAMESPACES=y
+CONFIG_NET_NS=y
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_EXPERT=y
--
2.14.4

--
Andreas Müller
2018-09-14 09:48:50 UTC
Permalink
This is necessary to support network over bluetooth:

| Sep 11 15:36:33 imx6qdl-variscite-som bluetoothd[281]: kernel lacks bnep-protocol support
| Sep 11 15:36:33 imx6qdl-variscite-som bluetoothd[281]: System does not support network plugin

Same as [1]

[1] https://github.com/Freescale/linux-fslc/pull/35

Signed-off-by: Andreas Müller <***@gmail.com>
---
recipes-kernel/linux/linux-fslc/defconfig | 1 +
1 file changed, 1 insertion(+)

diff --git a/recipes-kernel/linux/linux-fslc/defconfig b/recipes-kernel/linux/linux-fslc/defconfig
index b3c6e4d3..2880385a 100644
--- a/recipes-kernel/linux/linux-fslc/defconfig
+++ b/recipes-kernel/linux/linux-fslc/defconfig
@@ -84,6 +84,7 @@ CONFIG_BT=y
CONFIG_BT_HCIUART=y
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_LL=y
+CONFIG_BT_BNEP=m
CONFIG_CFG80211=y
CONFIG_CFG80211_WEXT=y
CONFIG_MAC80211=y
--
2.14.4

--
Loading...