-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
At this moment bmap-rs and bmap-parser share the same README. This is problematic because in crates.io once published bmap-parser contains references to bmap-rs while if should be independent from it. Fix the original README file. Add a new README file for bmap-parser. Signed-off-by: Rafael Garcia Ruiz <[email protected]>
- Loading branch information
Showing
3 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# bmap-parser | ||
|
||
The bmap-parser crate aims to implement tools related to bmap. The inspiration for it | ||
is an existing project that is written in python called [bmap-tools](https://salsa.debian.org/debian/bmap-tools). | ||
|
||
Right now, the implemented function is copying system images files using bmap, which is | ||
safer and faster than regular cp or dd. That can be used to flash images into block | ||
devices. | ||
|
||
## Usage | ||
``` | ||
use bmap-parser::*; | ||
``` | ||
There is a `copy` function that uses bmap file as reference, and a `copy_async` for the | ||
process to work in an asynchronous context. | ||
|
||
## License | ||
bmap-rs is licensed under dual Apache-2.0 and MIT licenses. |