digi-defaults: use '+=' operator in assignment of BOOT_SCRIPTS

Other layers, such as meta-digi-dualboot, may add scripts to this
list on their layer.conf file. Depending on the order and priority
of layers, using a strict '=' here completely overrides previous
values, which is not desired.

Reported-by: Francisco Gil <francisco.gilmartinez@digi.com>
Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
Hector Palacios 2021-10-19 12:23:28 +02:00
parent 2e35d16e03
commit 899f89eb33
1 changed files with 2 additions and 1 deletions

View File

@ -84,4 +84,5 @@ GRAPHICAL_IMAGES ?= "dey-image-qt dey-image-webkit"
DEY_SELINUX_POLICY ?= "1"
# U-Boot scripts to include in 'linux' partition
BOOT_SCRIPTS = "boot.scr:boot.scr"
# (use the '+=' operator, since other layers may append scripts to this list)
BOOT_SCRIPTS += "boot.scr:boot.scr"