1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-28 14:12:00 +03:00

package: kernel: fix files for blowfish and pcimcia-rsrc

Based on a patch from Philip Prindeville.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29797 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jogo 2012-01-19 08:25:26 +00:00
parent cb6d2cb05c
commit fdcc990231
2 changed files with 4 additions and 3 deletions

View File

@ -384,8 +384,9 @@ define KernelPackage/crypto-misc
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),le,3.1)),1)
FILES += $(LINUX_DIR)/crypto/blowfish.ko
else
FILES += $(LINUX_DIR)/crypto/blowfish_common.ko \
FILES += $(LINUX_DIR)/crypto/blowfish_generic.ko
FILES += \
$(LINUX_DIR)/crypto/blowfish_common.ko \
$(LINUX_DIR)/crypto/blowfish_generic.ko
endif
$(call AddDepends/crypto)
endef

View File

@ -38,7 +38,7 @@ ifneq ($(wildcard $(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko),)
FILES:=$(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko
AUTOLOAD:=$(call AutoLoad,26,pcmcia_rsrc)
else
FILES:=$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.ko \
FILES:=$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.ko
AUTOLOAD:=$(call AutoLoad,26,rsrc_nonstatic)
endif
endef