From e88e6af14cc5e2609070744f9eb8a03d0def83e3 Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Fri, 9 May 2014 01:05:13 +0200 Subject: [PATCH] openpowerlink: add Intel I210 chip support Signed-off-by: Romain Naour Signed-off-by: Peter Korsgaard --- package/openpowerlink/Config.in | 3 +++ package/openpowerlink/openpowerlink.mk | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package/openpowerlink/Config.in b/package/openpowerlink/Config.in index 85739617e5..d87f8bea4e 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 0aae54486c..152f014acb 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)