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)