diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-02-08 23:52:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-14 08:40:58 +0000 |
commit | 0b156dac83258a2789f21038216e43aacc91555a (patch) | |
tree | 3d814ee83abb20173b099e2f8dd9c83365d45d94 /scripts/lib/image | |
parent | f923f0fde8af63c6ba7c232d1f25dd970d9e22e1 (diff) | |
download | poky-0b156dac83258a2789f21038216e43aacc91555a.tar.gz |
wic: allow creation of partitions not in table
For some architectures it is necessary to reserve space on disk without
it being present in the partition table.
For example, u-boot on i.mx is placed at an offset of 1kB on the sdcard.
While it would be possible to create a partition at that offset and
place u-boot there, it would then be necessary to update the default
u-boot environment to use partition 2 on the mmc instead of partition 1.
(From OE-Core rev: 233b631ece5ee14d057932c146327065064b5196)
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/image')
-rw-r--r-- | scripts/lib/image/help.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index 0d8a6adfaa..aab0b609af 100644 --- a/scripts/lib/image/help.py +++ b/scripts/lib/image/help.py | |||
@@ -737,6 +737,12 @@ DESCRIPTION | |||
737 | to start a partition on an x KBytes | 737 | to start a partition on an x KBytes |
738 | boundary. | 738 | boundary. |
739 | 739 | ||
740 | --no-table: This option is specific to wic. Space will be | ||
741 | reserved for the partition and it will be | ||
742 | populated but it will not be added to the | ||
743 | partition table. It may be useful for | ||
744 | bootloaders. | ||
745 | |||
740 | * bootloader | 746 | * bootloader |
741 | 747 | ||
742 | This command allows the user to specify various bootloader | 748 | This command allows the user to specify various bootloader |