mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2025-12-27 20:40:13 +00:00
14 lines
300 B
C
14 lines
300 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2025, Victor Paul <vipollmail@gmail.com>
|
|
*/
|
|
|
|
#ifndef RAMDISK_HANDLER_H_ /* Include guard */
|
|
#define RAMDISK_HANDLER_H_
|
|
|
|
extern unsigned long ramdisk_size;
|
|
|
|
int ramdisk_handler_patch_dtb(const void *fdt, void *buf, int bufsize);
|
|
|
|
#endif
|