mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-23 07:03:08 +00:00
7dfe24ee2c
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>
8 lines
112 B
C
8 lines
112 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef __PAYLOAD_H__
|
|
#define __PAYLOAD_H__
|
|
|
|
int payload_run(void);
|
|
|
|
#endif
|