mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 03:50:44 -09:00
The two patches are upstream, so they can be dropped. From NEWS.md: Version 1.6.12 - Backported CCAT fixes from Beckhoff Version 1.6.11 - Protect datagram receiving mechanism against re-ordering - Prevent creating datagrams that are too large for one frame - Reacted to stmmac API changed during Linux 6.12 - Adapted debug ring to kernel 5.6+ time API changes - Use str.read() to read into char* (deprecated in C++20) - Unload `ec_bhf` before loading CCAT - Added cpplint checks in pre-commit and CI tests. - Improved and formatted markdown documents and added pre-commit checks Version 1.6.10 - Added RasPi 5 macb (Cadence GEM / RP1) driver for kernel 6.18. - Added igb and igc for kernel 6.8 - Security fixes against malicious subdevices - Protected `rec_size` calculation in FoE. - Check for malicious EoE frame details. - Avoid writing invalid MAC onto r8169 NIC on removal - Fixed insufficient re-allocation of SoE request buffer. Version 1.6.9 - Protect datagram injection mechanism against re-ordering. - Fixed for genet and igb drivers for openSUSE Leap 16.0 kernel 6.12. - tty: Implemented new timer interface since kernel 6.15. - Do not require .config to exist in kernel sources. - Fix: Attach slaves before calculating DCs. - Discard EoE traffic in CoE statemachine, if EoE is disabled. - Support for Linux 6.19 - Added `--with-kmod-dir` and `--with-ip-cmd` configuration switches to specify the paths of the tools used in the `ethercatctl` script. - Changed the default path of the `ip` command to `/sbin/ip`. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
37 lines
1.8 KiB
Makefile
37 lines
1.8 KiB
Makefile
################################################################################
|
|
#
|
|
# igh-ethercat
|
|
#
|
|
################################################################################
|
|
|
|
IGH_ETHERCAT_VERSION = 1.6.12
|
|
IGH_ETHERCAT_SITE = $(call gitlab,etherlab.org,ethercat,$(IGH_ETHERCAT_VERSION))
|
|
IGH_ETHERCAT_LICENSE = GPL-2.0 (IgH EtherCAT master), LGPL-2.1 (libraries)
|
|
IGH_ETHERCAT_LICENSE_FILES = COPYING COPYING.LESSER
|
|
# Fetching from Git
|
|
IGH_ETHERCAT_AUTORECONF = YES
|
|
|
|
IGH_ETHERCAT_INSTALL_STAGING = YES
|
|
|
|
IGH_ETHERCAT_CONF_OPTS = \
|
|
--with-linux-dir=$(LINUX_DIR) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_USERLIB),--enable-userlib,--disable-userlib) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_CLITOOL),--enable-tool,--disable-tool) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_TTY),--enable-tty,--disable-tty) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_GENERIC),--enable-generic,--disable-generic) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_8139TOO),--enable-8139too,--disable-8139too) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_E100),--enable-e100,--disable-e100) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_E1000),--enable-e1000,--disable-e1000) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_E1000E),--enable-e1000e,--disable-e1000e) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_GENET),--enable-genet,--disable-genet) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_IGB),--enable-igb,--disable-igb) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_IGC),--enable-igc,--disable-igc) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_R8169),--enable-r8169,--disable-r8169) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_STMMAC_PCI),--enable-stmmac-pci,--disable-stmmac-pci) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_STMMAC),--enable-stmmac,--disable-stmmac) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_DWMAC_INTEL),--enable-dwmac-intel,--disable-dwmac-intel) \
|
|
$(if $(BR2_PACKAGE_IGH_ETHERCAT_CCAT),--enable-ccat,--disable-ccat)
|
|
|
|
$(eval $(kernel-module))
|
|
$(eval $(autotools-package))
|