]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - misc/create_inode.c
mke2fs: add the ability to copy files from a given directory
[thirdparty/e2fsprogs.git] / misc / create_inode.c
CommitLineData
0d4deba2
RY
1#include "create_inode.h"
2
3/* Make a special file which is block, character and fifo */
4errcode_t do_mknod_internal(ext2_ino_t cwd, const char *name, struct stat *st)
5{
6}
7
8/* Make a symlink name -> target */
9errcode_t do_symlink_internal(ext2_ino_t cwd, const char *name, char *target)
10{
11}
12
13/* Make a directory in the fs */
14errcode_t do_mkdir_internal(ext2_ino_t cwd, const char *name, struct stat *st)
15{
16}
17
18/* Copy the native file to the fs */
19errcode_t do_write_internal(ext2_ino_t cwd, const char *src, const char *dest)
20{
21}
22
23/* Copy files from source_dir to fs */
24errcode_t populate_fs(ext2_ino_t parent_ino, const char *source_dir)
25{
26}