Rewrite febootstrap as a general supermin appliance building tool.
[febootstrap.git] / helper / ext2internal.h
1 /* febootstrap-supermin-helper reimplementation in C.
2  * Copyright (C) 2009-2010 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 /* This is a private interface used between the parts of the ext2 plugin. */
20
21 #ifndef FEBOOTSTRAP_SUPERMIN_EXT2INTERNAL_H
22 #define FEBOOTSTRAP_SUPERMIN_EXT2INTERNAL_H
23
24 /* Inlining is broken in the ext2fs header file.  Disable it by
25  * defining the following:
26  */
27 #define NO_INLINE_FUNCS
28 #include <ext2fs/ext2fs.h>
29
30 /* ext2.c */
31 extern ext2_filsys fs;
32
33 extern void ext2_mkdir (ext2_ino_t dir_ino, const char *dirname, const char *basename, mode_t mode, uid_t uid, gid_t gid, time_t ctime, time_t atime, time_t mtime);
34 extern void ext2_empty_inode (ext2_ino_t dir_ino, const char *dirname, const char *basename, mode_t mode, uid_t uid, gid_t gid, time_t ctime, time_t atime, time_t mtime, int major, int minor, int dir_ft, ext2_ino_t *ino_ret);
35 extern void ext2_write_file (ext2_ino_t ino, const char *buf, size_t size);
36 extern void ext2_link (ext2_ino_t dir_ino, const char *basename, ext2_ino_t ino, int dir_ft);
37 extern void ext2_clean_path (ext2_ino_t dir_ino, const char *dirname, const char *basename, int isdir);
38
39 /* ext2cpio.c */
40 extern void ext2_cpio_file (const char *cpio_file);
41
42 /* ext2initrd.c */
43 extern void ext2_make_initrd (const char *modpath, const char *initrd);
44
45 #endif /* FEBOOTSTRAP_SUPERMIN_EXT2INTERNAL_H */