diff --git a/README.md b/README.md index 903fd3653..b5b97bfb9 100644 --- a/README.md +++ b/README.md @@ -131,8 +131,8 @@ authentication failure. * The Micrel PHY KSZ9031 may take between five and six seconds to auto-negotiate with Gigabit switches -* Secure uSD booting only supports booting signed images. A uSD image is not -generated if TrustFence (TM) image encryption support is enabled. +* If TrustFence (TM) image encryption support is enabled, the uSD image will +boot a signed U-Boot only. # Support Contact Information diff --git a/meta-digi-dey/classes/trustfence.bbclass b/meta-digi-dey/classes/trustfence.bbclass index c31bb2daf..5ab4060a7 100644 --- a/meta-digi-dey/classes/trustfence.bbclass +++ b/meta-digi-dey/classes/trustfence.bbclass @@ -65,6 +65,3 @@ python () { if (d.getVar("TRUSTFENCE_ENCRYPT_ENVIRONMENT", True) == "1"): d.appendVar("UBOOT_EXTRA_CONF", 'CONFIG_ENV_AES=y CONFIG_ENV_AES_CAAM_KEY=y') } - -# SDCARD image is not supported when encryption is enabled, so disable it in such cases -IMAGE_FSTYPES_remove = "${@'' if d.getVar('TRUSTFENCE_DEK_PATH', True) == '0' else 'sdcard'}"