diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2014-01-17 17:16:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-22 07:20:04 +0000 |
commit | 1b0d621f3278286d74c8113af5ad5c918a5cd5a8 (patch) | |
tree | b01784676cc937890acc4c6e79a1ac1c2dbcb6bc /meta/recipes-devtools/installer/adt-installer/adt_installer | |
parent | e9fae95f303165bb1a075cb007f2959e8e1b1c96 (diff) | |
download | poky-1b0d621f3278286d74c8113af5ad5c918a5cd5a8.tar.gz |
adt_installer: do not install rootfs if target is not selected
Currently, if YOCTOADT_TARGETS does not contain an architecture but the
rootfs/machine settings are uncommented, then the rootfs is installed
and adt will throw an error because is not able to find the toolchain
environment script.
This patch will:
* not allow to install a target rootfs if the toolchain for the
target architecture is not selected;
* uncomment the target rootfs/machine settings for the other
architectures since it's easier for the user to just add a new
architecture in YOCTOADT_TARGETS and have the target rootfs
installed;
[YOCTO #5727]
(From OE-Core rev: 22351d27de76b39cb71904396e73497e36d9e1d6)
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-x | meta/recipes-devtools/installer/adt-installer/adt_installer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer index a150de0525..1f2d039598 100755 --- a/meta/recipes-devtools/installer/adt-installer/adt_installer +++ b/meta/recipes-devtools/installer/adt-installer/adt_installer | |||
@@ -55,7 +55,7 @@ usage () | |||
55 | echo_info "# Your rootfs image(s) and target sysroot selections from adt_installer.conf" | 55 | echo_info "# Your rootfs image(s) and target sysroot selections from adt_installer.conf" |
56 | echo_info "##############################################################################" | 56 | echo_info "##############################################################################" |
57 | prompt=1 | 57 | prompt=1 |
58 | for arch_type in $YOCTOADT_SUPPORTED_TARGETS; do | 58 | for arch_type in $YOCTOADT_TARGETS; do |
59 | download_images $arch_type $prompt | 59 | download_images $arch_type $prompt |
60 | done | 60 | done |
61 | echo_info "############################################################################\n" | 61 | echo_info "############################################################################\n" |
@@ -403,7 +403,7 @@ else | |||
403 | override_oldfile=0 | 403 | override_oldfile=0 |
404 | fi | 404 | fi |
405 | 405 | ||
406 | for arch_type in $YOCTOADT_SUPPORTED_TARGETS; do | 406 | for arch_type in $YOCTOADT_TARGETS; do |
407 | download_images $arch_type | 407 | download_images $arch_type |
408 | done | 408 | done |
409 | 409 | ||