From patchwork Mon Jan 27 19:29:08 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Wilkins X-Patchwork-Id: 314470 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 4CDE82C00A8 for ; Tue, 28 Jan 2014 06:35:45 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A4F7D93D37; Mon, 27 Jan 2014 19:35:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KwdS3eOh1Glz; Mon, 27 Jan 2014 19:35:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id E91D293D34; Mon, 27 Jan 2014 19:35:40 +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 35FAB1BF859 for ; Mon, 27 Jan 2014 19:35:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2FFD68C5DB for ; Mon, 27 Jan 2014 19:35:39 +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 VR8Q98cD-70j for ; Mon, 27 Jan 2014 19:35:37 +0000 (UTC) X-Greylist: delayed 00:06:23 by SQLgrey-1.7.6 Received: from hapkido.dreamhost.com (hapkido.dreamhost.com [66.33.216.122]) by whitealder.osuosl.org (Postfix) with ESMTP id 597D98C5C9 for ; Mon, 27 Jan 2014 19:35:37 +0000 (UTC) Received: from homiemail-a102.g.dreamhost.com (caiajhbdcbhh.dreamhost.com [208.97.132.177]) by hapkido.dreamhost.com (Postfix) with ESMTP id C510FDC306 for ; Mon, 27 Jan 2014 11:29:12 -0800 (PST) Received: from homiemail-a102.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a102.g.dreamhost.com (Postfix) with ESMTP id 818332005D109 for ; Mon, 27 Jan 2014 11:29:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=deadfrog.net; h=from :content-type:subject:message-id:date:to:mime-version; s= deadfrog.net; bh=rC6gah4OaWaLleg+QG0q3jy866k=; b=kT7FI07QHLjfYpr +6We9AMNHq+9retdDjdJDxY6F9XU4LxoxjsqWpoc891885oWAur/lXLyCDey8bWy KLCSXwS3OQRt8INqnZJCqUnJKeFb/hK77R94+NhCUjwso6izUaIUZ9BF0Q3uURwX uXb0Mqwqqy4JnhjLb5wr3HpmIQng= Received: from [192.168.88.192] (cpe-107-10-47-157.neo.res.rr.com [107.10.47.157]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: ryan@elevated-networks.com) by homiemail-a102.g.dreamhost.com (Postfix) with ESMTPSA id 01E452005D100 for ; Mon, 27 Jan 2014 11:29:10 -0800 (PST) From: Ryan Wilkins Message-Id: Date: Mon, 27 Jan 2014 14:29:08 -0500 To: buildroot@busybox.net Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) X-Mailer: Apple Mail (2.1827) Subject: [Buildroot] [PATCH 1/1] Add new package: biosdevname 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From 99a9db6dcb8c5c21b7e0e2b26163581e18cc9ae7 Mon Sep 17 00:00:00 2001 From: Ryan Wilkins Date: Wed, 22 Jan 2014 15:33:14 -0600 Subject: [PATCH 1/1] Add new package: biosdevname Signed-off-by: Ryan Wilkins --- package/Config.in | 1 + package/biosdevname/Config.in | 14 ++++++++++++++ package/biosdevname/biosdevname.mk | 15 +++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 package/biosdevname/Config.in create mode 100644 package/biosdevname/biosdevname.mk diff --git a/package/Config.in b/package/Config.in index fcbf720..e3d2adb 100644 --- a/package/Config.in +++ b/package/Config.in @@ -265,6 +265,7 @@ endmenu source "package/a10disp/Config.in" source "package/acpid/Config.in" source "package/avrdude/Config.in" +source "package/biosdevname/Config.in" source "package/cdrkit/Config.in" source "package/cryptsetup/Config.in" source "package/cwiid/Config.in" diff --git a/package/biosdevname/Config.in b/package/biosdevname/Config.in new file mode 100644 index 0000000..c0fd9e6 --- /dev/null +++ b/package/biosdevname/Config.in @@ -0,0 +1,14 @@ +config BR2_PACKAGE_BIOSDEVNAME + bool "biosdevname" + depends on BR2_PACKAGE_UDEV + select BR2_PACKAGE_PCIUTILS + help + Biosdevname is a udev helper that looks at various BIOS tables to + figure out what the actual hardware names are for Ethernet ports + and renames the ports accordingly. + + This has the advantage of always referring to the same port + regardless of system or hardware changes that might otherwise + alter the typical ethX naming. + + http://linux.dell.com/biosdevname/ diff --git a/package/biosdevname/biosdevname.mk b/package/biosdevname/biosdevname.mk new file mode 100644 index 0000000..63117d9 --- /dev/null +++ b/package/biosdevname/biosdevname.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# biosdevname +# +################################################################################ + +BIOSDEVNAME_VERSION = 0.4.1 +BIOSDEVNAME_SOURCE = biosdevname-$(BIOSDEVNAME_VERSION).tar.gz +BIOSDEVNAME_SITE = http://linux.dell.com/biosdevname/biosdevname-$(BIOSDEVNAME_VERSION) +BIOSDEVNAME_INSTALL_STAGING = NO +BIOSDEVNAME_INSTALL_TARGET = YES +BIOSDEVNAME_CONF_OPT = --exec-prefix=/ +BIOSDEVNAME_DEPENDENCIES = pciutils + +$(eval $(autotools-package))