root/include/linux/earlycpio.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


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

/* [<][>][^][v][top][bottom][index][help] */