imx-digi-base: append to MACHINE_EXTRA_RRECOMMENDS instead of setting it
The cryptoauthlib package is being added in digi-defaults.inc, which is parsed before this file. Setting the variable here overwrites its previous value, causing the cryptoauthlib package to be left out of the rootfs. Append to the variable instead of overwriting it to avoid this. Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
parent
8c141889d2
commit
ee2a502fe5
|
|
@ -9,7 +9,7 @@ XSERVER = "xserver-xorg \
|
||||||
${XSERVER_DRIVER}"
|
${XSERVER_DRIVER}"
|
||||||
|
|
||||||
# Ship kernel modules
|
# Ship kernel modules
|
||||||
MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
|
MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"
|
||||||
|
|
||||||
# Tunes for hard/soft float-point selection. Note that we allow building for
|
# Tunes for hard/soft float-point selection. Note that we allow building for
|
||||||
# thumb support giving distros the chance to enable thumb by setting
|
# thumb support giving distros the chance to enable thumb by setting
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue