diff options
author | Marco Cavallini <m.cavallini@koansoftware.com> | 2025-07-21 11:39:38 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2025-08-04 07:55:07 -0700 |
commit | 1fd82d514fec901508726185ed1fb1c110c70512 (patch) | |
tree | 33996591988e78cb6753d2a82845ac85be204c95 /documentation | |
parent | 7d110f9a9402187fadfe3add4b982e091825b441 (diff) | |
download | poky-1fd82d514fec901508726185ed1fb1c110c70512.tar.gz |
dev-manual/start.rst: added missing command in Optimize your VHDX file using DiskPart
After compact vsdisk you have to detach it before exiting
otherwise the vdisk remains attached.
DISKPART> select vdisk file="<path_to_VHDX_file>"
DISKPART> attach vdisk readonly
DISKPART> compact vdisk
DISKPART> detach <------------ new missing command
DISKPART> exit
(From yocto-docs rev: a1dc91850e0353866dc9b461fce8c08724e49dae)
Signed-off-by: Marco Cavallini <m.cavallini@koansoftware.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 1cc65ddf1a074f61fe5a63d222f3079b7fcb4c1e)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/dev-manual/start.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/documentation/dev-manual/start.rst b/documentation/dev-manual/start.rst index f4da61b53f..a9e08dd551 100644 --- a/documentation/dev-manual/start.rst +++ b/documentation/dev-manual/start.rst | |||
@@ -543,6 +543,7 @@ your Yocto Project build host: | |||
543 | DISKPART> select vdisk file="<path_to_VHDX_file>" | 543 | DISKPART> select vdisk file="<path_to_VHDX_file>" |
544 | DISKPART> attach vdisk readonly | 544 | DISKPART> attach vdisk readonly |
545 | DISKPART> compact vdisk | 545 | DISKPART> compact vdisk |
546 | DISKPART> detach | ||
546 | DISKPART> exit | 547 | DISKPART> exit |
547 | 548 | ||
548 | .. note:: | 549 | .. note:: |