Blame view

include/linux/earlycpio.h 359 Bytes
81f7e3824   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /* SPDX-License-Identifier: GPL-2.0 */
  #ifndef _LINUX_EARLYCPIO_H
  #define _LINUX_EARLYCPIO_H
  
  #include <linux/types.h>
  
  #define MAX_CPIO_FILE_NAME 18
  
  struct cpio_data {
  	void *data;
  	size_t size;
  	char name[MAX_CPIO_FILE_NAME];
  };
  
  struct cpio_data find_cpio_data(const char *path, void *data, size_t len,
  				long *offset);
  
  #endif /* _LINUX_EARLYCPIO_H */