aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/oe-setup-builddir
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@enea.com>2013-03-27 14:46:22 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-29 10:40:18 +0000
commit6ad06582621fc20d09d4d7fd78ea7e175367c187 (patch)
treedf14110758046d108c48da5ab18ad6911b51fb81 /scripts/oe-setup-builddir
parent918460cff5b82a69feea0ec3d787c420927eaa35 (diff)
downloadopenembedded-core-contrib-6ad06582621fc20d09d4d7fd78ea7e175367c187.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. 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-xscripts/oe-setup-builddir16
1 files changed, 6 insertions, 10 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir
index 560453e098..be5811d37c 100755
--- a/scripts/oe-setup-builddir
+++ b/scripts/oe-setup-builddir
@@ -55,6 +55,7 @@ if [ "x" != "x$TEMPLATECONF" ]; then
fi
OECORELAYERCONF="$TEMPLATECONF/bblayers.conf.sample"
OECORELOCALCONF="$TEMPLATECONF/local.conf.sample"
+ OECORENOTESCONF="$TEMPLATECONF/conf-notes.txt"
fi
if [ "x" = "x$OECORELOCALCONF" ]; then
@@ -113,14 +114,9 @@ cat <<EOM
You can now run 'bitbake <target>'
-Common targets are:
- core-image-minimal
- core-image-sato
- meta-toolchain
- meta-toolchain-sdk
- adt-installer
- meta-ide-support
-
-You can also run generated qemu images with a command like 'runqemu qemux86'
-
EOM
+if [ "x" = "x$OECORENOTESCONF" ]; then
+ OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt"
+fi
+cat $OECORENOTESCONF
+unset OECORENOTESCONF