jffs2-rs Rust implementation of jffs2 reader🦀 TL;DR Extract the jffs2 image to the specified directory let path = Path::new("path/to/image.jffs2"); let output_path = Path::new("/tmp/some/where"); extract_jffs2(path, output_path).expect("Failed to extract file"); List all...