m1n1/src/payload.h
Hector Martin 7dfe24ee2c Rework kboot/chainload flow to shut down before calling the next stage
Next stage boots now exit back to main() after replying to the proxy
command, allowing shutdown functions to be called. Introduces a new
P_VECTOR proxy op, distinct from P_CALL. The Python side is reworked
to remain compatible with older versions that do not support this.

Signed-off-by: Hector Martin <marcan@marcan.st>
2021-04-17 18:12:59 +09:00

8 lines
112 B
C

/* SPDX-License-Identifier: MIT */
#ifndef __PAYLOAD_H__
#define __PAYLOAD_H__
int payload_run(void);
#endif