From: Chen Qi <Qi.Chen@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Subject: [PATCH V2 00/25] systemd upgrade to 216 and other misc fixes
Date: Wed, 3 Sep 2014 15:08:57 +0800 [thread overview]
Message-ID: <cover.1409728004.git.Qi.Chen@windriver.com> (raw)
systemd upgrade has been tested on
*) qemuarm
*) qemumips
*) qemuppc
*) qemux86
*) qemux86-64
The whole patchset has passed the following test case on qemux86-64.
bitbake core-image-sato -ctestimage
Changes in V2:
1. merge two dhcp patches into one
2. fix commit messages to be clearer
3. use ${sysconfdir} instead of hardcoding /etc
//Chen Qi
The following changes since commit 4c0a9ccbad2889b27b4b1d2ab91215a4bdcca3ce:
python-numpy: Fix build for mips64 (2014-09-01 18:00:32 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib ChenQi/systemd-misc-fixes
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=ChenQi/systemd-misc-fixes
Chen Qi (24):
systemd: upgrade to 216
systemd: add PACKAGECONFIG for 'journal-upload'
systemd: make runlevel work in non-runlevel targets
update-rc.d: fix logic in populate_packages_updatercd
alsa-state: fix pkg_postinst and set INHIBIT_UPDATERCD_BBCLASS
keymaps: fix for systemd
systemd: add kbd-keymaps to RRECOMMENDS of systemd-vconsole-setup
v86d: set INHIBIT_UPDATERCD_BBCLASS if 'sysvinit' not in
DISTRO_FEATURES
systemd: add support for executing scripts under /etc/rcS.d
dhcp: add systemd service files
acpid: upgrade to 2.0.22 and add systemd support
cups: add systemd support
rpcbind: avoid entering failed status after stopping daemon
at: remove dependency on initscripts
at: inherit update-rc.d to handle sysv init script
keymaps: remove dependency on initscripts
packagegroup-core-boot: conditionally rdepend on
VIRTUAL-RUNTIME_initscripts
initscripts: mask several init scripts
keymaps: mask keymap when necessary
v86d: mask fbsetup when necessary
psplash: mask psplash in case of systemd
modutils-initscripts: mask modutils in case of systemd
run-postinsts.service: remove redundant line
systemd: enable forwarding messages to syslog daemon
In Long (1):
cups: make cups daemon start correctly
meta/classes/update-rc.d.bbclass | 2 +-
meta/recipes-bsp/acpid/acpid.inc | 24 ++--
meta/recipes-bsp/acpid/acpid/acpid.service | 10 ++
.../acpid/acpid/set_socket_noblock.patch | 10 --
.../acpid/{acpid_1.0.10.bb => acpid_2.0.22.bb} | 5 +-
meta/recipes-bsp/alsa-state/alsa-state.bb | 11 +-
meta/recipes-bsp/keymaps/keymaps_1.0.bb | 32 ++++-
meta/recipes-bsp/v86d/v86d_0.1.10.bb | 17 +++
meta/recipes-connectivity/dhcp/dhcp.inc | 23 +++-
meta/recipes-connectivity/dhcp/files/dhcpd.service | 11 ++
.../dhcp/files/dhcrelay.service | 9 ++
meta/recipes-core/initscripts/initscripts_1.0.bb | 4 +
.../packagegroups/packagegroup-core-boot.bb | 2 +-
meta/recipes-core/psplash/psplash_git.bb | 10 ++
...ort-for-executing-scripts-under-etc-rcS.d.patch | 138 +++++++++++++++++++++
...ing.h-add-fake-__NR_memfd_create-for-MIPS.patch | 29 +++++
...1-uClibc-doesn-t-implement-pwritev-preadv.patch | 34 -----
...-Including-missing.h-to-get-MAX_HANDLE_SZ.patch | 29 -----
.../systemd/systemd/systemd-older-kernel.patch | 56 ---------
.../systemd/{systemd_213.bb => systemd_216.bb} | 34 +++--
.../run-postinsts/run-postinsts.service | 1 -
meta/recipes-extended/at/at/{S99at => atd.init} | 0
meta/recipes-extended/at/at_3.1.15.bb | 13 +-
meta/recipes-extended/cups/cups.inc | 24 +++-
meta/recipes-extended/cups/cups/cups.path | 8 ++
meta/recipes-extended/cups/cups/cups.service | 10 ++
meta/recipes-extended/cups/cups/cups.socket | 8 ++
.../rpcbind/rpcbind/rpcbind.service | 1 +
.../modutils-initscripts/modutils-initscripts.bb | 10 ++
29 files changed, 388 insertions(+), 177 deletions(-)
create mode 100644 meta/recipes-bsp/acpid/acpid/acpid.service
delete mode 100644 meta/recipes-bsp/acpid/acpid/set_socket_noblock.patch
rename meta/recipes-bsp/acpid/{acpid_1.0.10.bb => acpid_2.0.22.bb} (55%)
create mode 100644 meta/recipes-connectivity/dhcp/files/dhcpd.service
create mode 100644 meta/recipes-connectivity/dhcp/files/dhcrelay.service
create mode 100644 meta/recipes-core/systemd/systemd/0001-add-support-for-executing-scripts-under-etc-rcS.d.patch
create mode 100644 meta/recipes-core/systemd/systemd/0001-missing.h-add-fake-__NR_memfd_create-for-MIPS.patch
delete mode 100644 meta/recipes-core/systemd/systemd/0001-uClibc-doesn-t-implement-pwritev-preadv.patch
delete mode 100644 meta/recipes-core/systemd/systemd/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch
delete mode 100644 meta/recipes-core/systemd/systemd/systemd-older-kernel.patch
rename meta/recipes-core/systemd/{systemd_213.bb => systemd_216.bb} (87%)
rename meta/recipes-extended/at/at/{S99at => atd.init} (100%)
create mode 100644 meta/recipes-extended/cups/cups/cups.path
create mode 100644 meta/recipes-extended/cups/cups/cups.service
create mode 100644 meta/recipes-extended/cups/cups/cups.socket
--
1.9.1
next reply other threads:[~2014-09-03 7:09 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-03 7:08 Chen Qi [this message]
2014-09-03 7:08 ` [PATCH 01/25] systemd: upgrade to 216 Chen Qi
2014-09-03 7:08 ` [PATCH 02/25] systemd: add PACKAGECONFIG for 'journal-upload' Chen Qi
2014-09-03 7:09 ` [PATCH 03/25] systemd: make runlevel work in non-runlevel targets Chen Qi
2014-09-03 7:09 ` [PATCH 04/25] update-rc.d: fix logic in populate_packages_updatercd Chen Qi
2014-09-03 7:09 ` [PATCH 05/25] alsa-state: fix pkg_postinst and set INHIBIT_UPDATERCD_BBCLASS Chen Qi
2014-09-03 7:09 ` [PATCH 06/25] keymaps: fix for systemd Chen Qi
2014-09-03 7:09 ` [PATCH 07/25] systemd: add kbd-keymaps to RRECOMMENDS of systemd-vconsole-setup Chen Qi
2014-09-03 7:09 ` [PATCH 08/25] v86d: set INHIBIT_UPDATERCD_BBCLASS if 'sysvinit' not in DISTRO_FEATURES Chen Qi
2014-09-03 7:09 ` [PATCH 09/25] systemd: add support for executing scripts under /etc/rcS.d Chen Qi
2014-09-03 7:09 ` [PATCH 10/25] dhcp: add systemd service files Chen Qi
2014-09-03 7:09 ` [PATCH 11/25] acpid: upgrade to 2.0.22 and add systemd support Chen Qi
2014-09-03 7:09 ` [PATCH 12/25] cups: make cups daemon start correctly Chen Qi
2014-09-03 7:09 ` [PATCH 13/25] cups: add systemd support Chen Qi
2014-09-03 7:09 ` [PATCH 14/25] rpcbind: avoid entering failed status after stopping daemon Chen Qi
2014-09-03 7:09 ` [PATCH 15/25] at: remove dependency on initscripts Chen Qi
2014-09-03 7:09 ` [PATCH 16/25] at: inherit update-rc.d to handle sysv init script Chen Qi
2014-09-03 7:09 ` [PATCH 17/25] keymaps: remove dependency on initscripts Chen Qi
2014-09-03 7:09 ` [PATCH 18/25] packagegroup-core-boot: conditionally rdepend on VIRTUAL-RUNTIME_initscripts Chen Qi
2014-09-03 7:09 ` [PATCH 19/25] initscripts: mask several init scripts Chen Qi
2014-09-03 7:09 ` [PATCH 20/25] keymaps: mask keymap when necessary Chen Qi
2014-09-03 7:09 ` [PATCH 21/25] v86d: mask fbsetup " Chen Qi
2014-09-03 7:09 ` [PATCH 22/25] psplash: mask psplash in case of systemd Chen Qi
2014-09-03 7:09 ` [PATCH 23/25] modutils-initscripts: mask modutils " Chen Qi
2014-09-03 7:09 ` [PATCH 24/25] run-postinsts.service: remove redundant line Chen Qi
2014-09-03 7:09 ` [PATCH 25/25] systemd: enable forwarding messages to syslog daemon Chen Qi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1409728004.git.Qi.Chen@windriver.com \
--to=qi.chen@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.