From: Paul Eggleton Date: Tue, 30 Apr 2013 14:30:10 +0000 (+0100) Subject: bitbake.conf: set SERIAL_CONSOLES from SERIAL_CONSOLE by default X-Git-Tag: 2015-4~6658 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3f0d665384e6d1b7aa2854a9cc4f13e0961bacb7;p=openembedded-core.git bitbake.conf: set SERIAL_CONSOLES from SERIAL_CONSOLE by default This is the first step in deprecating SERIAL_CONSOLE without affecting machine configurations that still use it. Signed-off-by: Paul Eggleton Signed-off-by: Saul Wold --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 075f812f2b..d5e923b713 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -745,6 +745,9 @@ COMBINED_FEATURES = "\ ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "wifi", d)}" COMBINED_FEATURES[vardeps] += "DISTRO_FEATURES MACHINE_FEATURES" +SERIAL_CONSOLE ??= "" +SERIAL_CONSOLES ??= "${@d.getVar('SERIAL_CONSOLE', True).replace(' ', ';')}" + # Make sure MACHINE isn't exported # (breaks binutils at least) MACHINE[unexport] = "1"