summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/installer/adt-installer/adt_installer
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2012-08-17 13:38:11 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-17 13:06:42 +0100
commit3ba29d41e6e00cc6bedfcb2d5157db54b6bcfda0 (patch)
treee2102ddc9147c5a13b6c14c3b7007251297e0f15 /meta/recipes-devtools/installer/adt-installer/adt_installer
parent21049ec9644510a81aba748ad81fb6a73a711f21 (diff)
downloadpoky-3ba29d41e6e00cc6bedfcb2d5157db54b6bcfda0.tar.gz
adt-installer: add support for relocatable SDK
Since we made the SDK relocatable, we have to add this functionality to adt-installer too. (From OE-Core rev: 0fa784c261050c632b7237ba3d43a148ab71b0ca) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/installer/adt-installer/adt_installer')
-rwxr-xr-xmeta/recipes-devtools/installer/adt-installer/adt_installer11
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer
index 1a53eb9c54..2d252b72ad 100755
--- a/meta/recipes-devtools/installer/adt-installer/adt_installer
+++ b/meta/recipes-devtools/installer/adt-installer/adt_installer
@@ -332,6 +332,17 @@ if [ -f "$YOCTOADT_INSTALL_LOG_FILE" ]; then
332 rm $YOCTOADT_INSTALL_LOG_FILE 332 rm $YOCTOADT_INSTALL_LOG_FILE
333fi 333fi
334 334
335echo -n "Please enter the install location (default: $DEFAULT_INSTALL_FOLDER): "
336read INSTALL_FOLDER
337
338if [ "$INSTALL_FOLDER" = "" ]; then
339 INSTALL_FOLDER=$DEFAULT_INSTALL_FOLDER
340fi
341
342eval INSTALL_FOLDER=$INSTALL_FOLDER
343export INSTALL_FOLDER=$(readlink -m $INSTALL_FOLDER)
344
345clear
335 346
336usage 347usage
337 348