Introduce libparted constraints and proper partition alignment#109
Open
mschwan-phytec wants to merge 5 commits into
Open
Introduce libparted constraints and proper partition alignment#109mschwan-phytec wants to merge 5 commits into
mschwan-phytec wants to merge 5 commits into
Conversation
656f2a3 to
6ad4c72
Compare
Use libparted's alignment and constraint interface to exactly align partitions to a desired block size. Possible types of alignment are "minimal" and "optimal", with the same meaning as defined by libparted. This helps improving in read/write speed performance in most cases. As a sane default, 1 MiB is used as the default block alignment size and partitions always start at a multiple of this block size. Signed-off-by: Martin Schwan <m.schwan@phytec.de>
Explain that it is possible to specify a unit string in the size property and what the default is. Signed-off-by: Martin Schwan <m.schwan@phytec.de>
Rename the partition index variable, to not confuse it with indexes used in loops. Signed-off-by: Martin Schwan <m.schwan@phytec.de>
Bump version early now, so the development version can be used with the newly introduced partition alignment support. Signed-off-by: Martin Schwan <m.schwan@phytec.de>
Add layout configuration files for testing different alignment settings, with varying partition sizes. Signed-off-by: Martin Schwan <m.schwan@phytec.de>
bbfa14a to
e979e00
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Use libparted's alignment and constraint interface to exactly align partitions to a desired block size. Possible types of alignment are "minimal" and "optimal", with the same meaning as defined by libparted.
This helps improving in read/write speed performance in most cases. As a sane default, 1 MiB is used as the default block alignment size and partitions always start at a multiple of this block size.
Explain that it is possible to specify a unit string in the size property and what the default is.
Bump program version early now, so the development version can be used with the newly introduced partition alignment support.
Add layout configuration files for testing different alignment settings, with varying partition sizes.