diff options
| author | Michal Idziorek <m.i@gmx.at> | 2015-05-15 02:34:33 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2015-05-15 02:34:33 +0200 |
| commit | 9b152b773d40d40abf41a46be2ddae8905170fdf (patch) | |
| tree | 7e6ee94e0af8804e11a2725028e8566cb2387c89 /fs/fs.h | |
| parent | 0365bbb5c58912fd24b3d33b90477d3de5d46d96 (diff) | |
using ramimage position and correct kernel pages count
Diffstat (limited to 'fs/fs.h')
| -rw-r--r-- | fs/fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,6 +2,7 @@ #define FOOLOS_FS #include <stdint.h> +#include "kernel/multiboot.h" enum FS_FILE_TYPE{ @@ -19,7 +20,6 @@ typedef struct fs_dirent_struct }fs_dirent; int fs_readdir(const char *name,fs_dirent *dirs,int max); -void fs_mount(uint32_t ext2_ramimage); // all you can mount so far is just one single - // ext2 ramimage as root +void fs_mount(multiboot_information *info); // mounts ext2 ramimage from module as root #endif |
