mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Move the functions in qemu.bbclass to meta/lib/oe/qemu.py as they are generally useful. The qemu.bbclass is still kept, and recipes can continue to use functions from it, though they have become wrapper functions on qemu.py functions. Note that the QEMU_OPTIONS settings are still kept in qemu.bbclass. This sets a clear barrier for people to use qemu user mode. (From OE-Core rev: 7b3563b3b3901c96c3e498799a83ab8cabcf84b4) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
556 B
Python
16 lines
556 B
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
from pkgutil import extend_path
|
|
__path__ = extend_path(__path__, __name__)
|
|
|
|
# Modules with vistorcode need to go first else anything depending on them won't be
|
|
# processed correctly (e.g. qa)
|
|
BBIMPORTS = ["qa", "data", "path", "utils", "types", "package", "packagedata", \
|
|
"packagegroup", "sstatesig", "lsb", "cachedpath", "license", "qemu", \
|
|
"reproducible", "rust", "buildcfg", "go", "spdx30_tasks", "spdx_common", \
|
|
"cve_check"]
|