From patchwork Tue Oct 21 14:26:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 401525 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 5805B14007B for ; Wed, 22 Oct 2014 01:28:24 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 77A293337F; Tue, 21 Oct 2014 14:28:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aRZYUO7K-4iR; Tue, 21 Oct 2014 14:28:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7759833266; Tue, 21 Oct 2014 14:28:21 +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 7021B1BFA35 for ; Tue, 21 Oct 2014 14:28:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6B02191991 for ; Tue, 21 Oct 2014 14:28:19 +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 CjnYaNYi0cWR for ; Tue, 21 Oct 2014 14:28:19 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [62.210.192.172]) by whitealder.osuosl.org (Postfix) with ESMTPS id BBFB291973 for ; Tue, 21 Oct 2014 14:28:18 +0000 (UTC) Received: from asgard (cpe-186-23-17-245.telecentro-reversos.com.ar [186.23.17.245] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.14.9/8.14.9) with ESMTP id s9LESC9j027286 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 21 Oct 2014 14:28:14 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1413901696; bh=4eeDFwnmcqyp4ip+tdG59THj4A5vEPGs8jVICvC4Q5g=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=s7Z95FlzZLKFnwTdxyR5Vzw/GtqOL5OK7jCwhtMXEdOx46ta3x/jXkR9o3phbfNSa +WPbviTXRdCYmz/N4s+yokqFPDJB7maHGVZkS5o+L4M/Yo/KKxeKTpsyh8P7yl3B9C Yb6oaA9dZNjLdWAJQxvhCMWLjV3NowjMkdr7e2W4= Received: by asgard (sSMTP sendmail emulation); Tue, 21 Oct 2014 11:27:00 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 21 Oct 2014 11:26:38 -0300 Message-Id: <1413901599-27312-3-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.4 In-Reply-To: <1413901599-27312-1-git-send-email-gustavo@zacarias.com.ar> References: <1413901599-27312-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.98.4 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH 3/4] eudev: add input group X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" It's used by 50-default-udev.rules for input-class devices. Signed-off-by: Gustavo Zacarias Acked-by: "Yann E. MORIN" --- package/eudev/eudev.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/eudev/eudev.mk b/package/eudev/eudev.mk index fd935a7..3cd22be 100644 --- a/package/eudev/eudev.mk +++ b/package/eudev/eudev.mk @@ -42,4 +42,9 @@ define EUDEV_INSTALL_INIT_SYSV $(INSTALL) -m 0755 package/eudev/S10udev $(TARGET_DIR)/etc/init.d/S10udev endef +# Required by default rules for input devices +define EUDEV_USERS + - - input -1 * - - - Input device group +endef + $(eval $(autotools-package))