# HG changeset patch # User Florian Pose # Date 1266420223 -3600 # Node ID efff25b15f93a98364cfe6f004043e4e0f1465eb # Parent b7ce5f9f13df5c8c61016adab6cdc8e2f0350ad8# Parent 4ea966f3555e0800d8dec0c5a7ca1da3c9b2079e merge diff -r b7ce5f9f13df -r efff25b15f93 Makefile.am --- a/Makefile.am Wed Feb 17 16:22:27 2010 +0100 +++ b/Makefile.am Wed Feb 17 16:23:43 2010 +0100 @@ -87,11 +87,8 @@ $(MAKE) -C tty modules_install endif -dist_pkgdata_DATA = $(LINUX_SYMVERS) - clean-local: $(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" clean - @rm -f $(LINUX_SYMVERS) mydist: hg log --style=changelog $(srcdir) > ChangeLog @@ -105,7 +102,6 @@ mrproper: clean cleandoc rm -rf \ - $(LINUX_SYMVERS) \ *~ \ ChangeLog \ Doxyfile \ diff -r b7ce5f9f13df -r efff25b15f93 NEWS --- a/NEWS Wed Feb 17 16:22:27 2010 +0100 +++ b/NEWS Wed Feb 17 16:23:43 2010 +0100 @@ -60,7 +60,6 @@ * Changed EC_MAX_SII_SIZE to 4096. * 'ethercat xml' creates valid XML for more than one slave (thanks to E. Burgstaller). -* Module symbol versions file is installed to $prefix/share/ethercat. * Added 'ethercat eoe' command to display Ethernet over EtherCAT statistics. * Added 'ethercat cstruct' command to output PDO information in C language. * Significantly improved EoE bandwidth by running EoE processing in a kthread. diff -r b7ce5f9f13df -r efff25b15f93 configure.ac --- a/configure.ac Wed Feb 17 16:22:27 2010 +0100 +++ b/configure.ac Wed Feb 17 16:23:43 2010 +0100 @@ -102,27 +102,6 @@ AC_MSG_RESULT([$LINUX_SOURCE_DIR (Kernel $LINUX_KERNEL_RELEASE)]) #------------------------------------------------------------------------------ -# Determine the name of the symbol version file -#------------------------------------------------------------------------------ - -AC_MSG_CHECKING([for Linux symbol version file]) - -symvers= -for file in Module.symvers Modules.symvers; do - if test -f "$LINUX_SOURCE_DIR/$file"; then - symvers=$file - break - fi -done - -AC_SUBST(LINUX_SYMVERS,[$symvers]) -if test -n "$symvers"; then - AC_MSG_RESULT([$LINUX_SYMVERS]) -else - AC_MSG_RESULT(["(none)"]) -fi - -#------------------------------------------------------------------------------ # Generic Ethernet driver #------------------------------------------------------------------------------