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:
parent
2e35d16e03
commit
899f89eb33
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue