diff --git a/classes/rdkv-community-configs.bbclass b/classes/rdkv-community-configs.bbclass index ae5f632..2771a4e 100644 --- a/classes/rdkv-community-configs.bbclass +++ b/classes/rdkv-community-configs.bbclass @@ -23,6 +23,11 @@ install_community_rfc_configs() { if [ -f "${MANIFEST_PATH_RDK_IMAGES}/conf/community-rfc-configs.ini" ]; then bbnote "Installing community RFC configs..." install -D -m 0644 ${MANIFEST_PATH_RDK_IMAGES}/conf/community-rfc-configs.ini ${IMAGE_ROOTFS}/etc/rfcdefaults/community-rfc-configs.ini + if [ -n "${DAC_APPSTORE_URL}" ]; then + echo "Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.DAC.ConfigURL=${DAC_APPSTORE_URL}" >> ${IMAGE_ROOTFS}/etc/rfcdefaults/community-rfc-configs.ini + else + bbwarn "DAC_APPSTORE_URL is not set. Skipping DAC configuration." + fi fi }