summaryrefslogtreecommitdiffstats
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:55 +0000
commita0bd02db2d2341c0a496e9bbd6e8a0ab7e7cd83e (patch)
treea90c9a2fa03f90bd37a7f54dbe8496d7046334b6 /scripts/oe-setup-builddir
parentc5318519769f90234d5b58678dca4db7ceeffaf1 (diff)
downloadpoky-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-xscripts/oe-setup-builddir16
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"
58fi 59fi
59 60
60if [ "x" = "x$OECORELOCALCONF" ]; then 61if [ "x" = "x$OECORELOCALCONF" ]; then
@@ -113,14 +114,9 @@ cat <<EOM
113 114
114You can now run 'bitbake <target>' 115You can now run 'bitbake <target>'
115 116
116Common 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
124You can also run generated qemu images with a command like 'runqemu qemux86'
125
126EOM 117EOM
118if [ "x" = "x$OECORENOTESCONF" ]; then
119 OECORENOTESCONF="$OEROOT/meta/conf/conf-notes.txt"
120fi
121cat $OECORENOTESCONF
122unset OECORENOTESCONF