diff options
author | Alyssa Milburn <fuzzie@fuzzie.org> | 2016-01-22 23:07:24 +0000 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2016-01-30 23:37:38 +1100 |
commit | ff472a5badf8e6d964455de39ca67ea3a7758dea (patch) | |
tree | 57326e8dcb689c0e5715b8a0a39d617f6c61ec99 /hw | |
parent | ecbc25fa86ce44cf5aea94adaf79ea8428f12f4b (diff) | |
download | qemu-ff472a5badf8e6d964455de39ca67ea3a7758dea.zip |
cuda.c: return error for unknown commands
This avoids MacsBug hanging at startup in the absence of ADB mouse
input, by replying with an error (which is also what MOL does) when
it sends an unknown command (0x1c).
Signed-off-by: Alyssa Milburn <fuzzie@fuzzie.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/misc/macio/cuda.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c index 0bd90e8456..316c1ac8da 100644 --- a/hw/misc/macio/cuda.c +++ b/hw/misc/macio/cuda.c @@ -606,6 +606,11 @@ static void cuda_receive_packet(CUDAState *s, } break; default: + obuf[0] = ERROR_PACKET; + obuf[1] = 0x2; + obuf[2] = CUDA_PACKET; + obuf[3] = data[0]; + cuda_send_packet_to_host(s, obuf, 4); break; } } |