diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-18 08:07:51 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:37 +0100 |
commit | b9f8af16f4aca5df1849e0ee2904d58e120cb67d (patch) | |
tree | bbc1fc7a46e8f6b9ee8d6537d42774c5aaa6404a | |
parent | aa538a405e6d0ea87d0c5d099c4072e817adee62 (diff) | |
download | poky-b9f8af16f4aca5df1849e0ee2904d58e120cb67d.tar.gz |
Until the interactive mode is fixed, kill it from the valid options, to avoid confusion
(Bitbake rev: 65a51bb20677148a29b9e472f6d9d0a97798f024)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rwxr-xr-x | bitbake/bin/bitbake | 3 | ||||
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 54228518d7..34cfadb986 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -105,9 +105,6 @@ Default BBFILES are the .bb files in the current directory.""") | |||
105 | parser.add_option("-f", "--force", help = "force run of specified cmd, regardless of stamp status", | 105 | parser.add_option("-f", "--force", help = "force run of specified cmd, regardless of stamp status", |
106 | action = "store_true", dest = "force", default = False) | 106 | action = "store_true", dest = "force", default = False) |
107 | 107 | ||
108 | parser.add_option("-i", "--interactive", help = "drop into the interactive mode also called the BitBake shell.", | ||
109 | action = "store_true", dest = "interactive", default = False) | ||
110 | |||
111 | parser.add_option("-c", "--cmd", help = "Specify task to execute. Note that this only executes the specified task for the providee and the packages it depends on, i.e. 'compile' does not implicitly call stage for the dependencies (IOW: use only if you know what you are doing). Depending on the base.bbclass a listtasks tasks is defined and will show available tasks", | 108 | parser.add_option("-c", "--cmd", help = "Specify task to execute. Note that this only executes the specified task for the providee and the packages it depends on, i.e. 'compile' does not implicitly call stage for the dependencies (IOW: use only if you know what you are doing). Depending on the base.bbclass a listtasks tasks is defined and will show available tasks", |
112 | action = "store", dest = "cmd") | 109 | action = "store", dest = "cmd") |
113 | 110 | ||
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index fd59f05232..2b3dfb0cb4 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -140,9 +140,6 @@ class BBCooker: | |||
140 | self.commandlineAction = ["showVersions"] | 140 | self.commandlineAction = ["showVersions"] |
141 | elif self.configuration.parse_only: | 141 | elif self.configuration.parse_only: |
142 | self.commandlineAction = ["parseFiles"] | 142 | self.commandlineAction = ["parseFiles"] |
143 | # FIXME - implement | ||
144 | #elif self.configuration.interactive: | ||
145 | # self.interactiveMode() | ||
146 | elif self.configuration.dot_graph: | 143 | elif self.configuration.dot_graph: |
147 | if self.configuration.pkgs_to_build: | 144 | if self.configuration.pkgs_to_build: |
148 | self.commandlineAction = ["generateDotGraph", self.configuration.pkgs_to_build, self.configuration.cmd] | 145 | self.commandlineAction = ["generateDotGraph", self.configuration.pkgs_to_build, self.configuration.cmd] |