diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-09-10 18:19:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-11 17:44:40 +0100 |
commit | 10df0718d6a626d99beb68cde8d914ee0820d7eb (patch) | |
tree | f9297fb8fbd0df5488d315037a9640345298989d /meta/files | |
parent | 2d8700bf2250ff4975dad51ee32e8d520fc14a11 (diff) | |
download | openembedded-core-10df0718d6a626d99beb68cde8d914ee0820d7eb.tar.gz openembedded-core-10df0718d6a626d99beb68cde8d914ee0820d7eb.tar.bz2 openembedded-core-10df0718d6a626d99beb68cde8d914ee0820d7eb.zip |
classes/populate_sdk_base: enable adding custom commands to SDK install script
Add an SDK_POST_INSTALL_COMMAND variable which allows additional
commands to be added towards the end of the SDK install script, for e.g.
additional processing that needs to be done as part of installing the
SDK.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/files')
-rw-r--r-- | meta/files/toolchain-shar-template.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/files/toolchain-shar-template.sh b/meta/files/toolchain-shar-template.sh index a37d6ff786..02035d4539 100644 --- a/meta/files/toolchain-shar-template.sh +++ b/meta/files/toolchain-shar-template.sh @@ -169,6 +169,8 @@ done echo done +@SDK_POST_INSTALL_COMMAND@ + # delete the relocating script, so that user is forced to re-run the installer # if he/she wants another location for the sdk if [ $savescripts = 0 ] ; then |