mirror of
https://github.com/torvalds/linux.git
synced 2025-04-09 10:27:37 +00:00

The new header only exports a single unpack function and a CPIO_HDRLEN constant for future test use. Signed-off-by: David Disseldorp <ddiss@suse.de> Link: https://lore.kernel.org/r/20250304061020.9815-2-ddiss@suse.de Signed-off-by: Christian Brauner <brauner@kernel.org>
9 lines
189 B
C
9 lines
189 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef __INITRAMFS_INTERNAL_H__
|
|
#define __INITRAMFS_INTERNAL_H__
|
|
|
|
char *unpack_to_rootfs(char *buf, unsigned long len);
|
|
#define CPIO_HDRLEN 110
|
|
|
|
#endif
|