aboutsummaryrefslogtreecommitdiffstats
path: root/classes/devshell.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2007-04-09 21:50:12 +0000
committerRichard Purdie <rpurdie@rpsys.net>2007-04-09 21:50:12 +0000
commitc89f99d26d4c54205988d91ca2417075ba737bc8 (patch)
treec376ce2e5f232ac3f60db7a4c61a124dcbf975f8 /classes/devshell.bbclass
parent161e164dd087fecf82614aa7f5515f7d46b3ebad (diff)
downloadopenembedded-c89f99d26d4c54205988d91ca2417075ba737bc8.tar.gz
patch.bbclass/devshell.bbclass: Switch to new form of interactive task handling as per RFC which is more compatible with bitbake 1.8+
Diffstat (limited to 'classes/devshell.bbclass')
-rw-r--r--classes/devshell.bbclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/devshell.bbclass b/classes/devshell.bbclass
index 14f957e12b..06152ef8bc 100644
--- a/classes/devshell.bbclass
+++ b/classes/devshell.bbclass
@@ -2,9 +2,10 @@ EXTRA_OEMAKE[export] = "1"
do_devshell[dirs] = "${S}"
do_devshell[nostamp] = "1"
-do_devshell[interactive] = "1"
+
devshell_do_devshell() {
- bash -i
+ export TERMWINDOWTITLE="Bitbake Developer Shell"
+ ${TERMCMD}
}
addtask devshell after do_patch