]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blobdiff - lfs/cryptodev
Firewall: Bugfix: wrong counter when using selfdefinded services in a rule that could...
[people/teissler/ipfire-2.x.git] / lfs / cryptodev
index cd690345609a3eda27925dccbfb52f33b5180200..14e463e2bf5d1bb7ec5f38531511094c7aafa8a1 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2010  IPFire Team <info@ipfire.org>                           #
+# Copyright (C) 2007-2011  IPFire Team <info@ipfire.org>                      #
 #                                                                             #
 # 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        #
 
 include Config
 
-ifeq "$(PAE)" "1"
-       VERSUFIX=ipfire-pae
-else
-ifeq "$(XEN)" "1"
-       VERSUFIX=ipfire-xen
-else
-       VERSUFIX=ipfire
-endif
+ifeq "$(KCFG)" "-xen"
+       KVER = 2.6.32.61
 endif
 
-VER        = 20091126
+VERSUFIX=ipfire$(KCFG)
+
+VER        = 1.4
 
-THISAPP    = cryptodev-$(VER)
-DL_FILE    = $(THISAPP).tar.bz2
+THISAPP    = cryptodev-linux-$(VER)
+DL_FILE    = $(THISAPP).tar.gz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
@@ -50,7 +46,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 26ffa32ef75bea7e980ab66166616e95
+$(DL_FILE)_MD5 = 7b0ac1c0a88d8fbe7316db02f21666e6
 
 install : $(TARGET)
 
@@ -82,13 +78,12 @@ $(subst %,%_MD5,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && make build \
                KERNEL_DIR=/lib/modules/$(KVER)-$(VERSUFIX)/build
 
        -mkdir -pv /usr/include/crypto
        cd $(DIR_APP) && make install \
                KERNEL_DIR=/lib/modules/$(KVER)-$(VERSUFIX)/build
-       ln -svf ../crypto/cryptodev.h /usr/include/linux/cryptodev.h
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)