-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: use INIT_MANAGER variable #1939
base: master
Are you sure you want to change the base?
Conversation
Historically, the mechanism to use systemd as init manager in a Yocto build was to set the following variables, or at least some variation: DISTRO_FEATURES:append = " systemd" DISTRO_FEATURES_BACKFILL_CONSIDERED += "sysvinit" VIRTUAL-RUNTIME_init_manager = "systemd" VIRTUAL-RUNTIME_initscripts = "systemd-compat-units" Since a few releases, the canonical way is to set INIT_MANAGER = "systemd" Mender should reflect this, tied to the MENDER_FEATURES override. Signed-off-by: Josef Holzmayr <[email protected]>
There was an error syncing branches, see logs for details. |
@TheYoctoJester, Let me know if you want to start the integration pipeline by mentioning me and the command "start pipeline". my commands and optionsYou can trigger a pipeline on multiple prs with: - mentioning me and `start pipeline --pr mender/127 --pr mender-connect/255` You can start a fast pipeline, disabling full integration tests with:
You can trigger GitHub->GitLab branch sync with:
You can cherry pick to a given branch or branches with:
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
@TheYoctoJester @kacf i can't access the logs of the build, but is there much to be fixed before this can be merged? don't want to let this perfectly fine PR go to waste |
@JohannesSchilling: The log is a mess, I honestly I have no idea what is failing. But here it is, starting from the first failure I could spot:
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Historically, the mechanism to use systemd as init manager in a Yocto build was to set the following variables, or at least some variation:
DISTRO_FEATURES:append = " systemd"
DISTRO_FEATURES_BACKFILL_CONSIDERED += "sysvinit"
VIRTUAL-RUNTIME_init_manager = "systemd"
VIRTUAL-RUNTIME_initscripts = "systemd-compat-units"
Since a few releases, the canonical way is to set
INIT_MANAGER = "systemd"
Mender should reflect this, tied to the MENDER_FEATURES override.
Changelog: Title
Ticket: None
External Contributor Checklist
🚨 Please review the guidelines for contributing to this repository.
The majority of our contributions are fixes, which means your commit should have
the form below:
git --signoff
. Also note that the signoff author must match the author of the commit.Description
Please describe your pull request.
Thank you!