| Message ID | 1172b234-348b-fd78-d421-6224843592bc@crashcourse.ca |
|---|---|
| State | New |
| Headers | show |
| Series | dev-manual: "--runonly" should be "--runall" | expand |
diff --git a/documentation/dev-manual/building.rst b/documentation/dev-manual/building.rst index c153eb9de..9983c7939 100644 --- a/documentation/dev-manual/building.rst +++ b/documentation/dev-manual/building.rst @@ -772,7 +772,7 @@ Follow these steps to populate your Downloads directory: #. *Populate Your Downloads Directory Without Building:* Use BitBake to fetch your sources but inhibit the build:: - $ bitbake target --runonly=fetch + $ bitbake target --runall=fetch The downloads directory (i.e. ``${DL_DIR}``) now has a "snapshot" of the source files in the form of tarballs, which can
To properly fetch all the sources as suggested by the docs, one should use "--runall=fetch". Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> ---