Hi

I have got an ASUS WL-500g Premium and a Gigaset 3075 ISDN with an USB port.

There are Linux drivers for the Gigaset 3075 in the Internet at http://gigaset307x.sourceforge.net/ and I want to use them on my Router.
I have build the following Makefile and put it into package/gigaset/Makefile but the driver wasn't build. It was downloaded but no build process started. make package/gigaset-rebuild V=99 outputs me the following:

$ make package/gigaset-rebuild V=99
make -C package gigaset-rebuild
make[1]: Entering directory `/home/hauke/kamikaze/kamikaze_7.06/package'
make[1]: `gigaset-rebuild' is up to date.
make[1]: Leaving directory `/home/hauke/kamikaze/kamikaze_7.06/package'

What's wrong with the Makefile?

package/gigaset/Makefile

include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=gigaset-driver
PKG_VERSION:=0.5.2
PKG_RELEASE:=1


PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/gigaset307x
PKG_MD5SUM:=bd4832f27490d0e8d55f4fe1e2c11901
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)


include $(INCLUDE_DIR)/package.mk

define KernelPackage/gigaset-driver
  SUBMENU:=Other modules
  DEFAULT:=y
  TITLE:=Siemens GigaSet 307x isdn driver
  DESCRIPTION:=The Gigaset 3070 isdn (aka Sinus 45 isdn) and its descendants are ISDN DECT base stations allowing the connection of a PC via USB or DECT. This project is developing the Linux support (drivers and frontend utilities) which Siemens neglected to provide.
  URL:=http://gigaset307x.sourceforge.net/
  VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
  AUTOLOAD:=$(call AutoLoad,50,gigaset)
endef

define Build/Configure
  $(call Build/Configure/Default, --dist=generic --kerneldir=$(LINUX_DIR))
endef

define Package/gigaset-driver/install
        install -m0755 -d $(1)/usr/sbin
endef

$(eval $(call KernelPackage,gigaset-driver))