diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-10-20 05:41:23 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-10-20 05:41:23 +0000 |
commit | 1e6f674088439d0f3b03c2d5a6eba51d55a30930 (patch) | |
tree | 465e87278c605fc03e7eb06e23452d314d09c7bb /openwrt/target/linux/linux-2.4/Makefile | |
parent | 3881fcbbe0e4ef3506d9dc55dbb696139f0e5d02 (diff) | |
download | mtk-20170518-1e6f674088439d0f3b03c2d5a6eba51d55a30930.zip mtk-20170518-1e6f674088439d0f3b03c2d5a6eba51d55a30930.tar.gz mtk-20170518-1e6f674088439d0f3b03c2d5a6eba51d55a30930.tar.bz2 |
add AX25 support (thanks to Michael Conrad)
SVN-Revision: 2189
Diffstat (limited to 'openwrt/target/linux/linux-2.4/Makefile')
-rw-r--r-- | openwrt/target/linux/linux-2.4/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/openwrt/target/linux/linux-2.4/Makefile b/openwrt/target/linux/linux-2.4/Makefile index 9c56a0b..ede1e7a 100644 --- a/openwrt/target/linux/linux-2.4/Makefile +++ b/openwrt/target/linux/linux-2.4/Makefile @@ -193,6 +193,10 @@ $(eval $(call KMOD_template,VIDEODEV,videodev,\ $(eval $(call KMOD_template,PWC,pwc,\ $(MODULES_DIR)/kernel/drivers/usb/pwc.o \ ,CONFIG_USB_PWC)) +$(eval $(call KMOD_template,AX25,ax25,\ + $(MODULES_DIR)/kernel/net/ax25/ax25.o \ + $(MODULES_DIR)/kernel/drivers/net/hamradio/mkiss.o \ +,CONFIG_AX25)) $(TARGETS): $(PACKAGE_DIR) @@ -230,7 +234,7 @@ $(LINUX_DIR)/vmlinux: $(LINUX_DIR)/.depend_done $(LINUX_KERNEL): $(LINUX_DIR)/vmlinux $(TARGET_CROSS)objcopy -O binary -R .reginfo -R .note -R .comment -R .mdebug -S $< $@ touch -c $(LINUX_KERNEL) - + $(LINUX_DIR)/.modules_done: $(LINUX_KERNEL) $(LINUX_IMAGE) rm -rf $(LINUX_BUILD_DIR)/modules $(MAKE) -C $(LINUX_DIR) ARCH=$(LINUX_KARCH) PATH=$(TARGET_PATH) modules |