Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions meta-iotqa/conf/test/refkit-image-common.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,5 @@ oeqa.runtime.connectivity.services.managerdaemon
oeqa.runtime.connectivity.bluetooth.btcheck
oeqa.runtime.connectivity.wifi.wifi_connect
oeqa.runtime.programming.python.apprt_python
oeqa.runtime.peripherals.mraa.mraa_hello
oeqa.runtime.peripherals.mraa.mraa_gpio
oeqa.runtime.multimedia.audio.alsa
oeqa.runtime.peripherals.upm.upm
oeqa.runtime.sanity.nftables
5 changes: 4 additions & 1 deletion meta-iotqa/conf/test/refkit-image-gateway.manifest
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Tests for gateway profile
oeqa.runtime.programming.nodejs.apprt_nodejs
oeqa.runtime.core.iotivity.client
oeqa.runtime.multimedia.audio.pulseaudio
oeqa.runtime.peripherals.mraa.mraa_gpio
oeqa.runtime.peripherals.mraa.mraa_hello
oeqa.runtime.peripherals.upm.upm
oeqa.runtime.programming.nodejs.apprt_nodejs
1 change: 0 additions & 1 deletion meta-refkit-core/classes/refkit-image.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ REFKIT_IMAGE_FEATURES_COMMON ?= " \
connectivity \
ssh-server-openssh \
alsa \
sensors \
${@ 'common-test' if (d.getVar('IMAGE_MODE') or 'production') != 'production' else '' } \
"
REFKIT_IMAGE_INSTALL_COMMON ?= ""
Expand Down
4 changes: 2 additions & 2 deletions meta-refkit-core/lib/oeqa/selftest/cases/image_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def do_install(self, fixed_password="", tpm=False):
with runqemu('refkit-installer-image', ssh=False,
discard_writes=False,
qemuparams='-drive if=virtio,file=%s/internal-image-%s.wic,format=raw%s' % (self.resultdir, self.image_arch, qemuparams_tpm),
runqemuparams='ovmf slirp',
runqemuparams='ovmf slirp nographic',
image_fstype='wic') as qemu:
# Check that we have booted, with dm-verity if enabled.
cmd = "findmnt / --output SOURCE --noheadings"
Expand Down Expand Up @@ -126,7 +126,7 @@ def do_install(self, fixed_password="", tpm=False):
with runqemu('refkit-installer-image', ssh=False,
overrides=overrides,
qemuparams=qemuparams_tpm,
runqemuparams='ovmf slirp',
runqemuparams='ovmf slirp nographic',
image_fstype='wic') as qemu:
# Check that we have booted, without device mapper involved.
# Can't use the simpler findmnt here.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL ?= "${REFKIT_IMAGE_INSTALL_COMMON}"
REFKIT_IMAGE_EXTRA_FEATURES += "${REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES}"
REFKIT_IMAGE_EXTRA_INSTALL += "${REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL}"

REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = " iotivity nodejs-runtime bluetooth-audio"
REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES += " \
bluetooth-audio \
iotivity \
nodejs-runtime \
sensors \
"

# Example for customization in local.conf when building
# refkit-image-gateway.bb:
Expand Down