From patchwork Sun Apr 29 13:03:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 155734 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 A96C8B6FE3 for ; Sun, 29 Apr 2012 23:04:03 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 30BC622B30; Sun, 29 Apr 2012 13:04:02 +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 T4tBVW0jR--o; Sun, 29 Apr 2012 13:04:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 3B1612520E; Sun, 29 Apr 2012 13:04:01 +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 14D138F753 for ; Sun, 29 Apr 2012 13:04:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A12EC8FF88 for ; Sun, 29 Apr 2012 13:03:59 +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 IkuV0q64WjTW for ; Sun, 29 Apr 2012 13:03:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id A40838FEFE for ; Sun, 29 Apr 2012 13:03:58 +0000 (UTC) Received: from asgard (host105.190-136-216.telecom.net.ar [190.136.216.105]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q3TD3rhV005493 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 29 Apr 2012 10:03:55 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1335704637; bh=FXncpStwrzx3MXEj/UrZ3XdxpHOe/MZsC+pRbf99Hx0=; h=From:To:Cc:Subject:Date:Message-Id; b=ZQt6Vk0bcCOYbHQKoQm+TazjbRTceTYoygqb41aVul2ZpSmgfrEFXe8nC2KJ7YDSN 3CwtQffLHf65ciJsOhiSDyeEoNhxFfu2Ak4SFo74KN/kfRuKi2WUAjxfAsztRVw5cR dlS//CptUMmR7diTwtS7C3bIFlBVKbtFKN3lhZ2o= Received: by asgard (sSMTP sendmail emulation); Sun, 29 Apr 2012 10:03:52 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 29 Apr 2012 10:03:51 -0300 Message-Id: <1335704632-23164-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table 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 Busybox 1.20.0 add functionality to execute scripts from if-post-up.d and if-pre-down.d, so add the missing directories to the device table to get them created and avoid unnecessary warnings if not. Signed-off-by: Gustavo Zacarias --- target/generic/device_table.txt | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/target/generic/device_table.txt b/target/generic/device_table.txt index d3e394b..fc397a9 100644 --- a/target/generic/device_table.txt +++ b/target/generic/device_table.txt @@ -14,7 +14,9 @@ /etc/passwd f 644 0 0 - - - - - /etc/network/if-up.d d 755 0 0 - - - - - /etc/network/if-pre-up.d d 755 0 0 - - - - - +/etc/network/if-post-up.d d 755 0 0 - - - - - /etc/network/if-down.d d 755 0 0 - - - - - +/etc/network/if-pre-down.d d 755 0 0 - - - - - /etc/network/if-post-down.d d 755 0 0 - - - - - # uncomment this to allow starting x as non-root #/usr/X11R6/bin/Xfbdev f 4755 0 0 - - - - -