mboxd: Set BMC_EVENT_PROTOCOL_RESET on startup

This resolves skiboot failing to receive the mboxd termination message
if mboxd has been killed unexpectedly or due to some race on shutdown
where the message fails to propagate.

Change-Id: I7a0974fc17f6853ac62c1f5f7b43d2e367260cf6
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
diff --git a/mboxd.c b/mboxd.c
index 54815b8..84bbf69 100644
--- a/mboxd.c
+++ b/mboxd.c
@@ -414,6 +414,7 @@
 
 	/* We're ready to go, alert the host */
 	context->bmc_events |= BMC_EVENT_DAEMON_READY;
+	context->bmc_events |= BMC_EVENT_PROTOCOL_RESET;
 
 	/* Alert on all supported transports */
 	rc = protocol_events_put(context, mbox_ops);