aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-char-android.c
Commit message (Collapse)AuthorAgeFilesLines
* upstream: integrate block changesDavid 'Digit' Turner2011-01-021-6/+1
| | | | | | | | This large patch upgrades the block support code to the upstream version available in ba5e7f82169f32ab8163c707d97c799ca09f8924 dated 2010-08-08 Change-Id: I8b24df0c287e72f6620650a4d6a62e1bb315453e
* Allow OS X emulator to open host /dev/ devices.David 'Digit' Turner2010-10-271-8/+3
| | | | | | | Only Win32 does not allow this, so simplify the tests in the source code + Remove compiler warning Change-Id: I100dd59e4477edcd24dd94becfa3e3b83a2b92ab
* Remove compiler warnings when building the emulator.David 'Digit' Turner2010-09-221-1/+3
| | | | | | | This forces -Wall during the build. Note that this patch doesn't remove all warnings, but most of the remaining ones are from upstream anyway. Change-Id: I8808d8495e99866e156ce5780d2e3c305eab491f
* upstream: console changes.David Turner2010-09-131-2/+2
|
* upstream: qemu-char updates.David Turner2010-09-131-49/+219
|
* upstream: rename IOCanRWHandler into IOCanReadHandlerDavid Turner2010-09-131-2/+2
|
* Add new "qemu monitor" command to the console.David 'Digit' Turner2010-09-081-0/+11
| | | | | | | | | | | | | | | | | | | This allows you to access the QEMU virtual machine monitor directly from the console (instead of playing with the command-line to do it). The implementation of the 'quit' command has been modified to simply close the connection, instead of stopping the emulator program. This patch introduces changes that allow a console session to be detached and redirected at runtime to other internal services of the emulator program. This will be useful in the future to implement other features. + doc typo + add proper definitions for CONFIG_ANDROID on config-host.h + remove obsolete sysdeps.h dependency in android/console.c Change-Id: If16cfe41c12a26eb8f56e3a9c24452eafa5efab4
* Upstream: Replace sys-queue.h with qemu-queue.hDavid 'Digit' Turner2010-05-101-7/+7
| | | | Change-Id: I5c51f54a7fe2ea702420429bbf0c789ed6d8c534
* Upstream: Use CONFIG_BSD instead of _BSD and HOST_BSDDavid 'Digit' Turner2010-05-101-1/+1
| | | | | Also fix OS X build, which failed with a link error. Change-Id: Idd63f25dc1f46ea66da5727c7577def34f048c3c
* Fix Win32 socket error handling.David 'Digit' Turner2010-03-251-1/+1
| | | | | | This also fixes -http-proxy support on Windows. Change-Id: I741b224511c064412ac39351ed4f1b9146a313a5
* Restore the -fdpair option implementation that was lost in the previous ↵David 'Digit' Turner2009-09-181-0/+22
| | | | | | | | integrate. This is necessary to fix the dexpreopt pass of -user builds. Note that this should only fix ARMv5TE builds, since we still have other (different) issues with ARMv7 emulation at the moment.
* Merge upstream QEMU 10.0.50 into the Android source tree.David 'Digit' Turner2009-09-141-0/+2246
This change integrates many changes from the upstream QEMU sources. Its main purpose is to enable correct ARMv6 and ARMv7 support to the Android emulator. Due to the nature of the upstream code base, this unfortunately also required changes to many other parts of the source. Note that to ensure easier integrations in the future, some source files and directories that have heavy Android-specific customization have been renamed with an -android suffix. The original files are still there for easier integration tracking, but *never* compiled. For example: net.c net-android.c qemu-char.c qemu-char-android.c slirp/ slirp-android/ etc... Tested on linux-x86, darwin-x86 and windows host machines.