diff options
author | David 'Digit' Turner <digit@android.com> | 2011-06-23 18:23:08 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-06-23 18:28:38 +0200 |
commit | adc34fb9e9ad0700e9752ca67174c68925ca0c71 (patch) | |
tree | 77fd58e1db35304397476ded126e5a4283f71171 /android/main-common.c | |
parent | ac395e1dff366240b8b0fa5ea4cdeb0cc7a8b797 (diff) | |
download | external_qemu-adc34fb9e9ad0700e9752ca67174c68925ca0c71.zip external_qemu-adc34fb9e9ad0700e9752ca67174c68925ca0c71.tar.gz external_qemu-adc34fb9e9ad0700e9752ca67174c68925ca0c71.tar.bz2 |
Fix -sysdir handling.
This patch fixes the processing of the -sysdir option. Previously,
using -sysdir <path> would imply that the -system <path>/<path>/system.img
is used, which is incorrect.
Also fixes the skin search for the case where we are using the emulator
without a pre-existing AVD outside of platform builds (e.g. when running tests).
This happens with stuff like:
emulator -sysdir /path/to/known/sdk/platforms/<name>/images
The patch ensures that the /path/to/known/sdk/platforms/<name>/skins directory
is probed (this was the behaviour of the Tools R11 emulator).
Change-Id: I32398bec0d7a28ead234f63c847d3ec95ed14b63
Diffstat (limited to 'android/main-common.c')
-rw-r--r-- | android/main-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/main-common.c b/android/main-common.c index 05a2cb0..94accf7 100644 --- a/android/main-common.c +++ b/android/main-common.c @@ -850,7 +850,7 @@ AvdInfo* createAVD(AndroidOptions* opts, int* inAndroidBuild) if (!opts->system) { opts->system = _getSdkSystemImage(opts->sysdir, "-image", "system.img"); - D("autoconfig: -image %s", opts->image); + D("autoconfig: -system %s", opts->system); } if (!opts->kernel) { |