From patchwork Thu Oct 24 16:13:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 285962 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 A1A9E2C010A for ; Fri, 25 Oct 2013 03:14:15 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B68678C965; Thu, 24 Oct 2013 16:14:14 +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 Iy4lIe5+vv1I; Thu, 24 Oct 2013 16:14:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 95A1F8BCC3; Thu, 24 Oct 2013 16:14:13 +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 0C0B21BFA04 for ; Thu, 24 Oct 2013 16:14:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 00FE08BCC3 for ; Thu, 24 Oct 2013 16:14:13 +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 vcI5wD9vDnvd for ; Thu, 24 Oct 2013 16:14:10 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 008C58BCBD for ; Thu, 24 Oct 2013 16:14:09 +0000 (UTC) Received: from asgard (host58.190-231-106.telecom.net.ar [190.231.106.58]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r9OGE3WK015249 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 24 Oct 2013 16:14:05 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1382631247; bh=Yp13fEcfV3QQcvo6YMGXc6eJOybn+En85aDJjiwmxSc=; h=From:To:Cc:Subject:Date; b=naJ+1UQGXU3ZTgtqGsNwSstJGg1bqPaqzl4k2KtpUAiklfwojO5KWkL7pEAWmJ+Kw hsgHvv6DkPJRE7Aqgu3ygtk16vdLVGMdpvzmaXMwS7HxEivZgFSFBpzJQ/jBav/Qkw raWCSMEBo3YgUQQs842sMxtJqVOp5QyDTXFAhGts= Received: by asgard (sSMTP sendmail emulation); Thu, 24 Oct 2013 13:13:57 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 24 Oct 2013 13:13:57 -0300 Message-Id: <1382631237-1826-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.8 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] ebtables: install ethertypes 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 It's handy and closes bug #6608. Thanks to Cassiano Martin for pointing it out. Signed-off-by: Gustavo Zacarias --- package/ebtables/ebtables.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/ebtables/ebtables.mk b/package/ebtables/ebtables.mk index 116012c..c401f30 100644 --- a/package/ebtables/ebtables.mk +++ b/package/ebtables/ebtables.mk @@ -31,6 +31,7 @@ define EBTABLES_INSTALL_TARGET_CMDS done $(INSTALL) -m 0755 -D $(@D)/$(EBTABLES_SUBDIR)/ebtables \ $(TARGET_DIR)/sbin/ebtables + cp -f $(@D)/ethertypes $(TARGET_DIR)/etc/ethertypes endef endif