summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMarco Cavallini <m.cavallini@koansoftware.com>2025-07-21 11:39:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-01 11:59:18 +0100
commita1ed615a2d2c1bbaf88eb39acc758bfa88c40921 (patch)
tree4d2b98a843de1ae51198d747eeea4e33daf24703 /documentation
parent6e5d021cd6f80401978fd018554cfb891e8fd43b (diff)
downloadpoky-a1ed615a2d2c1bbaf88eb39acc758bfa88c40921.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: 1cc65ddf1a074f61fe5a63d222f3079b7fcb4c1e) Signed-off-by: Marco Cavallini <m.cavallini@koansoftware.com> Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/start.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/documentation/dev-manual/start.rst b/documentation/dev-manual/start.rst
index 8fdc95ecb5..dd0eebc0a5 100644
--- a/documentation/dev-manual/start.rst
+++ b/documentation/dev-manual/start.rst
@@ -549,6 +549,7 @@ your Yocto Project build host:
549 DISKPART> select vdisk file="<path_to_VHDX_file>" 549 DISKPART> select vdisk file="<path_to_VHDX_file>"
550 DISKPART> attach vdisk readonly 550 DISKPART> attach vdisk readonly
551 DISKPART> compact vdisk 551 DISKPART> compact vdisk
552 DISKPART> detach
552 DISKPART> exit 553 DISKPART> exit
553 554
554.. note:: 555.. note::