[OE-core] [PATCH V2 00/24] hybrid systemd/sysvinit, and systemd fixes
Ross Burton
ross.burton at intel.com
Tue Mar 26 16:49:58 UTC 2013
Hi,
An iteration on the previous series, this fixes the issues that Saul and Martin
noticed, removes the commit that is targetted at meta-yocto, and importantly
fixes pure-systemd booting which was previously aborting dramatically when
populate-volatiles copied the contents of /run to /var/volatile/run (and then
deleted the originals). systemd really doesn't like having it's internal pipes
and sockets deleted.
Ross
The following changes since commit f36926a264190e6202830e8520b41b30ae77ea43:
docbook-utils-native: Unbreak the build after source and build dir split (2013-03-25 20:51:19 +0000)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib ross/systemd
for you to fetch changes up to a56f9f8d95194dc4365e83488a34f37a4ee0bce1:
udev: move /run volatile entry to udev instead of initscripts (2013-03-26 16:26:09 +0000)
----------------------------------------------------------------
Andreas Oberritter (1):
Revert "base-files: add fstab for systemd based systems"
Radu Moisan (1):
busybox: enable systemd integration for syslogd
Ross Burton (22):
busybox: add strictatime support to mount
systemd: make xz support (compressed journal) optional, defaulting to on.
systemd: merge udev-systemd into udev
core-image-minimal-initramfs: don't install busybox-syslog
systemd: don't depend on the PCI/USB databases
systemd: split out the hwdb data
default-providers: change udev selection logic
update-rcd.bbclass: handle both sysvinit and systemd features being present
util-linux: split uuidd into it's own package, and enable for systemd
update-rcd: drop depends to recommends, check for update-rcd in scripts
systemd: check for systemctl first, and don't force systemd to be installed.
systemd: add udev init script for hybrid sysvinit/systemd usage
update-rc.d/systemd: change communication variable name
default-distrovars: don't add INITMAN to DISTRO_FEATURES and DISTRO_FEATURES_BACKFILL
bitbake.conf: explicitly backfill sysvinit, not DISTRO_FEATURES_INITMAN
default-distrovars: remove obsolete DISTRO_FEATURES_INITMAN reference
packagegroup-core-boot: revert to specifying sysvinit as default init manager
systemd-compat-units: disable dbus-1
systemd: recommend systemd-compat-units
dbus: explicitly disable systemd when no systemd
busybox: order and group initscript variables logically
udev: move /run volatile entry to udev instead of initscripts
meta/classes/systemd.bbclass | 38 ++++----
meta/classes/update-rc.d.bbclass | 22 +++--
meta/conf/bitbake.conf | 2 +-
meta/conf/distro/include/default-distrovars.inc | 3 +-
meta/conf/distro/include/default-providers.inc | 2 +-
.../base-files/base-files/fstab.systemd | 9 --
meta/recipes-core/base-files/base-files_3.0.14.bb | 7 +-
.../busybox/busybox-1.20.2/strict-atime.patch | 49 ++++++++++
meta/recipes-core/busybox/busybox.inc | 22 ++++-
meta/recipes-core/busybox/busybox_1.20.2.bb | 5 +-
.../busybox/files/busybox-klogd.service.in | 8 ++
.../busybox/files/busybox-syslog.service.in | 13 +++
meta/recipes-core/dbus/dbus.inc | 4 +-
.../images/core-image-minimal-initramfs.bb | 2 +
.../initscripts/initscripts-1.0/volatiles | 1 -
.../packagegroups/packagegroup-core-boot.bb | 5 +-
meta/recipes-core/systemd/systemd-compat-units.bb | 1 +
meta/recipes-core/systemd/systemd/init | 101 ++++++++++++++++++++
meta/recipes-core/systemd/systemd_197.bb | 49 +++++++---
meta/recipes-core/udev/udev.inc | 6 +-
meta/recipes-core/udev/udev/volatiles | 1 +
meta/recipes-core/util-linux/util-linux.inc | 11 ++-
22 files changed, 289 insertions(+), 72 deletions(-)
delete mode 100644 meta/recipes-core/base-files/base-files/fstab.systemd
create mode 100644 meta/recipes-core/busybox/busybox-1.20.2/strict-atime.patch
create mode 100644 meta/recipes-core/busybox/files/busybox-klogd.service.in
create mode 100644 meta/recipes-core/busybox/files/busybox-syslog.service.in
create mode 100644 meta/recipes-core/systemd/systemd/init
create mode 100644 meta/recipes-core/udev/udev/volatiles
Andreas Oberritter (1):
Revert "base-files: add fstab for systemd based systems"
Radu Moisan (1):
busybox: enable systemd integration for syslogd
Ross Burton (22):
busybox: add strictatime support to mount
systemd: make xz support (compressed journal) optional, defaulting to
on.
systemd: merge udev-systemd into udev
core-image-minimal-initramfs: don't install busybox-syslog
systemd: don't depend on the PCI/USB databases
systemd: split out the hwdb data
default-providers: change udev selection logic
update-rcd.bbclass: handle both sysvinit and systemd features being
present
util-linux: split uuidd into it's own package, and enable for systemd
update-rcd: drop depends to recommends, check for update-rcd in
scripts
systemd: check for systemctl first, and don't force systemd to be
installed.
systemd: add udev init script for hybrid sysvinit/systemd usage
update-rc.d/systemd: change communication variable name
default-distrovars: don't add INITMAN to DISTRO_FEATURES and
DISTRO_FEATURES_BACKFILL
bitbake.conf: explicitly backfill sysvinit, not
DISTRO_FEATURES_INITMAN
default-distrovars: remove obsolete DISTRO_FEATURES_INITMAN reference
packagegroup-core-boot: revert to specifying sysvinit as default init
manager
systemd-compat-units: disable dbus-1
systemd: recommend systemd-compat-units
dbus: explicitly disable systemd when no systemd
busybox: order and group initscript variables logically
udev: move /run volatile entry to udev instead of initscripts
meta/classes/systemd.bbclass | 38 ++++----
meta/classes/update-rc.d.bbclass | 22 +++--
meta/conf/bitbake.conf | 2 +-
meta/conf/distro/include/default-distrovars.inc | 3 +-
meta/conf/distro/include/default-providers.inc | 2 +-
.../base-files/base-files/fstab.systemd | 9 --
meta/recipes-core/base-files/base-files_3.0.14.bb | 7 +-
.../busybox/busybox-1.20.2/strict-atime.patch | 49 ++++++++++
meta/recipes-core/busybox/busybox.inc | 22 ++++-
meta/recipes-core/busybox/busybox_1.20.2.bb | 5 +-
.../busybox/files/busybox-klogd.service.in | 8 ++
.../busybox/files/busybox-syslog.service.in | 13 +++
meta/recipes-core/dbus/dbus.inc | 4 +-
.../images/core-image-minimal-initramfs.bb | 2 +
.../initscripts/initscripts-1.0/volatiles | 1 -
.../packagegroups/packagegroup-core-boot.bb | 5 +-
meta/recipes-core/systemd/systemd-compat-units.bb | 1 +
meta/recipes-core/systemd/systemd/init | 101 ++++++++++++++++++++
meta/recipes-core/systemd/systemd_197.bb | 49 +++++++---
meta/recipes-core/udev/udev.inc | 6 +-
meta/recipes-core/udev/udev/volatiles | 1 +
meta/recipes-core/util-linux/util-linux.inc | 11 ++-
22 files changed, 289 insertions(+), 72 deletions(-)
delete mode 100644 meta/recipes-core/base-files/base-files/fstab.systemd
create mode 100644 meta/recipes-core/busybox/busybox-1.20.2/strict-atime.patch
create mode 100644 meta/recipes-core/busybox/files/busybox-klogd.service.in
create mode 100644 meta/recipes-core/busybox/files/busybox-syslog.service.in
create mode 100644 meta/recipes-core/systemd/systemd/init
create mode 100644 meta/recipes-core/udev/udev/volatiles
--
1.7.10.4
More information about the Openembedded-core
mailing list