diff options
author | 2018-07-27 18:01:37 -0700 | |
---|---|---|
committer | 2019-01-01 20:03:46 -0800 | |
commit | 03b359000e22f10f4187de1bb8393ee2be9731e1 (patch) | |
tree | a5fb77d0fe15cfdd1dda0fb4db64b8ac6a98bd12 | |
parent | 291b324e677bc372e504609e418dae7b7cc94ee4 (diff) | |
download | meta-xilinx-03b359000e22f10f4187de1bb8393ee2be9731e1.tar.gz meta-xilinx-03b359000e22f10f4187de1bb8393ee2be9731e1.tar.bz2 meta-xilinx-03b359000e22f10f4187de1bb8393ee2be9731e1.zip |
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 <alejandr@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r-- | meta-xilinx-bsp/conf/machine/zcu102-zynqmp.conf | 1 |
1 files changed, 1 insertions, 0 deletions
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" |