Connect Core 6UL start daemon with systemd

Hello,

i need to use the command systemctl for start a daemon, i add the systemd recipes

MAGE_INSTALL_append = " strace systemd"

i have this error:

digi@digi-vm:~/workspace/EthV2$ bitbake core-image-base
NOTE: Started PRServer with DBfile: /home/digi/workspace/EthV2/cache/prserv.sqlite3, IP: 127.0.0.1, PORT: 41018, PID: 6185
Loading cache: 100% |########################################################################################################################| ETA: 00:00:00
Loaded 2486 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES ‘systemd’ (but /usr/local/dey-2.0/sources/poky/meta/recipes-core/images/core-image-base.bb RDEPENDS on or otherwise requires it)
ERROR: systemd was skipped: ‘systemd’ not in DISTRO_FEATURES
NOTE: Runtime target ‘systemd’ is unbuildable, removing…
Missing or unbuildable dependency chain was: [‘systemd’]
ERROR: Required build target ‘core-image-base’ has no buildable providers.
Missing or unbuildable dependency chain was: [‘core-image-base’, ‘systemd’]

Summary: There were 2 ERROR messages shown, returning a non-zero exit code.

Have you an idea?

i try upstart and i have the same problem

Regards

david

please take a look at this thread:
https://sourceforge.net/p/gumstix/mailman/message/31651725/
perhaps you are missing meta-systemd

im also facing similar error but additionally nothing provides system-gpuconfig. If anyone solved please let me know

I know this is an old question. But I answer it for anyone interested.

You need to add to your local.conf:

DISTRO_FEATURES_append = " systemd"
VIRTUAL-RUNTIME_init_manager = “systemd”
DISTRO_FEATURES_BACKFILL_CONSIDERED = “sysvinit”
VIRTUAL-RUNTIME_initscripts = “”

1 Like