summaryrefslogtreecommitdiffstats
path: root/documentation/overview-manual/concepts.rst
diff options
context:
space:
mode:
authorAlexander Kanavin <alex@linutronix.de>2025-06-23 14:42:55 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-06-30 17:44:21 +0100
commit5ebf08ad8d7a79c9ad4c8abb004db6dbf88d9e22 (patch)
tree4e6c6a3eeb16576204e7679a87c2f9eb98e7346b /documentation/overview-manual/concepts.rst
parent1180a5b5919eb26942763a85762822adcca9ed65 (diff)
downloadpoky-5ebf08ad8d7a79c9ad4c8abb004db6dbf88d9e22.tar.gz
overview-manual: correct the bitbake tasks map section and diagram to account for sources in UNPACKDIR
(From yocto-docs rev: 52a6a642b56beb3dcf22de5ff9568f50ac138500) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/overview-manual/concepts.rst')
-rw-r--r--documentation/overview-manual/concepts.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst
index 590055501f..b34de4d361 100644
--- a/documentation/overview-manual/concepts.rst
+++ b/documentation/overview-manual/concepts.rst
@@ -2368,8 +2368,6 @@ The contents of ``libhello_0.1.bb`` are::
2368 # Change <username> accordingly 2368 # Change <username> accordingly
2369 SRC_URI = "git://github.com/<username>/libhello;branch=main;protocol=https" 2369 SRC_URI = "git://github.com/<username>/libhello;branch=main;protocol=https"
2370 2370
2371 S = "${WORKDIR}/git"
2372
2373 do_install(){ 2371 do_install(){
2374 install -d ${D}${includedir} 2372 install -d ${D}${includedir}
2375 install -d ${D}${libdir} 2373 install -d ${D}${libdir}
@@ -2394,8 +2392,6 @@ The contents of ``sayhello_0.1.bb`` are::
2394 DEPENDS += "libhello" 2392 DEPENDS += "libhello"
2395 RDEPENDS:${PN} += "libhello" 2393 RDEPENDS:${PN} += "libhello"
2396 2394
2397 S = "${WORKDIR}/git"
2398
2399 do_install(){ 2395 do_install(){
2400 install -d ${D}/usr/bin 2396 install -d ${D}/usr/bin
2401 install -m 0700 sayhello ${D}/usr/bin 2397 install -m 0700 sayhello ${D}/usr/bin