diff --git a/classes/wolfssl-helper.bbclass b/classes/wolfssl-helper.bbclass index e1b927d..3b78970 100644 --- a/classes/wolfssl-helper.bbclass +++ b/classes/wolfssl-helper.bbclass @@ -101,7 +101,7 @@ def wolfssl_conditional_require_mode(d, package_name, mode, inc_file=None): bb.debug(2, f"{package_name}: {mode_var_name}='{current_mode_str}' does not contain '{single_mode}' - skipping") continue - bb.note(f"{package_name}: {mode_var_name}='{current_mode_str}' contains '{single_mode}' mode - including {single_inc}") + bb.debug(2, f"{package_name}: {mode_var_name}='{current_mode_str}' contains '{single_mode}' mode - including {single_inc}") full_inc_file = os.path.join(layerdir, single_inc) bb.parse.mark_dependency(d, full_inc_file) try: @@ -157,7 +157,7 @@ def wolfssl_conditional_require_flag(d, flag_name, inc_file): return False # Flag found in list - include the configuration - bb.note(f"{package_name}: {flags_var_name}='{current_flags_str}' contains '{flag_name}' flag - including {inc_file}") + bb.debug(2, f"{package_name}: {flags_var_name}='{current_flags_str}' contains '{flag_name}' flag - including {inc_file}") layerdir = d.getVar('WOLFSSL_LAYERDIR') if not layerdir: diff --git a/classes/wolfssl-osp-support.bbclass b/classes/wolfssl-osp-support.bbclass index 17d74f8..59de691 100644 --- a/classes/wolfssl-osp-support.bbclass +++ b/classes/wolfssl-osp-support.bbclass @@ -74,11 +74,11 @@ def wolfssl_osp_conditional_include(d, feature_name, inc_file, allowed_providers # Check if current provider is in the allowed list if current_provider not in allowed_providers: - bb.note(f"{feature_name}: PREFERRED_PROVIDER is '{current_provider}', but only {allowed_providers} are supported - skipping wolfSSL backend") + bb.debug(2, f"{feature_name}: PREFERRED_PROVIDER is '{current_provider}', but only {allowed_providers} are supported - skipping wolfSSL backend") return False # Both conditions met - include the configuration - bb.note(f"{feature_name}: WOLFSSL_FEATURES enabled + provider '{current_provider}' allowed - enabling wolfSSL backend") + bb.debug(2, f"{feature_name}: WOLFSSL_FEATURES enabled + provider '{current_provider}' allowed - enabling wolfSSL backend") # Resolve full path to include file layer_dir = d.getVar('WOLFSSL_LAYERDIR') @@ -130,11 +130,11 @@ def wolfssl_conditional_include_ext(d, enable_for, inc_file, allowed_providers=N # Check if current provider is in the allowed list if current_provider not in allowed_providers: - bb.note(f"{enable_for}: PREFERRED_PROVIDER is '{current_provider}', but only {allowed_providers} are supported - skipping wolfSSL backend") + bb.debug(2, f"{enable_for}: PREFERRED_PROVIDER is '{current_provider}', but only {allowed_providers} are supported - skipping wolfSSL backend") return False # All conditions met - include the configuration - bb.note(f"{enable_for}: IMAGE_INSTALL/WOLFSSL_FEATURES enabled + provider '{current_provider}' allowed - enabling wolfSSL backend") + bb.debug(2, f"{enable_for}: IMAGE_INSTALL/WOLFSSL_FEATURES enabled + provider '{current_provider}' allowed - enabling wolfSSL backend") # Resolve full path to include file layer_dir = d.getVar('WOLFSSL_LAYERDIR') @@ -213,7 +213,7 @@ def wolfssl_osp_include_if_provider(d, inc_file, allowed_providers): bb.debug(2, f"Current provider '{current_provider}' not in {allowed_providers} - skipping configuration") return False - bb.note(f"Provider '{current_provider}' matches - including {inc_file}") + bb.debug(2, f"Provider '{current_provider}' matches - including {inc_file}") # Resolve full path to include file layer_dir = d.getVar('WOLFSSL_LAYERDIR') diff --git a/inc/curl/curl-enable-wolfprovider-fips.inc b/inc/curl/curl-enable-wolfprovider-fips.inc index 14c1f6d..3abb217 100644 --- a/inc/curl/curl-enable-wolfprovider-fips.inc +++ b/inc/curl/curl-enable-wolfprovider-fips.inc @@ -3,7 +3,7 @@ def curl_get_wolfprovider_fips_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("curl-enable-wolfprovider-fips.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"curl-enable-wolfprovider-fips.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -23,7 +23,7 @@ def curl_get_wolfprovider_fips_inc(d): else: inc_file = os.path.join(layerdir, 'inc/curl/%s/curl-enable-wolfprovider-fips-legacy.inc' % codename) - bb.note("curl-enable-wolfprovider-fips.inc: Including file: %s" % inc_file) + bb.debug(2,"curl-enable-wolfprovider-fips.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/gnupg/gnupg-enable-libgcrypt-wolfssl.inc b/inc/gnupg/gnupg-enable-libgcrypt-wolfssl.inc index e0d9f9f..66dfe06 100644 --- a/inc/gnupg/gnupg-enable-libgcrypt-wolfssl.inc +++ b/inc/gnupg/gnupg-enable-libgcrypt-wolfssl.inc @@ -3,7 +3,7 @@ def gnupg_get_libgcrypt_wolfssl_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("gnupg-enable-libgcrypt-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"gnupg-enable-libgcrypt-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -23,7 +23,7 @@ def gnupg_get_libgcrypt_wolfssl_inc(d): else: inc_file = os.path.join(layerdir, 'inc/gnupg/%s/gnupg-enable-libgcrypt-wolfssl-legacy.inc' % codename) - bb.note("gnupg-enable-libgcrypt-wolfssl.inc: Including file: %s" % inc_file) + bb.debug(2,"gnupg-enable-libgcrypt-wolfssl.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/gnutls/gnutls-enable-wolfssl.inc b/inc/gnutls/gnutls-enable-wolfssl.inc index 06a9e87..b6fad70 100644 --- a/inc/gnutls/gnutls-enable-wolfssl.inc +++ b/inc/gnutls/gnutls-enable-wolfssl.inc @@ -3,7 +3,7 @@ def gnutls_get_wolfssl_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("gnutls-enable-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"gnutls-enable-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -23,7 +23,7 @@ def gnutls_get_wolfssl_inc(d): else: inc_file = os.path.join(layerdir, 'inc/gnutls/%s/gnutls-enable-wolfssl-legacy.inc' % codename) - bb.note("gnutls-enable-wolfssl.inc: Including file: %s" % inc_file) + bb.debug(2,"gnutls-enable-wolfssl.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/libgcrypt/libgcrypt-enable-wolfssl.inc b/inc/libgcrypt/libgcrypt-enable-wolfssl.inc index 0bbdbeb..876840c 100644 --- a/inc/libgcrypt/libgcrypt-enable-wolfssl.inc +++ b/inc/libgcrypt/libgcrypt-enable-wolfssl.inc @@ -3,7 +3,7 @@ def libgcrypt_get_wolfssl_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("libgcrypt-enable-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"libgcrypt-enable-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -23,7 +23,7 @@ def libgcrypt_get_wolfssl_inc(d): else: inc_file = os.path.join(layerdir, 'inc/libgcrypt/%s/libgcrypt-enable-wolfssl-legacy.inc' % codename) - bb.note("libgcrypt-enable-wolfssl.inc: Including file: %s" % inc_file) + bb.debug(2,"libgcrypt-enable-wolfssl.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/libssh/libssh-enable-libgcrypt-wolfssl.inc b/inc/libssh/libssh-enable-libgcrypt-wolfssl.inc index fb4e9cf..dd18759 100644 --- a/inc/libssh/libssh-enable-libgcrypt-wolfssl.inc +++ b/inc/libssh/libssh-enable-libgcrypt-wolfssl.inc @@ -3,7 +3,7 @@ def libssh_get_libgcrypt_wolfssl_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("libssh-enable-libgcrypt-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"libssh-enable-libgcrypt-wolfssl.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -23,7 +23,7 @@ def libssh_get_libgcrypt_wolfssl_inc(d): else: inc_file = os.path.join(layerdir, 'inc/libssh/%s/libssh-enable-libgcrypt-wolfssl-legacy.inc' % codename) - bb.note("libssh-enable-libgcrypt-wolfssl.inc: Including file: %s" % inc_file) + bb.debug(2,"libssh-enable-libgcrypt-wolfssl.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/nettle/nettle.inc b/inc/nettle/nettle.inc index f8e8387..d821623 100644 --- a/inc/nettle/nettle.inc +++ b/inc/nettle/nettle.inc @@ -3,7 +3,7 @@ def nettle_get_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("nettle.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"nettle.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -23,7 +23,7 @@ def nettle_get_inc(d): else: inc_file = os.path.join(layerdir, 'inc/nettle/%s/nettle-legacy.inc' % codename) - bb.note("nettle.inc: Including file: %s" % inc_file) + bb.debug(2,"nettle.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/rsyslog/rsyslog-enable-fips-crypto.inc b/inc/rsyslog/rsyslog-enable-fips-crypto.inc index e1fa70e..9fa4470 100644 --- a/inc/rsyslog/rsyslog-enable-fips-crypto.inc +++ b/inc/rsyslog/rsyslog-enable-fips-crypto.inc @@ -3,7 +3,7 @@ def rsyslog_get_fips_crypto_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("rsyslog-enable-fips-crypto.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"rsyslog-enable-fips-crypto.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -23,7 +23,7 @@ def rsyslog_get_fips_crypto_inc(d): else: inc_file = os.path.join(layerdir, 'inc/rsyslog/%s/rsyslog-enable-fips-crypto-legacy.inc' % codename) - bb.note("rsyslog-enable-fips-crypto.inc: Including file: %s" % inc_file) + bb.debug(2,"rsyslog-enable-fips-crypto.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolf-py-tests/wolfcrypt-py-enable-tests.inc b/inc/wolf-py-tests/wolfcrypt-py-enable-tests.inc index 0b021a0..1296b71 100644 --- a/inc/wolf-py-tests/wolfcrypt-py-enable-tests.inc +++ b/inc/wolf-py-tests/wolfcrypt-py-enable-tests.inc @@ -3,7 +3,7 @@ def wolfcrypt_py_get_tests_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfcrypt-py-enable-tests.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfcrypt-py-enable-tests.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfcrypt_py_get_tests_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolf-py-tests/wolfcrypt-py-enable-tests-legacy.inc') - bb.note("wolfcrypt-py-enable-tests.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfcrypt-py-enable-tests.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolf-py-tests/wolfssl-enable-wolf-py-tests.inc b/inc/wolf-py-tests/wolfssl-enable-wolf-py-tests.inc index 2d1f354..cf29d3d 100644 --- a/inc/wolf-py-tests/wolfssl-enable-wolf-py-tests.inc +++ b/inc/wolf-py-tests/wolfssl-enable-wolf-py-tests.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolf_py_tests_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolf-py-tests.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolf-py-tests.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolf_py_tests_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolf-py-tests/wolfssl-enable-wolf-py-tests-legacy.inc') - bb.note("wolfssl-enable-wolf-py-tests.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolf-py-tests.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolf-py-tests/wolfssl-py-enable-tests.inc b/inc/wolf-py-tests/wolfssl-py-enable-tests.inc index 3d73113..cc7d7f7 100644 --- a/inc/wolf-py-tests/wolfssl-py-enable-tests.inc +++ b/inc/wolf-py-tests/wolfssl-py-enable-tests.inc @@ -3,7 +3,7 @@ def wolfssl_py_get_tests_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-py-enable-tests.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-py-enable-tests.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_py_get_tests_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolf-py-tests/wolfssl-py-enable-tests-legacy.inc') - bb.note("wolfssl-py-enable-tests.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-py-enable-tests.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfclu/wolfssl-enable-wolfclu.inc b/inc/wolfclu/wolfssl-enable-wolfclu.inc index f5bb875..047434d 100644 --- a/inc/wolfclu/wolfssl-enable-wolfclu.inc +++ b/inc/wolfclu/wolfssl-enable-wolfclu.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfclu_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfclu.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfclu.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfclu_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfclu/wolfssl-enable-wolfclu-legacy.inc') - bb.note("wolfssl-enable-wolfclu.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfclu.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfcrypt-py/wolfssl-enable-wolfcrypt-py.inc b/inc/wolfcrypt-py/wolfssl-enable-wolfcrypt-py.inc index 09a4a32..9954ea0 100644 --- a/inc/wolfcrypt-py/wolfssl-enable-wolfcrypt-py.inc +++ b/inc/wolfcrypt-py/wolfssl-enable-wolfcrypt-py.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfcrypt_py_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfcrypt-py.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfcrypt-py.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfcrypt_py_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfcrypt-py/wolfssl-enable-wolfcrypt-py-legacy.inc') - bb.note("wolfssl-enable-wolfcrypt-py.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfcrypt-py.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfcryptbenchmark/wolfssl-enable-wolfcryptbenchmark.inc b/inc/wolfcryptbenchmark/wolfssl-enable-wolfcryptbenchmark.inc index 138c3cf..a0be003 100644 --- a/inc/wolfcryptbenchmark/wolfssl-enable-wolfcryptbenchmark.inc +++ b/inc/wolfcryptbenchmark/wolfssl-enable-wolfcryptbenchmark.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfcryptbenchmark_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfcryptbenchmark.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfcryptbenchmark.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfcryptbenchmark_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfcryptbenchmark/wolfssl-enable-wolfcryptbenchmark-legacy.inc') - bb.note("wolfssl-enable-wolfcryptbenchmark.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfcryptbenchmark.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfcrypttest/wolfssl-enable-wolfcrypttest.inc b/inc/wolfcrypttest/wolfssl-enable-wolfcrypttest.inc index 9c6d103..73d019e 100644 --- a/inc/wolfcrypttest/wolfssl-enable-wolfcrypttest.inc +++ b/inc/wolfcrypttest/wolfssl-enable-wolfcrypttest.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfcrypttest_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfcrypttest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfcrypttest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfcrypttest_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfcrypttest/wolfssl-enable-wolfcrypttest-legacy.inc') - bb.note("wolfssl-enable-wolfcrypttest.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfcrypttest.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfengine/openssl/openssl-enable-wolfengine.inc b/inc/wolfengine/openssl/openssl-enable-wolfengine.inc index 4f68fa4..83b46f4 100644 --- a/inc/wolfengine/openssl/openssl-enable-wolfengine.inc +++ b/inc/wolfengine/openssl/openssl-enable-wolfengine.inc @@ -3,7 +3,7 @@ def openssl_get_wolfengine_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("openssl-enable-wolfengine.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"openssl-enable-wolfengine.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def openssl_get_wolfengine_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfengine/openssl/openssl-enable-wolfengine-legacy.inc') - bb.note("openssl-enable-wolfengine.inc: Including file: %s" % inc_file) + bb.debug(2,"openssl-enable-wolfengine.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfengine/wolfssl-enable-wolfengine.inc b/inc/wolfengine/wolfssl-enable-wolfengine.inc index 5546091..254ca90 100644 --- a/inc/wolfengine/wolfssl-enable-wolfengine.inc +++ b/inc/wolfengine/wolfssl-enable-wolfengine.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfengine_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfengine.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfengine.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfengine_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfengine/wolfssl-enable-wolfengine-legacy.inc') - bb.note("wolfssl-enable-wolfengine.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfengine.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfenginetest/wolfengine-enable-test.inc b/inc/wolfenginetest/wolfengine-enable-test.inc index 38f10b7..bd863a8 100644 --- a/inc/wolfenginetest/wolfengine-enable-test.inc +++ b/inc/wolfenginetest/wolfengine-enable-test.inc @@ -3,7 +3,7 @@ def wolfengine_get_test_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfengine-enable-test.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfengine-enable-test.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfengine_get_test_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfenginetest/wolfengine-enable-test-legacy.inc') - bb.note("wolfengine-enable-test.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfengine-enable-test.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfenginetest/wolfssl-enable-wolfenginetest.inc b/inc/wolfenginetest/wolfssl-enable-wolfenginetest.inc index b98f8f7..4e9cac6 100644 --- a/inc/wolfenginetest/wolfssl-enable-wolfenginetest.inc +++ b/inc/wolfenginetest/wolfssl-enable-wolfenginetest.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfenginetest_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfenginetest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfenginetest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfenginetest_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfenginetest/wolfssl-enable-wolfenginetest-legacy.inc') - bb.note("wolfssl-enable-wolfenginetest.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfenginetest.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfpkcs11/wolfssl-enable-wolfpkcs11.inc b/inc/wolfpkcs11/wolfssl-enable-wolfpkcs11.inc index d24cacd..54fa146 100644 --- a/inc/wolfpkcs11/wolfssl-enable-wolfpkcs11.inc +++ b/inc/wolfpkcs11/wolfssl-enable-wolfpkcs11.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfpkcs11_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfpkcs11.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfpkcs11.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfpkcs11_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfpkcs11/wolfssl-enable-wolfpkcs11-legacy.inc') - bb.note("wolfssl-enable-wolfpkcs11.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfpkcs11.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/openssh/openssh-enable-wolfprovider.inc b/inc/wolfprovider/openssh/openssh-enable-wolfprovider.inc index edef065..2a585c9 100644 --- a/inc/wolfprovider/openssh/openssh-enable-wolfprovider.inc +++ b/inc/wolfprovider/openssh/openssh-enable-wolfprovider.inc @@ -3,7 +3,7 @@ def openssh_get_wolfprovider_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("openssh-enable-wolfprovider.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"openssh-enable-wolfprovider.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -34,7 +34,7 @@ def openssh_get_wolfprovider_inc(d): # If no codename detected, use scarthgap as default inc_file = os.path.join(layerdir, 'inc/wolfprovider/openssh/scarthgap/openssh-enable-wolfprovider-%s.inc' % file_type) - bb.note("openssh-enable-wolfprovider.inc: Including file: %s" % inc_file) + bb.debug(2,"openssh-enable-wolfprovider.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/openssl/openssl-enable-wolfprovider-replace-default.inc b/inc/wolfprovider/openssl/openssl-enable-wolfprovider-replace-default.inc index c53b8a9..4d7d7cc 100644 --- a/inc/wolfprovider/openssl/openssl-enable-wolfprovider-replace-default.inc +++ b/inc/wolfprovider/openssl/openssl-enable-wolfprovider-replace-default.inc @@ -3,7 +3,7 @@ def openssl_get_wolfprovider_replace_default_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("openssl-enable-wolfprovider-replace-default.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"openssl-enable-wolfprovider-replace-default.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -34,7 +34,7 @@ def openssl_get_wolfprovider_replace_default_inc(d): # If no codename detected, use scarthgap as default inc_file = os.path.join(layerdir, 'inc/wolfprovider/openssl/scarthgap/openssl-enable-wolfprovider-replace-default-%s.inc' % file_type) - bb.note("openssl-enable-wolfprovider-replace-default.inc: Including file: %s" % inc_file) + bb.debug(2,"openssl-enable-wolfprovider-replace-default.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/openssl/openssl-enable-wolfprovider.inc b/inc/wolfprovider/openssl/openssl-enable-wolfprovider.inc index aaa9cff..08ceb3d 100644 --- a/inc/wolfprovider/openssl/openssl-enable-wolfprovider.inc +++ b/inc/wolfprovider/openssl/openssl-enable-wolfprovider.inc @@ -3,7 +3,7 @@ def openssl_get_wolfprovider_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("openssl-enable-wolfprovider.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"openssl-enable-wolfprovider.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -34,7 +34,7 @@ def openssl_get_wolfprovider_inc(d): # If no codename detected, use scarthgap as default inc_file = os.path.join(layerdir, 'inc/wolfprovider/openssl/scarthgap/openssl-enable-wolfprovider-%s.inc' % file_type) - bb.note("openssl-enable-wolfprovider.inc: Including file: %s" % inc_file) + bb.debug(2,"openssl-enable-wolfprovider.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/wolfprovider-enable-replace-default-unittest.inc b/inc/wolfprovider/wolfprovider-enable-replace-default-unittest.inc index 8b18ce9..5121583 100644 --- a/inc/wolfprovider/wolfprovider-enable-replace-default-unittest.inc +++ b/inc/wolfprovider/wolfprovider-enable-replace-default-unittest.inc @@ -3,7 +3,7 @@ def wolfprovider_get_replace_default_unittest_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfprovider-enable-replace-default-unittest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfprovider-enable-replace-default-unittest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfprovider_get_replace_default_unittest_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfprovider/wolfprovider-enable-replace-default-unittest-legacy.inc') - bb.note("wolfprovider-enable-replace-default-unittest.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfprovider-enable-replace-default-unittest.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/wolfprovider-enable-unittest.inc b/inc/wolfprovider/wolfprovider-enable-unittest.inc index 3524520..2b26d35 100644 --- a/inc/wolfprovider/wolfprovider-enable-unittest.inc +++ b/inc/wolfprovider/wolfprovider-enable-unittest.inc @@ -3,7 +3,7 @@ def wolfprovider_get_unittest_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfprovider-enable-unittest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfprovider-enable-unittest.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfprovider_get_unittest_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfprovider/wolfprovider-enable-unittest-legacy.inc') - bb.note("wolfprovider-enable-unittest.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfprovider-enable-unittest.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/wolfssl-enable-wolfprovider-fips-ready.inc b/inc/wolfprovider/wolfssl-enable-wolfprovider-fips-ready.inc index b7393b9..839bbb6 100644 --- a/inc/wolfprovider/wolfssl-enable-wolfprovider-fips-ready.inc +++ b/inc/wolfprovider/wolfssl-enable-wolfprovider-fips-ready.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfprovider_fips_ready_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfprovider-fips-ready.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfprovider-fips-ready.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfprovider_fips_ready_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfprovider/wolfssl-enable-wolfprovider-fips-ready-legacy.inc') - bb.note("wolfssl-enable-wolfprovider-fips-ready.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfprovider-fips-ready.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/wolfssl-enable-wolfprovider-fips.inc b/inc/wolfprovider/wolfssl-enable-wolfprovider-fips.inc index 251a8c4..af7daf5 100644 --- a/inc/wolfprovider/wolfssl-enable-wolfprovider-fips.inc +++ b/inc/wolfprovider/wolfssl-enable-wolfprovider-fips.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfprovider_fips_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfprovider-fips.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfprovider-fips.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfprovider_fips_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfprovider/wolfssl-enable-wolfprovider-fips-legacy.inc') - bb.note("wolfssl-enable-wolfprovider-fips.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfprovider-fips.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfprovider/wolfssl-enable-wolfprovider.inc b/inc/wolfprovider/wolfssl-enable-wolfprovider.inc index 59ca7ae..d479cc5 100644 --- a/inc/wolfprovider/wolfssl-enable-wolfprovider.inc +++ b/inc/wolfprovider/wolfssl-enable-wolfprovider.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfprovider_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfprovider.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfprovider.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfprovider_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfprovider/wolfssl-enable-wolfprovider-legacy.inc') - bb.note("wolfssl-enable-wolfprovider.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfprovider.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssh/wolfssl-enable-wolfssh.inc b/inc/wolfssh/wolfssl-enable-wolfssh.inc index 5978a2e..61fc209 100644 --- a/inc/wolfssh/wolfssl-enable-wolfssh.inc +++ b/inc/wolfssh/wolfssl-enable-wolfssh.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfssh_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfssh.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfssh.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfssh_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssh/wolfssl-enable-wolfssh-legacy.inc') - bb.note("wolfssl-enable-wolfssh.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfssh.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssl-fips-ready/wolfssl-enable-gnutls.inc b/inc/wolfssl-fips-ready/wolfssl-enable-gnutls.inc index b5af39c..a564ac0 100644 --- a/inc/wolfssl-fips-ready/wolfssl-enable-gnutls.inc +++ b/inc/wolfssl-fips-ready/wolfssl-enable-gnutls.inc @@ -3,7 +3,7 @@ def wolfssl_get_fips_ready_gnutls_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-fips-ready/wolfssl-enable-gnutls.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-fips-ready/wolfssl-enable-gnutls.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_fips_ready_gnutls_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-fips-ready/wolfssl-enable-gnutls-legacy.inc') - bb.note("wolfssl-fips-ready/wolfssl-enable-gnutls.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-fips-ready/wolfssl-enable-gnutls.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc b/inc/wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc index 0488d8c..d6fc6d1 100644 --- a/inc/wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc +++ b/inc/wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc @@ -3,7 +3,7 @@ def wolfssl_get_fips_ready_libgcrypt_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_fips_ready_libgcrypt_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-fips-ready/wolfssl-enable-libgcrypt-legacy.inc') - bb.note("wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-fips-ready/wolfssl-enable-libgcrypt.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssl-fips/wolfssl-commercial-gcs.inc b/inc/wolfssl-fips/wolfssl-commercial-gcs.inc index 9fcad4a..a56334a 100644 --- a/inc/wolfssl-fips/wolfssl-commercial-gcs.inc +++ b/inc/wolfssl-fips/wolfssl-commercial-gcs.inc @@ -3,7 +3,7 @@ def wolfssl_get_commercial_gcs_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-commercial-gcs.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-commercial-gcs.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_commercial_gcs_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-fips/wolfssl-commercial-gcs-legacy.inc') - bb.note("wolfssl-commercial-gcs.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-commercial-gcs.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssl-fips/wolfssl-enable-gnutls.inc b/inc/wolfssl-fips/wolfssl-enable-gnutls.inc index 86e987a..158e500 100644 --- a/inc/wolfssl-fips/wolfssl-enable-gnutls.inc +++ b/inc/wolfssl-fips/wolfssl-enable-gnutls.inc @@ -3,7 +3,7 @@ def wolfssl_get_gnutls_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-gnutls.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-gnutls.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_gnutls_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-fips/wolfssl-enable-gnutls-legacy.inc') - bb.note("wolfssl-enable-gnutls.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-gnutls.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssl-fips/wolfssl-enable-libgcrypt.inc b/inc/wolfssl-fips/wolfssl-enable-libgcrypt.inc index 56a2c25..b3c6dab 100644 --- a/inc/wolfssl-fips/wolfssl-enable-libgcrypt.inc +++ b/inc/wolfssl-fips/wolfssl-enable-libgcrypt.inc @@ -3,7 +3,7 @@ def wolfssl_get_libgcrypt_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-libgcrypt.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-libgcrypt.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_libgcrypt_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-fips/wolfssl-enable-libgcrypt-legacy.inc') - bb.note("wolfssl-enable-libgcrypt.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-libgcrypt.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssl-linuxkm/wolfssl-linuxkm-sign-module.inc b/inc/wolfssl-linuxkm/wolfssl-linuxkm-sign-module.inc index 06f0eda..2012444 100644 --- a/inc/wolfssl-linuxkm/wolfssl-linuxkm-sign-module.inc +++ b/inc/wolfssl-linuxkm/wolfssl-linuxkm-sign-module.inc @@ -3,7 +3,7 @@ def wolfssl_linuxkm_get_sign_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-linuxkm-sign-module.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-linuxkm-sign-module.inc: LAYERSERIES_CORENAMES = %s" % layerseries) use_modern = False codename = None @@ -22,7 +22,7 @@ def wolfssl_linuxkm_get_sign_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-linuxkm/%s/wolfssl-linuxkm-sign-module-legacy.inc' % codename) - bb.note("wolfssl-linuxkm-sign-module.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-linuxkm-sign-module.inc: Including file: %s" % inc_file) return inc_file require ${@wolfssl_linuxkm_get_sign_inc(d)} diff --git a/inc/wolfssl-manual-config.inc b/inc/wolfssl-manual-config.inc index aa9281e..64cd938 100644 --- a/inc/wolfssl-manual-config.inc +++ b/inc/wolfssl-manual-config.inc @@ -3,7 +3,7 @@ def wolfssl_get_manual_config_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-manual-config.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-manual-config.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_manual_config_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-manual-config-legacy.inc') - bb.note("wolfssl-manual-config.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-manual-config.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolfssl-py/wolfssl-enable-wolfssl-py.inc b/inc/wolfssl-py/wolfssl-enable-wolfssl-py.inc index 715bb87..191e112 100644 --- a/inc/wolfssl-py/wolfssl-enable-wolfssl-py.inc +++ b/inc/wolfssl-py/wolfssl-enable-wolfssl-py.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolfssl_py_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolfssl-py.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolfssl-py.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolfssl_py_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolfssl-py/wolfssl-enable-wolfssl-py-legacy.inc') - bb.note("wolfssl-enable-wolfssl-py.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolfssl-py.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolftpm-tests/wolfssl-enable-wolftpm-wrap-test.inc b/inc/wolftpm-tests/wolfssl-enable-wolftpm-wrap-test.inc index f6b8c9c..801bc98 100644 --- a/inc/wolftpm-tests/wolfssl-enable-wolftpm-wrap-test.inc +++ b/inc/wolftpm-tests/wolfssl-enable-wolftpm-wrap-test.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolftpm_wrap_test_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolftpm-wrap-test.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolftpm-wrap-test.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolftpm_wrap_test_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolftpm-tests/wolfssl-enable-wolftpm-wrap-test-legacy.inc') - bb.note("wolfssl-enable-wolftpm-wrap-test.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolftpm-wrap-test.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolftpm-tests/wolftpm-enable-wrap-test.inc b/inc/wolftpm-tests/wolftpm-enable-wrap-test.inc index 38d1ee5..bcbba23 100644 --- a/inc/wolftpm-tests/wolftpm-enable-wrap-test.inc +++ b/inc/wolftpm-tests/wolftpm-enable-wrap-test.inc @@ -3,7 +3,7 @@ def wolftpm_get_wrap_test_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolftpm-enable-wrap-test.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolftpm-enable-wrap-test.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolftpm_get_wrap_test_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolftpm-tests/wolftpm-enable-wrap-test-legacy.inc') - bb.note("wolftpm-enable-wrap-test.inc: Including file: %s" % inc_file) + bb.debug(2,"wolftpm-enable-wrap-test.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/inc/wolftpm/wolfssl-enable-wolftpm.inc b/inc/wolftpm/wolfssl-enable-wolftpm.inc index 962b24c..21f2644 100644 --- a/inc/wolftpm/wolfssl-enable-wolftpm.inc +++ b/inc/wolftpm/wolfssl-enable-wolftpm.inc @@ -3,7 +3,7 @@ def wolfssl_get_wolftpm_inc(d): import os layerseries = d.getVar('LAYERSERIES_CORENAMES') or "" - bb.note("wolfssl-enable-wolftpm.inc: LAYERSERIES_CORENAMES = %s" % layerseries) + bb.debug(2,"wolfssl-enable-wolftpm.inc: LAYERSERIES_CORENAMES = %s" % layerseries) # Check if version is 3.1 or newer (dunfell and later) use_modern = False @@ -21,7 +21,7 @@ def wolfssl_get_wolftpm_inc(d): else: inc_file = os.path.join(layerdir, 'inc/wolftpm/wolfssl-enable-wolftpm-legacy.inc') - bb.note("wolfssl-enable-wolftpm.inc: Including file: %s" % inc_file) + bb.debug(2,"wolfssl-enable-wolftpm.inc: Including file: %s" % inc_file) return inc_file # Include the appropriate file diff --git a/recipes-support/libgcrypt/wolfssl-fips.bbappend b/recipes-support/libgcrypt/wolfssl-fips.bbappend index 945c57a..f9a2b61 100644 --- a/recipes-support/libgcrypt/wolfssl-fips.bbappend +++ b/recipes-support/libgcrypt/wolfssl-fips.bbappend @@ -14,7 +14,7 @@ python __anonymous() { wolfssl_features = d.getVar('WOLFSSL_FEATURES') or '' if 'libgcrypt' in wolfssl_features.split(): - bb.note("libgcrypt in WOLFSSL_FEATURES - configuring wolfssl-fips for libgcrypt support") + bb.debug(2, "libgcrypt in WOLFSSL_FEATURES - configuring wolfssl-fips for libgcrypt support") # Use the helper to include the configuration wolfssl_conditional_require(d, 'libgcrypt', 'inc/wolfssl-fips/wolfssl-enable-libgcrypt.inc') }