forked from JustPretender/fastboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflash.rs
59 lines (49 loc) · 1.81 KB
/
flash.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use fastboot::Fastboot;
use getopts::Options;
use usbio::UsbDevice;
fn usage(program: &str, opts: &Options) {
let ver = env!("CARGO_PKG_VERSION");
let brief = format!("Version: {ver}\nUsage: {program} [options]");
println!("{}", opts.usage(&brief));
}
// SpacemiT K1x
const DEFAULT_VID: u16 = 0x361c;
const DEFAULT_PID: u16 = 0x1001;
fn main() {
let args: Vec<String> = std::env::args().collect();
let program = args[0].clone();
let mut opts = Options::new();
opts.optflag("h", "help", "Print help");
opts.optopt("", "vid", "Vendor ID", "<hex>");
opts.optopt("", "pid", "Product ID", "<hex>");
opts.optopt("p", "partition", "Partition to flash", "<string>");
if args.len() <= 1 {
usage(&program, &opts);
return;
}
let matches = opts.parse(&args[1..]).unwrap_or_else(|err| {
eprintln!("{} failed to parse arguments ({})!", &program, err);
usage(&program, &opts);
std::process::exit(-1);
});
if matches.opt_present("h") {
usage(&program, &opts);
std::process::exit(0);
}
let vid = match matches.opt_str("vid") {
Some(v) => u16::from_str_radix(&v, 16).expect("Parsing vendor ID failed"),
None => DEFAULT_VID,
};
let pid = match matches.opt_str("pid") {
Some(v) => u16::from_str_radix(&v, 16).expect("Parsing product ID failed"),
None => DEFAULT_PID,
};
let partition = matches.opt_str("partition").unwrap();
let di = nusb::list_devices()
.unwrap()
.find(|d| d.vendor_id() == vid && d.product_id() == pid)
.expect("Device not found, is it connected and in the right mode?");
// NOTE: The Fastboot trait gets us the necessary operations on the device.
let mut dev = UsbDevice::new(di);
println!("Flashing: {:?}", dev.flash(&partition));
}