X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2FmISDN;h=c73f5196b12358a60b11c7acae2060084a24b5b8;hb=6a8c1a558babdfa13db68764d04f18136a40ab8f;hp=4bdf550f8f701b41a23be8013e1bf668900fb5d1;hpb=3731c3daa75962346a6b2901c25c9f012f177c44;p=people%2Fteissler%2Fipfire-2.x.git diff --git a/lfs/mISDN b/lfs/mISDN index 4bdf550f8..c73f5196b 100644 --- a/lfs/mISDN +++ b/lfs/mISDN @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2011 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,13 +24,15 @@ include Config -VER = 9bf7deaa4b8829ab8fbccb34529a17aab2ddea93 +VERSUFIX=ipfire$(KCFG) -THISAPP = mISDN.git-$(VER) +VER = 20100525 + +THISAPP = mISDN-$(VER) DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) -TARGET = $(DIR_INFO)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX) ############################################################################### # Top-level Rules @@ -40,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = a9e9aaff23cda58c4d71aab8eab9bba5 +$(DL_FILE)_MD5 = 0f91aa47ee95833d74c8a81ffc6f6fd3 install : $(TARGET) @@ -69,10 +71,28 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_SRC)/mISDN.git && KVERS=$(KVER)-ipfire make force - cd $(DIR_SRC)/mISDN.git && KVERS=$(KVER)-ipfire make $(MAKETUNING) - cd $(DIR_SRC)/mISDN.git && KVERS=$(KVER)-ipfire make install DEPMOD="depmod $(KVER)" - mv /lib/modules/$(KVER)-ipfire/extra /lib/modules/$(KVER)-ipfire/mISDN + @rm -rf $(DIR_SRC)/mISDN* && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) + cd $(DIR_SRC)/mISDN && patch -Np1 < $(DIR_SRC)/src/patches/mISDN-hfcusb-reportl1down.patch + cd $(DIR_SRC)/mISDN && patch -Np1 < $(DIR_SRC)/src/patches/mISDN_hfc-s_add_id.patch +ifeq "$(MACHINE_TYPE)" "arm" + # Remove unsupported timestampcounter on arm. the result seems to be unused + cd $(DIR_SRC)/mISDN && sed -i -e "s|rdtscl(pChan->ulTimestampIn);||g" drivers/isdn/mISDN/octvqe/octvqe_linux.c +endif + cd $(DIR_SRC)/mISDN && ./configure --with-kerneldir=/usr/src/linux + cd $(DIR_SRC)/mISDN && make KVERS=$(KVER)-$(VERSUFIX) modules + cd $(DIR_SRC)/mISDN && make KVERS=$(KVER)-$(VERSUFIX) \ + INSTALL_PREFIX=$(DIR_SRC)/mISDN/dest/ \ + modules-install + mv $(DIR_SRC)/mISDN/dest/lib/modules/*/extra \ + /lib/modules/$(KVER)-$(VERSUFIX)/mISDN + +ifneq "$(XEN)" "1" + # Blacklist misdn modules + for f in $$(find /lib/modules/$(KVER)-$(VERSUFIX)/mISDN -name *.ko); do \ + echo "blacklist $$(basename $$f)" >> /etc/modprobe.d/mISDN ; \ + done + sed -i -e "s|.ko||g" /etc/modprobe.d/mISDN +endif + @rm -rf $(DIR_SRC)/mISDN* @$(POSTBUILD)