aboutsummaryrefslogtreecommitdiffstats
path: root/vl-android.c
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2012-05-02 12:06:12 +0800
committerAndrew Hsieh <andrewhsieh@google.com>2012-05-02 12:06:12 +0800
commit3d894287d2907dc6a0fc45d7a5b77dbe76ab2bd6 (patch)
treeeb7038f1f850883b4587478aa440978bb801d491 /vl-android.c
parent5b658a4b19c685bcde26551e408bd3991a8d6618 (diff)
downloadexternal_qemu-3d894287d2907dc6a0fc45d7a5b77dbe76ab2bd6.zip
external_qemu-3d894287d2907dc6a0fc45d7a5b77dbe76ab2bd6.tar.gz
external_qemu-3d894287d2907dc6a0fc45d7a5b77dbe76ab2bd6.tar.bz2
Fixed pc-bios path in standalone emulator
pc-bios was recently moved to new directory. Change emulator to search in new path in standalone mode (built in external/qemu and run from external/qemu/objs). To be specific, change ../../../prebuilt/common/pc-bios/ to ../../../prebuilts/qemu-kernel/x86/pc-bios/ Change-Id: Id79534349394c9b47f8ef5dda76f2a21268b58fe
Diffstat (limited to 'vl-android.c')
-rw-r--r--vl-android.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vl-android.c b/vl-android.c
index b43f7fe..74a2dc4 100644
--- a/vl-android.c
+++ b/vl-android.c
@@ -2271,7 +2271,7 @@ char *qemu_find_file(int type, const char *name)
buf = qemu_find_file_with_subdir(data_dir, "../usr/share/pc-bios/", name);
/* Finally, try this for standalone builds under external/qemu */
if (buf == NULL)
- buf = qemu_find_file_with_subdir(data_dir, "../../../prebuilt/common/pc-bios/", name);
+ buf = qemu_find_file_with_subdir(data_dir, "../../../prebuilts/qemu-kernel/x86/pc-bios/", name);
}
#endif
return buf;