cccs: add libubootenv as RDEPENDS of daemon
Some parameters of the CCCS configuration file need to be substituted at run-time during a postinst script. Such script takes actions depending on the value of U-Boot env variables. The libubootenv recipe itself also has a postinst script that modifies the U-Boot env configuration file (on NAND-based platforms). If there are no dependencies between these two recipes, poky will decide the order in which the postinst scripts are named (and thus executed) during the first boot. By creating the rdepends to libubootenv, we guarantee that its postinst script is run before the cccs one, which depends on the environment being accessible. Signed-off-by: Hector Palacios <hector.palacios@digi.com> https://onedigi.atlassian.net/browse/DEL-9282
This commit is contained in:
parent
52287bf6be
commit
720d627bd3
|
|
@ -157,6 +157,7 @@ RDEPENDS:${PN}-daemon = " \
|
|||
${PN} \
|
||||
${PN}-cert \
|
||||
initscripts-functions \
|
||||
libubootenv \
|
||||
"
|
||||
|
||||
# 'cccsd-gs-demo-init' script uses '/etc/init.d/functions'
|
||||
|
|
|
|||
Loading…
Reference in New Issue