merge -c1788 branches/stable-1.4: ec_master.symvers installation.

This commit is contained in:
Florian Pose 2009-06-19 14:41:06 +00:00
parent d8aa9e8068
commit 41dec510d5
2 changed files with 11 additions and 0 deletions

2
NEWS
View File

@ -43,6 +43,8 @@ Changes since 1.4.0:
* Changed EC_MAX_SII_SIZE to 4096.
* 'ethercat xml' creates valid XML <EtherCATInfoList> for more than one slave
(thanks to E. Burgstaller).
* Module symbol versions file for ec_master.ko is installed to
prefix/modules/ec_master.symvers.
Changes in 1.4.0:

View File

@ -81,4 +81,13 @@ modules_install:
clean-local:
$(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" clean
modulesdir=@prefix@/modules
SYMVERS=`echo $(top_builddir)/Module*.symvers`
install-data-local:
@test -n "$(SYMVERS)" && \
mkdir -p $(DESTDIR)$(modulesdir) && \
cp -vf $(SYMVERS) \
$(DESTDIR)$(modulesdir)/ec_master.symvers
#------------------------------------------------------------------------------