summaryrefslogtreecommitdiffstats
path: root/bitbake-dev/bin
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-07-29 14:33:14 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2009-07-29 14:33:14 +0100
commit64b04685b6fd029f2f70f7017bfd51d26ccb0d11 (patch)
tree5d525e2b58e5a9b27ea3096a0047770446baaf29 /bitbake-dev/bin
parent231b5f67844da39949e04ae53557cea04aacffdd (diff)
downloadpoky-64b04685b6fd029f2f70f7017bfd51d26ccb0d11.tar.gz
bitbake: Add a --revisions-changed commandline option to indicate when floating srcrevs have changed
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake-dev/bin')
-rwxr-xr-xbitbake-dev/bin/bitbake3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake-dev/bin/bitbake b/bitbake-dev/bin/bitbake
index f4cd0cb69a..d9aa910422 100755
--- a/bitbake-dev/bin/bitbake
+++ b/bitbake-dev/bin/bitbake
@@ -124,6 +124,9 @@ Default BBFILES are the .bb files in the current directory.""" )
124 parser.add_option( "-u", "--ui", help = "userinterface to use", 124 parser.add_option( "-u", "--ui", help = "userinterface to use",
125 action = "store", dest = "ui") 125 action = "store", dest = "ui")
126 126
127 parser.add_option( "", "--revisions-changed", help = "Set the exit code depending on whether upstream floating revisions have changed or not",
128 action = "store_true", dest = "revisions_changed", default = False )
129
127 options, args = parser.parse_args(sys.argv) 130 options, args = parser.parse_args(sys.argv)
128 131
129 configuration = BBConfiguration(options) 132 configuration = BBConfiguration(options)