commit | 3e34cf7bffb87f3a96a87a4d1e0a76df7322b3c1 | [log] [tgz] |
---|---|---|
author | Piotr Wilczek <p.wilczek@samsung.com> | Sun Jan 27 22:59:25 2013 +0000 |
committer | Tom Rini <trini@ti.com> | Wed Feb 20 08:52:41 2013 -0500 |
tree | 39f54d31fe25188dd3b41a228b40690a81bb79cb | |
parent | c8876f1c72ac36879436278892e6c20a93174b6a [diff] |
gpt: fix partion size limit Currently, in gpt command, partion size is converted from string to unsigned long type using 'ustrtol' function. That type limits the partition size to 4GB. This patch changes the conversion function to 'ustrtoll' to return unsigned long long type. Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>