diff options
author | Anders Roxell <anders.roxell@enea.com> | 2013-03-27 14:46:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-29 10:40:55 +0000 |
commit | a0bd02db2d2341c0a496e9bbd6e8a0ab7e7cd83e (patch) | |
tree | a90c9a2fa03f90bd37a7f54dbe8496d7046334b6 /scripts/oe-setup-builddir | |
parent | c5318519769f90234d5b58678dca4db7ceeffaf1 (diff) | |
download | poky-a0bd02db2d2341c0a496e9bbd6e8a0ab7e7cd83e.tar.gz |
oe-setup-builddir: Possibility to customize text.
Possibility to customize the text that is presented to the user when
they execute the script.
(From OE-Core rev: 6ad06582621fc20d09d4d7fd78ea7e175367c187)
Signed-off-by: Anders Roxell <anders.roxell@enea.com>
Tested-by: Maxin B. John <maxin.john@enea.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-setup-builddir')
-rwxr-xr-x | scripts/oe-setup-builddir | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir index 95c803d504..76e17784d8 100755 --- a/scripts/oe-setup-builddir +++ b/scripts/oe-setup-builddir | |||
@@ -55,6 +55,7 @@ if [ "x" != "x$TEMPLATECONF" ]; then | |||
55 | fi | 55 | fi |
56 | OECORELAYERCONF="$TEMPLATECONF/bblayers.conf.sample" | 56 | OECORELAYERCONF="$TEMPLATECONF/bblayers.conf.sample" |
57 | OECORELOCALCONF="$TEMPLATECONF/local.conf.sample" | 57 | OECORELOCALCONF="$TEMPLATECONF/local.conf.sample" |
58 | OECORENOTESCONF="$TEMPLATECONF/conf-notes.txt" | ||
58 | fi | 59 | fi |
59 | 60 | ||
60 | if [ "x" = "x$OECORELOCALCONF" ]; then | 61 | if [ "x" = "x$OECORELOCALCONF" ]; then |
@@ -113,14 +114,9 @@ cat <<EOM | |||
113 | 114 | ||
114 | You can now run 'bitbake <target>' | 115 | You can now run 'bitbake <target>' |
115 | 116 | ||
116 | Common targets are: | ||
117 | core-image-minimal | ||
118 | core-image-sato | ||
119 | meta-toolchain | ||
120 | meta-toolchain-sdk | ||
121 | adt-installer | ||
122 | meta-ide-support | ||
123 | |||
124 | You can also run generated qemu images with a command like 'runqemu qemux86' | ||
125 | |||
126 | EOM | 117 | EOM |
118 | if [ "x" = "x$OECORENOTESCONF" ]; then | ||
119 | OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt" | ||
120 | fi | ||
121 | cat $OECORENOTESCONF | ||
122 | unset OECORENOTESCONF | ||