Hello @Sunilap,
Thanks a lot for your patience, I was finally able to modify the Bootloader project so that no Crypto dependencies are needed.
Here are the changes you will need:
In the Tresos GUI:
Remove the crypto modules:



After removing the modules, you should notice the change in C:\NXP\GoldVIP-S32G3-1.14.0_no_crypto\S32G3\instances\GoldVIP\eenvs\bootloader\workspace\Bootloader_S32G3XX_ASR_4.4_M7\.prefs\pref_general.xdm.
Remove the crypto dependencies from other modules, SysDal, sCheck and Bootloader:



In the file C:\NXP\GoldVIP-S32G3-1.14.0_no_crypto\S32G3\instances\GoldVIP\eenvs\bootloader\framework\swc\bootloader\platforms\S32G3XX\build\make\files.mak, remove or comment out the crypto packages:
# Collect all CRYPTO source/include folders.
ifneq ($(filter ON,$(CRYPTO_ENABLED) $(SAF_ENABLED)),)
INCLUDE_DIRS += $(foreach crypto_mod,$(CRYPTO_MODULE_LIST), \
$(SRC_PATH_CRYPTO)/$(crypto_mod)_$(CRY_PKG_VERSION)$\
/include)
SRC_DIRS += $(foreach crypto_mod,$(CRYPTO_MODULE_LIST), \
$(SRC_PATH_CRYPTO)/$(crypto_mod)_$(CRY_PKG_VERSION)$\
/src)
endif
Please be aware that you will need to include the HSE FW directory in the configuration.bat, there are some automatic checks that will prevent your compilation if it is empty.
Again, thanks for your patience. Please let me know if you are able to achieve your objective with this information.