diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-06-30 23:02:53 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-01 17:17:36 +0100 |
commit | f3be8e9a7df13cc11ffc8fc667efaf2db96a7c38 (patch) | |
tree | 879e825269f5d1f6523259a92f883e5f22278116 /bitbake/bin | |
parent | 22d8fb1fc3be67ef01a7bbe161d9b303fcad4e53 (diff) | |
download | poky-f3be8e9a7df13cc11ffc8fc667efaf2db96a7c38.tar.gz |
bitbake: add -R option for loading configuration files after bitbake.conf
Useful if you want to load a configuration file that sets values which may
also be set in bitbake.conf or one of the files it includes.
(Bitbake rev: a8246ae5400c23df0d3ee29c36f4d9f257d1e6d1)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 29e9acd97a..2564e97123 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -118,7 +118,10 @@ Default BBFILES are the .bb files in the current directory.""") | |||
118 | action = "store", dest = "cmd") | 118 | action = "store", dest = "cmd") |
119 | 119 | ||
120 | parser.add_option("-r", "--read", help = "read the specified file before bitbake.conf", | 120 | parser.add_option("-r", "--read", help = "read the specified file before bitbake.conf", |
121 | action = "append", dest = "file", default = []) | 121 | action = "append", dest = "prefile", default = []) |
122 | |||
123 | parser.add_option("-R", "--postread", help = "read the specified file after bitbake.conf", | ||
124 | action = "append", dest = "postfile", default = []) | ||
122 | 125 | ||
123 | parser.add_option("-v", "--verbose", help = "output more chit-chat to the terminal", | 126 | parser.add_option("-v", "--verbose", help = "output more chit-chat to the terminal", |
124 | action = "store_true", dest = "verbose", default = False) | 127 | action = "store_true", dest = "verbose", default = False) |