[master,kirkstone] devshell.bbclass: Allow devshell & pydevshell to use the network

Message ID 20220425212611.17594-1-pkj@axis.com
State Accepted, archived
Commit ba53fc3bcecfe32401471dc1008c7ead96504150
Headers show
Series [master,kirkstone] devshell.bbclass: Allow devshell & pydevshell to use the network | expand

Commit Message

Peter Kjellerstedt April 25, 2022, 9:26 p.m. UTC
Otherwise it will fail if using OE_TERMINAL = "xterm" with the not so
helpful error:

  xterm: Xt error: Can't open display: localhost:0.0

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/classes/devshell.bbclass | 2 ++
 1 file changed, 2 insertions(+)

Patch

diff --git a/meta/classes/devshell.bbclass b/meta/classes/devshell.bbclass
index 75604d0c07..f3cabe45e2 100644
--- a/meta/classes/devshell.bbclass
+++ b/meta/classes/devshell.bbclass
@@ -23,6 +23,7 @@  addtask devshell after do_patch do_prepare_recipe_sysroot
 DEVSHELL_STARTDIR ?= "${S}"
 do_devshell[dirs] = "${DEVSHELL_STARTDIR}"
 do_devshell[nostamp] = "1"
+do_devshell[network] = "1"
 
 # devshell and fakeroot/pseudo need careful handling since only the final
 # command should run under fakeroot emulation, any X connection should
@@ -156,3 +157,4 @@  python do_pydevshell() {
 addtask pydevshell after do_patch
 
 do_pydevshell[nostamp] = "1"
+do_pydevshell[network = "1"