o8vm / krabs

An x86 bootloader written in Rust.
Apache License 2.0
519 stars 22 forks source link

Write support for FAT32 #26

Open o8vm opened 4 years ago

o8vm commented 4 years ago

KRaBs supports the FAT32 filesystem, but only the read feature is available. To add the recovery mode feature #18 , we need to implement write() for FAT32 module as well.

Spxg commented 4 years ago

hello o8vm, I'm rewriting the fat32 crate. I hope that would be useful for you.

o8vm commented 4 years ago

Hi! Thanks for the information of your fat32 crate. Your implementation looks very nice and clean. I've been referring to it since the first implementation!

I'm rewriting the fat32 crates.

Very cool! I’ll be sure to check this out.

Spxg commented 4 years ago

bootloader It seems work well in my embedded device.

Spxg commented 4 years ago

Hi, new version has released. Tests passed in my bootloader. I hope that would be useful for you.

o8vm commented 4 years ago

Thank you! I'll be sure to check it out when I get time.