From 03b359000e22f10f4187de1bb8393ee2be9731e1 Mon Sep 17 00:00:00 2001 From: Alejandro Enedino Hernandez Samaniego Date: Fri, 27 Jul 2018 18:01:37 -0700 Subject: u-boot-zynq-uenv: Create dependency from images to uEnv file Images include a uEnv.txt file that is read from U-Boot, these parameters are read after the default environment is loaded on U-Boot and just before booting the OS. Changing anything from the environment through the build system created a new uEnv file, but this didnt cause the build system to create a new image (that included the new file), so changes did not reflect on the image until a new build was executed. This patch creates a dependency to u-boot-zynq-uenv:do_deploy which will cause the image to be recreated when something from uEnv has changed. Signed-off-by: Alejandro Enedino Hernandez Samaniego Signed-off-by: Manjukumar Matha --- meta-xilinx-bsp/conf/machine/zcu102-zynqmp.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-xilinx-bsp/conf/machine/zcu102-zynqmp.conf b/meta-xilinx-bsp/conf/machine/zcu102-zynqmp.conf index 834d9d3d..3f93e8e0 100644 --- a/meta-xilinx-bsp/conf/machine/zcu102-zynqmp.conf +++ b/meta-xilinx-bsp/conf/machine/zcu102-zynqmp.conf @@ -82,3 +82,4 @@ QB_PMU_OPT = " \ " QB_OPT_APPEND_append_qemuboot-xilinx = " -pmu-args '${QB_PMU_OPT}'" +do_write_qemuboot_conf[depends] += "u-boot-zynq-uenv:do_deploy" -- cgit v1.2.3-54-g00ecf