diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-08-22 13:56:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-08-22 13:56:53 +0000 |
commit | b5ea5dc253d747bd3e429ae33ede0ca8f1bfa1b1 (patch) | |
tree | 695fbadfb7cef24b5b152afea7d78efd42503a82 /target/linux/linux-2.4/Makefile | |
parent | 12251fa67b433c4943c804ef34f64eb703192f86 (diff) | |
download | upstream-b5ea5dc253d747bd3e429ae33ede0ca8f1bfa1b1.tar.gz upstream-b5ea5dc253d747bd3e429ae33ede0ca8f1bfa1b1.tar.bz2 upstream-b5ea5dc253d747bd3e429ae33ede0ca8f1bfa1b1.zip |
fix atm driver build, fix static build of sched and crypto stuff
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1724 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/linux-2.4/Makefile')
-rw-r--r-- | target/linux/linux-2.4/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/target/linux/linux-2.4/Makefile b/target/linux/linux-2.4/Makefile index afff6c11fa..71b8420f50 100644 --- a/target/linux/linux-2.4/Makefile +++ b/target/linux/linux-2.4/Makefile @@ -142,9 +142,12 @@ $(eval $(call KMOD_template,VFAT,vfat,\ $(MODULES_DIR)/kernel/fs/vfat/vfat.o \ $(MODULES_DIR)/kernel/fs/fat/fat.o \ ,CONFIG_VFAT_FS,,30,fat vfat)) +ifneq (${shell ls $(MODULES_DIR)/kernel/crypto/*.o},) +CONFIG_CRYPTO:=m +endif $(eval $(call KMOD_template,CRYPTO,crypto,\ $(MODULES_DIR)/kernel/crypto/*.o \ -)) +,CONFIG_CRYPTO)) $(eval $(call KMOD_template,PPP,ppp,\ $(MODULES_DIR)/kernel/drivers/net/ppp_async.o \ $(MODULES_DIR)/kernel/drivers/net/ppp_generic.o \ @@ -163,9 +166,12 @@ $(eval $(call KMOD_template,TUN,tun,\ $(eval $(call KMOD_template,GRE,gre,\ $(MODULES_DIR)/kernel/net/ipv4/ip_gre.o \ ,CONFIG_NET_IPGRE)) +ifneq (${shell ls $(MODULES_DIR)/kernel/net/sched/*.o},) +CONFIG_SCHED:=m +endif $(eval $(call KMOD_template,SCHED,sched,\ $(MODULES_DIR)/kernel/net/sched/*.o \ -)) +,CONFIG_SCHED)) $(eval $(call KMOD_template,VIDEODEV,videodev,\ $(MODULES_DIR)/kernel/drivers/media/video/videodev.o \ ,CONFIG_VIDEO_DEV)) |