From patchwork Fri Jul 27 13:51:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Liu X-Patchwork-Id: 173676 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id F2B1C2C0085 for ; Fri, 27 Jul 2012 23:52:24 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id E2025101480; Fri, 27 Jul 2012 13:52:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jUYLkK7gEeDn; Fri, 27 Jul 2012 13:52:16 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3978110BADC; Fri, 27 Jul 2012 13:52:12 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 6167B8F798 for ; Fri, 27 Jul 2012 13:52:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 56B3326585 for ; Fri, 27 Jul 2012 13:52:09 +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 e-H+fHodaLuP for ; Fri, 27 Jul 2012 13:52:08 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pb0-f46.google.com (mail-pb0-f46.google.com [209.85.160.46]) by silver.osuosl.org (Postfix) with ESMTPS id A81012539A for ; Fri, 27 Jul 2012 13:52:08 +0000 (UTC) Received: by pbbrp8 with SMTP id rp8so5238435pbb.33 for ; Fri, 27 Jul 2012 06:52:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=aaAcDwSAdZs8etjuVppbXxuH0zcEfmxLDdgwOUV4R6A=; b=cxZPPa5eeLk+CdS8Ngu9y0dz1qM8SmhNs26ykFmJ+AR1TYua3lyOhYkX9uo250KZHE QTeodpMyvuXkkceiNDrSKPbUsBMsx5m2TWVZnR3vOtb8WJ5TOBxDNSujFC+nRazaVIjo ajWKrB7cxFIAUtJGn49NTDY0lq5riJZTQ8DlJKUnLyYX2ZHhFqKZQZ5HTvTXxNBPE/Pd Pq8xZN5ptfII7BayQWACHfNXMvXaYgxeqNnp4kxl6eQaRXuqU8nLb/HnhNuVQQ2btrVO IPIuBfpLjMYCz/akWEpzfBXvHq9yG9iCAoomFHnsGOV8pGURVYq9pvG+Ap+2ElGKrMH8 Y8Ag== Received: by 10.68.129.168 with SMTP id nx8mr14006347pbb.112.1343397128401; Fri, 27 Jul 2012 06:52:08 -0700 (PDT) Received: from net147.co.cc (60-242-179-244.static.tpgi.com.au. [60.242.179.244]) by mx.google.com with ESMTPS id hw6sm1949037pbc.73.2012.07.27.06.52.05 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 27 Jul 2012 06:52:06 -0700 (PDT) From: Jonathan Liu To: buildroot@uclibc.org Date: Fri, 27 Jul 2012 23:51:56 +1000 Message-Id: <1343397117-1864-1-git-send-email-net147@gmail.com> X-Mailer: git-send-email 1.7.11.2 Subject: [Buildroot] [PATCH 1/2] udev: fix stopping execution of udev events in init.d script 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 Signed-off-by: Jonathan Liu --- package/udev/S10udev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/udev/S10udev b/package/udev/S10udev index 70a7c34..13dfdf5 100755 --- a/package/udev/S10udev +++ b/package/udev/S10udev @@ -34,7 +34,7 @@ case "$1" in ;; stop) # Stop execution of events - udevadm control --stop_exec_queue + udevadm control --stop-exec-queue killall udevd ;; *)