#image #clone #flash #cli #os #cli-tool

bin+lib liblitho

cli tool to flash/clone the images to storage devices

1 unstable release

0.1.0 Jun 2, 2024

#2171 in Command line utilities

Download history 74/week @ 2024-05-27 94/week @ 2024-06-03 7/week @ 2024-06-10

175 downloads per month

MIT license

24KB
539 lines

Litho

A simple and lightweight library and CLI tool to write images to block devices.

Command usage

  • Cloning a device to an image file:
litho clone --help
Usage: litho clone [OPTIONS] --file <FILE> --device <DEVICE>

Options:
  -f, --file <FILE>              file to which device should be cloned
  -d, --device <DEVICE>          device
  -b, --block-size <BLOCK_SIZE>  block size
  -s, --silent <SILENT>          message to be published [possible values: true, false]
  -h, --help                     Print help
  • Flashing an image file to a device:
litho flash --help
Usage: litho flash [OPTIONS] --file <FILE> --device <DEVICE>

Options:
  -f, --file <FILE>              file to be written to the device
  -d, --device <DEVICE>          device
  -b, --block-size <BLOCK_SIZE>  block size
  -s, --silent <SILENT>          message to be published [possible values: true, false]
  -h, --help                     Print help

API usage

  • Clone a device to an image file:
use litho::clone;
let image = "/home/user/image-file.img".to_string();
let device = "/dev/sda".to_string();
let block_size = 4096;

fn callback_fn(percentage: f64) {
    println!("{percentage}%");
}

litho::clone(image, device, block_size as usize, false, callback);
  • FLASH an image file to a device:
use litho::flash
let image = "/home/user/image-file.img".to_string();
let device = "/dev/sda".to_string();
let block_size = 4096;

fn callback_fn(percentage: f64) {
    println!("{percentage}%");
}

litho::flash(image, device, block_size as usize, false, callback);

Dependencies

~5–19MB
~230K SLoC