diff mbox series

[RFC,2/3] bitbake.conf: Add new DEPLOY_DIR_FEED variable.

Message ID 20230719200252.1203047-3-charlie.johnston@ni.com
State New
Headers show
Series Add packagefeed recipe class | expand

Commit Message

Charlie Johnston July 19, 2023, 8:03 p.m. UTC
This change adds a new variable that defines where
feeds should be created when building a packagefeed.

For now, the location is ${DEPLOY_DIR}/feeds

Signed-off-by: Charlie Johnston <charlie.johnston@ni.com>
---
 meta/conf/bitbake.conf | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 8daaaad615..8c40937e62 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -450,6 +450,7 @@  DEPLOY_DIR_RPM = "${DEPLOY_DIR}/rpm"
 DEPLOY_DIR_DEB = "${DEPLOY_DIR}/deb"
 DEPLOY_DIR_IMAGE ?= "${DEPLOY_DIR}/images/${MACHINE}"
 DEPLOY_DIR_TOOLS = "${DEPLOY_DIR}/tools"
+DEPLOY_DIR_FEED ?= "${DEPLOY_DIR}/feeds/"
 
 PKGDATA_DIR = "${TMPDIR}/pkgdata/${MACHINE}"
 PKGDATA_DIR_SDK = "${TMPDIR}/pkgdata/${SDK_SYS}"