u-boot-dey: cosmetic, add quotes to warning message
So the warning message shows the TF variable setting in the correct syntax that they should be written in the project's local.conf Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
2e13e194d9
commit
45763aec39
|
|
@ -35,7 +35,7 @@ UBOOT_EXTRA_CONF ?= ""
|
||||||
|
|
||||||
python __anonymous() {
|
python __anonymous() {
|
||||||
if (d.getVar("TRUSTFENCE_DEK_PATH", True) not in ["0", None]) and (d.getVar("TRUSTFENCE_SIGN", True) != "1"):
|
if (d.getVar("TRUSTFENCE_DEK_PATH", True) not in ["0", None]) and (d.getVar("TRUSTFENCE_SIGN", True) != "1"):
|
||||||
bb.fatal("Only signed U-Boot images can be encrypted. Generate signed images (TRUSTFENCE_SIGN=1) or remove encryption (TRUSTFENCE_DEK_PATH = 0)")
|
bb.fatal("Only signed U-Boot images can be encrypted. Generate signed images (TRUSTFENCE_SIGN = \"1\") or remove encryption (TRUSTFENCE_DEK_PATH = \"0\")")
|
||||||
}
|
}
|
||||||
|
|
||||||
do_compile () {
|
do_compile () {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue