-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Joacim Zetterling <[email protected]>
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
config BR2_PACKAGE_MDIO_TOOLS | ||
bool "mdio-tools" | ||
depends on BR2_PACKAGE_LIBMNL | ||
help | ||
Provides a low-level interface to MDIO buses on the | ||
system. In contrast to similar tools, mdio-tools will | ||
address the MDIO bus directly, without requiring a network | ||
interface with a connection to that bus. It will also safely | ||
perform operations that require executing multiple MDIO | ||
accesses atomically. | ||
|
||
https://github.com/wkz/mdio-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
################################################################################ | ||
# | ||
# mdio-tools | ||
# | ||
################################################################################ | ||
|
||
MDIO_TOOLS_VERSION = 1.1.1 | ||
MDIO_TOOLS_SOURCE = mdio-tools-$(MDIO_TOOLS_VERSION).tar.gz | ||
MDIO_TOOLS_SITE = https://github.com/wkz/mdio-tools/releases/download/$(MDIO_TOOLS_VERSION) | ||
MDIO_TOOLS_LICENSE = GPL-2.0 | ||
MDIO_TOOLS_LICENSE_FILES = COPYING | ||
MDIO_TOOLS_INSTALL_STAGING = YES | ||
|
||
MDIO_TOOLS_MODULE_SUBDIRS = kernel | ||
MDIO_TOOLS_MODULE_MAKE_OPTS = KDIR=$(LINUX_DIR) | ||
|
||
$(eval $(kernel-module)) | ||
$(eval $(autotools-package)) |