Page 3 of 3

Re: File system hangs.

Posted: Thu Jun 05, 2025 6:56 am
by zevvi
Yes

Re: File system hangs.

Posted: Thu Jun 05, 2025 7:08 am
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();
    }

Re: File system hangs.

Posted: Thu Jun 05, 2025 10:39 am
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.