Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix .. cluster number for first-level dirs #99

Merged

Commits on Oct 28, 2024

  1. tests: add fsck test

    badicsalex committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    b88027c View commit details
    Browse the repository at this point in the history
  2. Don't create LFNs for . and ..

    The current code makes invalid dir entries, because the first two slots
    should be . and .., but with LFNs, it's
    
        LFN for .
        .
        LFN for ..
        ..
    
    We should probably not create LFN's when not needed anyway, but that's not
    implemented in this patch.
    badicsalex committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    34c83e3 View commit details
    Browse the repository at this point in the history
  3. Fix .. cluster number for first-level dirs

    On FAT32, the cluster number of / is 0 in dir entries (and not the actually
    used cluster)
    badicsalex committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    8becd5f View commit details
    Browse the repository at this point in the history