technical_overview.md: replace DEPLOY_DIR_DEB with isar-apt repo paths

Message ID 20260515110655.671907-1-srinuvasan.a@siemens.com
State New
Headers show
Series technical_overview.md: replace DEPLOY_DIR_DEB with isar-apt repo paths | expand

Commit Message

srinuvasan.a May 15, 2026, 11:06 a.m. UTC
From: Srinuvasan A <srinuvasan.a@siemens.com>

Presently do_deploy_deb task adds WORKDIR/*.deb to {REPO_ISAR_DIR}/${DISTRO},
package lookup during target population uses the mounted /isar-apt repo,
hence remove outdated references to ${DEPLOY_DIR_DEB}, which is
not used in current Isar sources.

Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
---
 doc/technical_overview.md | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

Patch

diff --git a/doc/technical_overview.md b/doc/technical_overview.md
index 82b2ba0f..b7905be0 100644
--- a/doc/technical_overview.md
+++ b/doc/technical_overview.md
@@ -227,8 +227,9 @@  Both consist of the following steps:
         `dpkg-deb` to construct a Debian package from a folder of files,
 	without compiling anything
 
-6. Task `do_deploy_deb`: install successfully built packages
-   `${WORKDIR}/*.deb` to deploy directory `${DEPLOY_DIR_DEB}`
+6. Task `do_deploy_deb`: add successfully built packages
+   `${WORKDIR}/*.deb` to the isar-apt repository
+   `${REPO_ISAR_DIR}/${DISTRO}`
 
 ## 3.6 Populate Target Filesystem
 
@@ -237,7 +238,8 @@  variable. Task `do_populate` performs the following:
 
 1. Parse IMAGE_INSTALL variable.
 
-2. Find respective packages in `${DEPLOY_DIR_DEB}`.
+2. Find respective packages in the isar-apt repository
+   (`${REPO_ISAR_DIR}/${DISTRO}`), mounted as `/isar-apt` in the rootfs.
 
 3. Copy them to deb folder in dedicated target filesystem.