mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-04-04 06:36:07 +00:00
This basically duplicates the chainload.py logic, minus the mach-o handling. Signed-off-by: Hector Martin <marcan@marcan.st>
11 lines
255 B
C
11 lines
255 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef __CHAINLOAD_H__
|
|
#define __CHAINLOAD_H__
|
|
|
|
#include "types.h"
|
|
|
|
int chainload_image(void *base, size_t size, char **vars, size_t var_cnt);
|
|
int chainload_load(const char *spec, char **vars, size_t var_cnt);
|
|
|
|
#endif
|