Qemu: Failed to load BIOS bios.bin BIOS in Mountain Lion

I updated my mac installation, Mountain Lion 10.8.4, but now "Eclipse" comes into error every time I try to download Android AVD. Return Error:

qemu: could not load BIOS BIOS 'bios.bin'

Help me solve this problem? thanks

+4
source share
2 answers

I got the same error message on Windows when trying to start the x86 emulator. What worked for me was to find the "bios.bin" and "vgabios-cirrus.bin" files somewhere in C: \ and copy them to the folder .... \ android-sdk-windows \ tools.

0
source

Just pass the bios arguments ( $ANDROID_HOME/tools/lib/pc-bios ) to qemu:

 emulator64-x86 -avd <avd_name> -qemu -L $ANDROID_HOME/tools/lib/pc-bios 
0
source

Source: https://habr.com/ru/post/1488457/


All Articles