From patchwork Thu Mar 22 09:27:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 148193 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 6BEBAB6F62 for ; Thu, 22 Mar 2012 20:27:42 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 82B528D6CE; Thu, 22 Mar 2012 09:27:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tE6E-fB-ioJ7; Thu, 22 Mar 2012 09:27:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 596A38AAAC; Thu, 22 Mar 2012 09:27:36 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 5B27A8F753 for ; Thu, 22 Mar 2012 09:27:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4D7E38AAAC for ; Thu, 22 Mar 2012 09:27:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZeDUXq46VtCb for ; Thu, 22 Mar 2012 09:27:32 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [88.190.12.23]) by whitealder.osuosl.org (Postfix) with ESMTP id 7EF008A9E6 for ; Thu, 22 Mar 2012 09:27:32 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 409EE1B4; Thu, 22 Mar 2012 10:27:28 +0100 (CET) Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id 1F9B2177 for ; Thu, 22 Mar 2012 10:27:21 +0100 (CET) From: Maxime Ripard To: buildroot@busybox.net Date: Thu, 22 Mar 2012 10:27:15 +0100 Message-Id: X-Mailer: git-send-email 1.7.5.4 Subject: [Buildroot] [pull request v2] Pull request for branch for-2012.05/systemd X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Hi list, This is the updated version of the previous patchset concerning systemd to take into account the comments made mostly by Arnout. The following changes since commit 5b84ec26c8981c6ab0e119b455e807152ded449a: libconfig: bump to 1.4.8 and cleanup (2012-03-21 23:08:25 +0100) are available in the git repository at: git://git.free-electrons.com/users/maxime-ripard/buildroot.git for-2012.05/systemd Maxime Ripard (5): Add the systemd package Enable cgroups in Linux if we use systemd Rework of the init system Fix installation for the lighttpd package Add systemd unit for lighttpd linux/linux.mk | 2 + package/Config.in | 1 + package/Makefile.package.in | 8 +++ package/dbus/dbus.mk | 4 + .../lighttpd-1.4.30-Fix-default-config-file.patch | 64 ++++++++++++++++++++ package/lighttpd/lighttpd.mk | 43 +++++++++++++ package/lighttpd/lighttpd.service | 10 +++ package/systemd/Config.in | 19 ++++++ package/systemd/systemd-37-fix-getty-unit.patch | 26 ++++++++ package/systemd/systemd.mk | 62 +++++++++++++++++++ package/sysvinit/Config.in | 1 + package/udev/udev.mk | 4 + target/generic/Config.in | 28 +++++++++ 13 files changed, 272 insertions(+), 0 deletions(-) create mode 100644 package/lighttpd/lighttpd-1.4.30-Fix-default-config-file.patch create mode 100644 package/lighttpd/lighttpd.service create mode 100644 package/systemd/Config.in create mode 100644 package/systemd/systemd-37-fix-getty-unit.patch create mode 100644 package/systemd/systemd.mk Thanks,