diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-04-09 21:50:12 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-04-09 21:50:12 +0000 |
commit | c89f99d26d4c54205988d91ca2417075ba737bc8 (patch) | |
tree | c376ce2e5f232ac3f60db7a4c61a124dcbf975f8 /classes/devshell.bbclass | |
parent | 161e164dd087fecf82614aa7f5515f7d46b3ebad (diff) |
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.bbclass | 5 |
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 |