rust-osdev / bootimage

Tool to create bootable disk images from a Rust OS kernel.
Apache License 2.0
767 stars 67 forks source link

Fixes #21 #22

Closed katietheqt-old closed 6 years ago

phil-opp commented 6 years ago

Thanks for the PR!

Just removing the ?s won't work, since they're indicating an error condition. I think you should be able to keep them when you use try_for_each instead of for_each. (I didn't think of this before, sorry!)

phil-opp commented 6 years ago

This was implemented in #24. Thanks for the suggestion and starting an initial implementation!