瀏覽代碼

Fix DEPENDS if using MbedTLS instead of OpenSSL

Signed-off-by: Alexander Vickberg <wickbergster@gmail.com>
Alexander Vickberg 5 年之前
父節點
當前提交
03aaa79eed
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      recipes-support/swupdate/swupdate.inc

+ 2 - 0
recipes-support/swupdate/swupdate.inc

@@ -99,6 +99,8 @@ python () {
 
     if 'CONFIG_SSL_IMPL_OPENSSL=y\n' in features:
         depends += ' openssl'
+    elif 'CONFIG_SSL_IMPL_MBEDTLS=y\n' in features:
+        depends += ' mbedtls'
 
     if 'CONFIG_JSON=y\n' in features:
         depends += ' json-c'