summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/installer/adt-installer/adt_installer
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/installer/adt-installer/adt_installer')
-rwxr-xr-xmeta/recipes-devtools/installer/adt-installer/adt_installer8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer
index d47be4123b..1f481ded61 100755
--- a/meta/recipes-devtools/installer/adt-installer/adt_installer
+++ b/meta/recipes-devtools/installer/adt-installer/adt_installer
@@ -237,20 +237,20 @@ get_qemu_image()
237{ 237{
238 if [ "$1" == "x86" ]; then 238 if [ "$1" == "x86" ]; then
239 qemu_kernel="bzImage-qemu$1.bin" 239 qemu_kernel="bzImage-qemu$1.bin"
240 elif [ "$1" == "arm" ]; then 240 elif [ "$1" == "mips" ]; then
241 qemu_kernel="zImage-qemu$1.bin" 241 qemu_kernel="vmlinux-qemu$1.bin"
242 else 242 else
243 qemu_kernel="zImage-qemu$1.bin" 243 qemu_kernel="zImage-qemu$1.bin"
244 fi 244 fi
245 245
246 #echo_info "[ADT_INST] Downloading qemu kernel binary: $qemu_kernel" 246 #echo_info "[ADT_INST] Downloading qemu kernel binary: $qemu_kernel"
247 download_file $qemu_kernel 247 download_file qemu$1/$qemu_kernel
248 check_result 248 check_result
249 249
250 for image_type in $select_rootfs; do 250 for image_type in $select_rootfs; do
251 #echo_info "[ADT_INST] Downloading rootfs file: poky-image-$image_type-qemu$1.tar.bz2" 251 #echo_info "[ADT_INST] Downloading rootfs file: poky-image-$image_type-qemu$1.tar.bz2"
252 filename="poky-image-$image_type-qemu$1.tar.bz2" 252 filename="poky-image-$image_type-qemu$1.tar.bz2"
253 download_file $filename 253 download_file qemu$1/$filename
254 check_result 254 check_result
255 done 255 done
256} 256}