summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Barker <pbarker@toganlabs.com>2018-04-16 16:24:57 +0000
committerAndrei Gherzan <andrei@gherzan.com>2018-04-23 14:08:04 +0100
commit2c7eab2d0dedc592864261cd3f7f96581630376e (patch)
tree2a3f615ad228ba6599e6c2f87acc15ac500b93bc
parentd2ead7c039629eeb5f7513f5ef17e23c5d8ea685 (diff)
downloadmeta-raspberrypi-2c7eab2d0dedc592864261cd3f7f96581630376e.tar.gz
linux-raspberrypi: Drop inappropriate forced settings
CONFIG_BLK_DEV_DRBD: Deciding whether to use the in-kernel DRBD module or the external drbd recipe in meta-networking is a policy decision and doesn't belong in our BSP layer. CONFIG_LEGACY_PTYS: These are legacy for a reason. They're not enabled in the defconfig so they shouldn't be required for rpi devices. Let's drop this here, it can be added back in a distro layer where (if) needed. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
-rw-r--r--recipes-kernel/linux/linux-raspberrypi.inc4
1 files changed, 0 insertions, 4 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi.inc b/recipes-kernel/linux/linux-raspberrypi.inc
index 5872b64..73d4d62 100644
--- a/recipes-kernel/linux/linux-raspberrypi.inc
+++ b/recipes-kernel/linux/linux-raspberrypi.inc
@@ -111,10 +111,6 @@ do_configure_prepend() {
111 kernel_configure_variable SQUASHFS y 111 kernel_configure_variable SQUASHFS y
112 kernel_configure_variable UBIFS_FS y 112 kernel_configure_variable UBIFS_FS y
113 fi 113 fi
114 # Activate CONFIG_LEGACY_PTYS
115 kernel_configure_variable LEGACY_PTYS y
116 # this module is built externally via drbd-utils
117 kernel_configure_variable BLK_DEV_DRBD n
118 114
119 # Activate the configuration options for VC4 115 # Activate the configuration options for VC4
120 VC4GRAPHICS="${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "1", "0", d)}" 116 VC4GRAPHICS="${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "1", "0", d)}"