igh-ethercat: new package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas Petazzoni 2011-12-24 11:28:37 +01:00 committed by Peter Korsgaard
parent f94f9a2397
commit 27ad470d7d
3 changed files with 65 additions and 0 deletions

View File

@ -431,6 +431,7 @@ source "package/hostapd/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/ifplugd/Config.in"
endif
source "package/igh-ethercat/Config.in"
source "package/iperf/Config.in"
source "package/iproute2/Config.in"
source "package/ipsec-tools/Config.in"

View File

@ -0,0 +1,23 @@
config BR2_PACKAGE_IGH_ETHERCAT
bool "igh-ethercat"
depends on BR2_LINUX_KERNEL
help
IgH EtherCAT Master for Linux.
http://www.etherlab.org/en/ethercat/index.php
if BR2_PACKAGE_IGH_ETHERCAT
config BR2_PACKAGE_IGH_ETHERCAT_8139TOO
bool "8139too driver"
config BR2_PACKAGE_IGH_ETHERCAT_E100
bool "e100 driver"
config BR2_PACKAGE_IGH_ETHERCAT_E1000
bool "e1000 driver"
config BR2_PACKAGE_IGH_ETHERCAT_R8169
bool "r8169 driver"
endif

View File

@ -0,0 +1,41 @@
IGH_ETHERCAT_VERSION = stable-1.5
IGH_ETHERCAT_SITE = http://etherlabmaster.hg.sourceforge.net/hgweb/etherlabmaster/etherlabmaster/archive/
IGH_ETHERCAT_SOURCE = $(IGH_ETHERCAT_VERSION).tar.bz2
IGH_ETHERCAT_AUTORECONF = YES
IGH_ETHERCAT_DEPENDENCIES = linux
IGH_ETHERCAT_INSTALL_STAGING = YES
IGH_ETHERCAT_CONF_OPT = \
--with-linux-dir=$(LINUX_DIR)
IGH_ETHERCAT_CONF_OPT += $(if $(BR2_PACKAGE_IGH_ETHERCAT_8139TOO),--enable-8139too,--disable-8139too)
IGH_ETHERCAT_CONF_OPT += $(if $(BR2_PACKAGE_IGH_ETHERCAT_E100),--enable-e100,--disable-e100)
IGH_ETHERCAT_CONF_OPT += $(if $(BR2_PACKAGE_IGH_ETHERCAT_E1000),--enable-e1000,--disable-e1000)
IGH_ETHERCAT_CONF_OPT += $(if $(BR2_PACKAGE_IGH_ETHERCAT_R8169),--enable-r8169,--disable-r8169)
# Since we download ethercat from source control, we have to emulate
# the bootstrap script that creates the ChangeLog file before running
# autoreconf. We don't want to run that script directly, since we
# leave to the autotargets infrastructure the responsability of
# running 'autoreconf' so that the dependencies on host-automake,
# host-autoconf and al. are correct.
define IGH_ETHERCAT_CREATE_CHANGELOG
touch $(@D)/ChangeLog
endef
IGH_ETHERCAT_POST_PATCH_HOOKS += IGH_ETHERCAT_CREATE_CHANGELOG
define IGH_ETHERCAT_BUILD_MODULES
$(MAKE) -C $(@D) $(LINUX_MAKE_FLAGS) modules
endef
IGH_ETHERCAT_POST_BUILD_HOOKS += IGH_ETHERCAT_BUILD_MODULES
define IGH_ETHERCAT_INSTALL_MODULES
$(MAKE) -C $(@D) $(LINUX_MAKE_FLAGS) modules_install
endef
IGH_ETHERCAT_POST_INSTALL_TARGET_HOOKS += IGH_ETHERCAT_INSTALL_MODULES
$(eval $(call AUTOTARGETS))