From 8e79e44a070c51a19ce815ec3f7069f9538276cc Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Sat, 17 Aug 2024 15:09:17 -0600 Subject: meta-xilinx-core: Move generic machines to be firmware-less Generic machines no longer depend on firmware (ESW) components. Thus they will now build a full Linux system, where possible, without XSCT or SDT modes. It is up to the specific machine.conf files to enable the correct build flow and that will enable the necessary firmware dependencies for the SoC. This also means HDF_MACHINES is no longer required. Signed-off-by: Mark Hatle --- meta-xilinx-core/classes/xilinx-vars.bbclass | 9 --------- 1 file changed, 9 deletions(-) (limited to 'meta-xilinx-core/classes/xilinx-vars.bbclass') diff --git a/meta-xilinx-core/classes/xilinx-vars.bbclass b/meta-xilinx-core/classes/xilinx-vars.bbclass index 19cf8771..e19918ca 100644 --- a/meta-xilinx-core/classes/xilinx-vars.bbclass +++ b/meta-xilinx-core/classes/xilinx-vars.bbclass @@ -6,15 +6,6 @@ xilinx_variables_config_eventhandler[eventmask] = "bb.event.ConfigParsed" # It's up to the base sytem to define the variables being used here, we're # only going to check them. python xilinx_variables_config_eventhandler () { - # Verify HDF_MACHINE - hdf_prior = d.getVar('HDF_MACHINE_PRIOR') - hdf_final = d.getVar('HDF_MACHINE') - - if hdf_prior and hdf_prior != hdf_final: - bb.fatal("HDF_MACHINE is set to %s, it appears you intended %s. " \ - "This is usually as a result of specifying it in the local.conf or before the 'require' in the machine .conf file. " \ - "See meta-xilinx-core/conf/machine/README." % (hdf_final, hdf_prior)) - # Verify DEFAULTTUNE tune_prior = d.getVar('DEFAULTTUNE_PRIOR') tune_final = d.getVar('DEFAULTTUNE') -- cgit v1.2.3-54-g00ecf