mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-29 22:43:06 +00:00
12 lines
230 B
C
12 lines
230 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef KBOOT_H
|
||
|
#define KBOOT_H
|
||
|
|
||
|
void kboot_set_initrd(void *start, size_t size);
|
||
|
void kboot_set_bootargs(const char *ba);
|
||
|
int kboot_prepare_dt(void *fdt);
|
||
|
int kboot_boot(void *kernel);
|
||
|
|
||
|
#endif
|