blob: 83d7bd06e774e4980aa768efb1270ea3a16f2762 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require images/enea-nfv-access-common.inc
require classes/override_grub-efi.inc
IMAGE_INSTALL += " \
packagegroup-enea-virtualization-host \
packagegroup-enea-virtualization-4gusb-modems \
grub-efi-utils \
"
# Set labels for GRUB and SYSLINUX
LABELS_LIVE = "live-boot installer"
GRUB_GFXSERIAL_x86-64 = "1"
# Append default parameters for x86-64 targets
APPEND_x86-64 = "quiet"
SYSLINUX_DEFAULT_CONSOLE_x86-64 = "console=tty0"
# Set timeout values
GRUB_TIMEOUT_x86-64 = "10"
# 10 - 1sec
SYSLINUX_TIMEOUT_x86-64 = "50"
# If building with sota enabled, build the otaimg before the hddimg, because
# the hddimg needs it as a base image
python __anonymous() {
if bb.utils.contains('DISTRO_FEATURES', 'sota', True, False, d):
d.appendVarFlag("do_bootimg", "depends", " %s:do_image_otaimg" % d.getVar("IMAGE_BASENAME", True))
}
|