summaryrefslogtreecommitdiff
path: root/package/openpowerlink
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@openwide.fr>2014-05-09 01:05:13 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-05-15 23:09:26 +0200
commite88e6af14cc5e2609070744f9eb8a03d0def83e3 (patch)
treea7a923af4c77d649bd30806c6338dc74d49c037b /package/openpowerlink
parent8dda4eb3bd65fdf9eff0422e0e974e0a1d012015 (diff)
openpowerlink: add Intel I210 chip support
Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/openpowerlink')
-rw-r--r--package/openpowerlink/Config.in3
-rw-r--r--package/openpowerlink/openpowerlink.mk6
2 files changed, 7 insertions, 2 deletions
diff --git a/package/openpowerlink/Config.in b/package/openpowerlink/Config.in
index 85739617e..d87f8bea4 100644
--- a/package/openpowerlink/Config.in
+++ b/package/openpowerlink/Config.in
@@ -60,6 +60,9 @@ config BR2_PACKAGE_OPENPOWERLINK_82573
config BR2_PACKAGE_OPENPOWERLINK_8255x
bool "Intel 8255x"
+config BR2_PACKAGE_OPENPOWERLINK_I210
+ bool "Intel I210"
+
config BR2_PACKAGE_OPENPOWERLINK_RTL8139
bool "Realtek RTL-8139"
diff --git a/package/openpowerlink/openpowerlink.mk b/package/openpowerlink/openpowerlink.mk
index 0aae54486..152f014ac 100644
--- a/package/openpowerlink/openpowerlink.mk
+++ b/package/openpowerlink/openpowerlink.mk
@@ -51,10 +51,12 @@ endif
ifeq ($(BR2_PACKAGE_OPENPOWERLINK_82573),y)
OPENPOWERLINK_CONF_OPT += -DCFG_POWERLINK_EDRV=82573
-else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_RTL8139),y)
-OPENPOWERLINK_CONF_OPT += -DCFG_POWERLINK_EDRV=8139
else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_8255x),y)
OPENPOWERLINK_CONF_OPT += -DCFG_POWERLINK_EDRV=8255x
+else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_I210),y)
+OPENPOWERLINK_CONF_OPT += -DCFG_POWERLINK_EDRV=I210
+else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_RTL8139),y)
+OPENPOWERLINK_CONF_OPT += -DCFG_POWERLINK_EDRV=8139
endif
ifeq ($(BR2_PACKAGE_OPENPOWERLINK_MN),y)