[victoriafalls] Begin traversing the root inode.

This commit is contained in:
Drew Galbraith 2023-07-06 10:40:55 -07:00
parent f7fb4f4ddc
commit 2ff4334bea
3 changed files with 48 additions and 1 deletions

View file

@ -62,3 +62,11 @@ struct Inode {
uint32_t faddr;
uint32_t osd2[3];
} __attribute__((__packed__));
struct DirEntry {
uint32_t inode;
uint32_t record_length;
uint8_t name_len;
uint8_t file_type;
char name[256];
} __attribute__((__packed__));