From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [143.182.124.37]) by mail.openembedded.org (Postfix) with ESMTP id 45B4F6CFF9 for ; Wed, 30 Oct 2013 23:59:14 +0000 (UTC) Received: from azsmga002.ch.intel.com ([10.2.17.35]) by azsmga102.ch.intel.com with ESMTP; 30 Oct 2013 16:59:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.93,535,1378882800"; d="scan'208";a="314986138" Received: from unknown (HELO swold-linux.bigsur.com) ([10.255.12.29]) by AZSMGA002.ch.intel.com with ESMTP; 30 Oct 2013 16:59:15 -0700 From: Saul Wold To: openembedded-core@lists.openembedded.org Date: Wed, 30 Oct 2013 16:59:15 -0700 Message-Id: <1383177555-19971-1-git-send-email-sgw@linux.intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [PATCH v2] udev: fix typo in local.rules X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Oct 2013 23:59:15 -0000 Signed-off-by: Saul Wold --- v2: Fix the correct + error meta/recipes-core/udev/udev/local.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/udev/udev/local.rules b/meta/recipes-core/udev/udev/local.rules index f06002c..9d4da49 100644 --- a/meta/recipes-core/udev/udev/local.rules +++ b/meta/recipes-core/udev/udev/local.rules @@ -19,4 +19,4 @@ ACTION=="add", DEVPATH=="/devices/*", ENV{MODALIAS}=="?*", RUN+="/sbin/modprobe # Create a symlink to any touchscreen input device # Trigger based on input type, that the evbit (-e) has EV_SYN and EV_ABS, # has an EV_ABS value (-a) which is used for touchscreen type devices. -+SUBSYSTEM=="input", KERNEL=="event[0-9]*", ENV{ID_INPUT_TOUCHSCREEN}=="1", SYMLINK+="input/touchscreen0" +SUBSYSTEM=="input", KERNEL=="event[0-9]*", ENV{ID_INPUT_TOUCHSCREEN}=="1", SYMLINK+="input/touchscreen0" -- 1.8.3.1