summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmeta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh43
1 files changed, 7 insertions, 36 deletions
diff --git a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
index faaff808..958d3fe8 100755
--- a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
+++ b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
@@ -276,10 +276,6 @@ DISTRO = "${yocto_distro}"
276 276
277LIBXIL_CONFIG = "conf/${libxil}" 277LIBXIL_CONFIG = "conf/${libxil}"
278require conf/${distro} 278require conf/${distro}
279
280SKIP_META_VIRT_SANITY_CHECK = "1"
281SKIP_META_SECURITY_SANITY_CHECK = "1"
282SKIP_META_TPM_SANITY_CHECK = "1"
283EOF 279EOF
284} 280}
285 281
@@ -333,10 +329,6 @@ DISTRO = "xilinx-freertos"
333 329
334LIBXIL_CONFIG = "conf/${libxil}" 330LIBXIL_CONFIG = "conf/${libxil}"
335require conf/${distro} 331require conf/${distro}
336
337SKIP_META_VIRT_SANITY_CHECK = "1"
338SKIP_META_SECURITY_SANITY_CHECK = "1"
339SKIP_META_TPM_SANITY_CHECK = "1"
340EOF 332EOF
341} 333}
342 334
@@ -467,10 +459,6 @@ DISTRO = "xilinx-standalone-nolto"
467 459
468LIBXIL_CONFIG = "conf/${libxil}" 460LIBXIL_CONFIG = "conf/${libxil}"
469require conf/${distro} 461require conf/${distro}
470
471SKIP_META_VIRT_SANITY_CHECK = "1"
472SKIP_META_SECURITY_SANITY_CHECK = "1"
473SKIP_META_TPM_SANITY_CHECK = "1"
474EOF 462EOF
475} 463}
476 464
@@ -524,10 +512,6 @@ DISTRO = "xilinx-freertos"
524 512
525LIBXIL_CONFIG = "conf/${libxil}" 513LIBXIL_CONFIG = "conf/${libxil}"
526require conf/${distro} 514require conf/${distro}
527
528SKIP_META_VIRT_SANITY_CHECK = "1"
529SKIP_META_SECURITY_SANITY_CHECK = "1"
530SKIP_META_TPM_SANITY_CHECK = "1"
531EOF 515EOF
532} 516}
533 517
@@ -610,10 +594,6 @@ DISTRO = "$yocto_distro"
610 594
611LIBXIL_CONFIG = "conf/${libxil}" 595LIBXIL_CONFIG = "conf/${libxil}"
612require conf/${distro} 596require conf/${distro}
613
614SKIP_META_VIRT_SANITY_CHECK = "1"
615SKIP_META_SECURITY_SANITY_CHECK = "1"
616SKIP_META_TPM_SANITY_CHECK = "1"
617EOF 597EOF
618} 598}
619 599
@@ -667,10 +647,6 @@ DISTRO = "xilinx-freertos"
667 647
668LIBXIL_CONFIG = "conf/${libxil}" 648LIBXIL_CONFIG = "conf/${libxil}"
669require conf/${distro} 649require conf/${distro}
670
671SKIP_META_VIRT_SANITY_CHECK = "1"
672SKIP_META_SECURITY_SANITY_CHECK = "1"
673SKIP_META_TPM_SANITY_CHECK = "1"
674EOF 650EOF
675} 651}
676 652
@@ -743,10 +719,6 @@ DISTRO = "xilinx-standalone"
743 719
744LIBXIL_CONFIG = "conf/${libxil}" 720LIBXIL_CONFIG = "conf/${libxil}"
745require conf/${distro} 721require conf/${distro}
746
747SKIP_META_VIRT_SANITY_CHECK = "1"
748SKIP_META_SECURITY_SANITY_CHECK = "1"
749SKIP_META_TPM_SANITY_CHECK = "1"
750EOF 722EOF
751} 723}
752 724
@@ -799,10 +771,6 @@ DISTRO = "xilinx-standalone"
799 771
800LIBXIL_CONFIG = "conf/${libxil}" 772LIBXIL_CONFIG = "conf/${libxil}"
801require conf/${distro} 773require conf/${distro}
802
803SKIP_META_VIRT_SANITY_CHECK = "1"
804SKIP_META_SECURITY_SANITY_CHECK = "1"
805SKIP_META_TPM_SANITY_CHECK = "1"
806EOF 774EOF
807} 775}
808 776
@@ -855,10 +823,6 @@ DISTRO = "xilinx-standalone"
855 823
856LIBXIL_CONFIG = "conf/${libxil}" 824LIBXIL_CONFIG = "conf/${libxil}"
857require conf/${distro} 825require conf/${distro}
858
859SKIP_META_VIRT_SANITY_CHECK = "1"
860SKIP_META_SECURITY_SANITY_CHECK = "1"
861SKIP_META_TPM_SANITY_CHECK = "1"
862EOF 826EOF
863} 827}
864 828
@@ -1108,6 +1072,13 @@ parse_cpus() {
1108gen_local_conf() { 1072gen_local_conf() {
1109 cat << EOF >> $1 1073 cat << EOF >> $1
1110 1074
1075# Avoid errors in some baremetal configs as these layers may be present
1076# but are not used. Note the following lines are optional and can be
1077# safetly disabled.
1078SKIP_META_VIRT_SANITY_CHECK = "1"
1079SKIP_META_SECURITY_SANITY_CHECK = "1"
1080SKIP_META_TPM_SANITY_CHECK = "1"
1081
1111# Each multiconfig will define it's own TMPDIR, this is the new default based 1082# Each multiconfig will define it's own TMPDIR, this is the new default based
1112# on BASE_TMPDIR for the Linux build 1083# on BASE_TMPDIR for the Linux build
1113TMPDIR = "\${BASE_TMPDIR}/tmp" 1084TMPDIR = "\${BASE_TMPDIR}/tmp"