summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--images/enea-nfv-access-host-common.inc7
1 files changed, 7 insertions, 0 deletions
diff --git a/images/enea-nfv-access-host-common.inc b/images/enea-nfv-access-host-common.inc
index 866fa99..83d7bd0 100644
--- a/images/enea-nfv-access-host-common.inc
+++ b/images/enea-nfv-access-host-common.inc
@@ -19,3 +19,10 @@ SYSLINUX_DEFAULT_CONSOLE_x86-64 = "console=tty0"
19GRUB_TIMEOUT_x86-64 = "10" 19GRUB_TIMEOUT_x86-64 = "10"
20# 10 - 1sec 20# 10 - 1sec
21SYSLINUX_TIMEOUT_x86-64 = "50" 21SYSLINUX_TIMEOUT_x86-64 = "50"
22
23# If building with sota enabled, build the otaimg before the hddimg, because
24# the hddimg needs it as a base image
25python __anonymous() {
26 if bb.utils.contains('DISTRO_FEATURES', 'sota', True, False, d):
27 d.appendVarFlag("do_bootimg", "depends", " %s:do_image_otaimg" % d.getVar("IMAGE_BASENAME", True))
28}