Dear NXP,
I am working on Android 9. I needs to add ro.kernel.qemu support in Android 9. By default ro.kernel.qemu is false.
std::unique_ptr<CommBase> CommFactory::create() {
bool isEmulator = android::base::GetBoolProperty("ro.kernel.qemu", false);
if (isEmulator) {
return std::make_unique<PipeComm>();
} else {
return std::make_unique<SocketComm>();
}
}
Currently, emulated value from BSP through Socket Communication (SocketComm).
Is there any possible to add emulator (ro.kernel.qemu) in source ?
Thanks & Regards,
VinothS,
Regards,
Vinothkumar Sekar