File system hangs.

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
zevvi
Posts: 21
Joined: Wed May 28, 2025 8:20 am
GitHub: https://github.com/Zeviraty

Re: File system hangs.

Post by zevvi »

Yes
zevvi
Posts: 21
Joined: Wed May 28, 2025 8:20 am
GitHub: https://github.com/Zeviraty

Re: File system hangs.

Post by zevvi »

Code: Select all

    if (strncmp(temp, FS_SIGNATURE, 5) == 0) {
        terminal_writestring("Reading fs sectors...\n");
        ata_read_sectors(FS_SECTOR + 1, sizeof(fs_root) / 512, fs_root);
        terminal_writestring("Done reading fs sectors...\n");
    } else {
        memset(fs_root, 0, sizeof(fs_root));
        fs_save();
    }
sebihepp
Member
Member
Posts: 232
Joined: Tue Aug 26, 2008 11:24 am
GitHub: https://github.com/sebihepp

Re: File system hangs.

Post by sebihepp »

Well, you need to give more information. What happens? And what should happen? What did you found out on your own?

And please update your git repository. There is still the old code.
Post Reply