Bug 871440: bypass offline for both B2G emulator ARM & x86. r=jgriffin

This commit is contained in:
Vicamo Yang 2013-05-14 10:26:32 +08:00
Родитель 86c2e45a3e
Коммит 738374889c
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -48,9 +48,11 @@ try {
return libcutils;
});
if (libcutils) {
let qemu = libcutils.property_get("ro.kernel.qemu");
logger.info("B2G emulator: " + (qemu == "1" ? "yes" : "no"));
let platform = libcutils.property_get("ro.product.device");
logger.info("Platform detected is " + platform);
bypassOffline = (platform == "generic" || platform == "panda");
bypassOffline = (qemu == "1" || platform == "panda");
}
}
catch(e) {}