/partitioninfo

Get information about a partition from an image file.

Primary LanguageCoffeeScriptMIT LicenseMIT

partitioninfo

npm version dependencies Build Status Build status

Get information about a partition from an image file.

Installation

Install partitioninfo by running:

$ npm install --save partitioninfo

Documentation

partitioninfo.get(image, definition) ⇒ Promise.<Object>

Kind: static method of partitioninfo
Summary: Get information from a partition
Returns: Promise.<Object> - partition information
Access: public

Param Type Description
image String image path
definition Object partition definition
definition.primary Number primary partition
[definition.logical] Number logical partition

Example

partitioninfo.get 'foo/bar.img',
	primary: 4
	logical: 1
.then (information) ->
	console.log(information.offset)
	console.log(information.size)

Support

If you're having any problem, please raise an issue on GitHub and the Resin.io team will be happy to help.

Tests

Run the test suite by doing:

$ gulp test

Contribute

Before submitting a PR, please make sure that you include tests, and that coffeelint runs without any warning:

$ gulp lint

License

The project is licensed under the MIT license.