* [PATCH 0/1] cooker: remove old bitbake shell reference
@ 2018-03-16 6:27 Paul Eggleton
2018-03-16 6:27 ` [PATCH 1/1] " Paul Eggleton
0 siblings, 1 reply; 2+ messages in thread
From: Paul Eggleton @ 2018-03-16 6:27 UTC (permalink / raw)
To: bitbake-devel
The following changes since commit 39d6a30a28f66c599e18beddbd847f40dcff623c:
utils.py: Add option for explode_dep_versions2 to return unsorted (2018-03-15 03:39:18 -0700)
are available in the Git repository at:
git://git.openembedded.org/bitbake-contrib paule/bb-shell-remove
http://cgit.openembedded.org/bitbake-contrib/log/?h=paule/bb-shell-remove
Paul Eggleton (1):
cooker: remove old bitbake shell reference
lib/bb/cooker.py | 11 -----------
1 file changed, 11 deletions(-)
--
2.14.3
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] cooker: remove old bitbake shell reference
2018-03-16 6:27 [PATCH 0/1] cooker: remove old bitbake shell reference Paul Eggleton
@ 2018-03-16 6:27 ` Paul Eggleton
0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggleton @ 2018-03-16 6:27 UTC (permalink / raw)
To: bitbake-devel
The bitbake shell functionality was disabled and removed in 2010
(bitbake revision 24857e2ceb405916b0b0b3e75c6c2375a909b9ba) as it was
broken at that time, and things have moved on even further since then.
The bitbake server can remain memory resident now so some of the reason
for its existence has been removed. If we were to want to re-implement
it then I would imagine we would do so using the devpyshell rather than
building upon this, so remove the last reference to it here.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
lib/bb/cooker.py | 11 -----------
1 file changed, 11 deletions(-)
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 1fda40dd..062013a8 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1051,17 +1051,6 @@ class BBCooker:
tree = self.generatePkgDepTreeData(pkgs, 'build')
bb.event.fire(bb.event.TargetsTreeGenerated(tree), self.data)
- def interactiveMode( self ):
- """Drop off into a shell"""
- try:
- from bb import shell
- except ImportError:
- parselog.exception("Interactive mode not available")
- sys.exit(1)
- else:
- shell.start( self )
-
-
def handleCollections(self, collections):
"""Handle collections"""
errors = False
--
2.14.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-03-16 6:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-16 6:27 [PATCH 0/1] cooker: remove old bitbake shell reference Paul Eggleton
2018-03-16 6:27 ` [PATCH 1/1] " Paul Eggleton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.