From patchwork Fri Mar 23 09:26:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 148411 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 7C2B0B6F9F for ; Fri, 23 Mar 2012 20:26:54 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 595538F6F3; Fri, 23 Mar 2012 09:26:53 +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 Nrc0Nhekvx16; Fri, 23 Mar 2012 09:26:46 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 7F9D58D55D; Fri, 23 Mar 2012 09:26:45 +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 DF10A8F753 for ; Fri, 23 Mar 2012 09:26:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D4E418D55D for ; Fri, 23 Mar 2012 09:26:43 +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 EHhTueclT2bz for ; Fri, 23 Mar 2012 09:26:37 +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 609D08D3D6 for ; Fri, 23 Mar 2012 09:26:37 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 507491B3; Fri, 23 Mar 2012 10:26:34 +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 42FF016F for ; Fri, 23 Mar 2012 10:26:24 +0100 (CET) From: Maxime Ripard To: buildroot@busybox.net Date: Fri, 23 Mar 2012 10:26:17 +0100 Message-Id: X-Mailer: git-send-email 1.7.5.4 Subject: [Buildroot] [pull request v3] 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 Changes since v2: * Modified the patches to have description and signed-off-by tags * Change dependencies of systemd package to add IPv6 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 | 92 ++++++++++++++++++++ package/lighttpd/lighttpd.mk | 43 +++++++++ package/lighttpd/lighttpd.service | 10 ++ package/systemd/Config.in | 20 ++++ package/systemd/systemd-37-fix-getty-unit.patch | 34 +++++++ package/systemd/systemd.mk | 62 +++++++++++++ package/sysvinit/Config.in | 1 + package/udev/udev.mk | 4 + target/generic/Config.in | 28 ++++++ 13 files changed, 309 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,