aboutsummaryrefslogtreecommitdiff
path: root/src/include/fs/vfs.h
blob: 4040566f6554469d0628592fbebe92b78f926416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _VFS_H
#define _VFS_H

#include <stdint.h>

#define DISK_IDE 1
#define DISK_MEM 2

int devopen(const char *name, int *reopen);
int devread(unsigned long sector, unsigned long byte_offset,
	unsigned long byte_len, void *buf);

int file_open(const char *filename);
int file_read(void *buf, unsigned long len);
int file_seek(unsigned long offset);
unsigned long file_pos(void);
unsigned long file_size(void);

#define PARTITION_UNKNOWN 0xbad6a7

#ifdef CONFIG_FS_ELTORITO
int open_eltorito_image(int part, unsigned long *start, unsigned long *length);
#else
# define open_eltorito_image(x,y,z) PARTITION_UNKNOWN
#endif

extern int using_devsize;

#endif /* _VFS_H */