X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0dc0c1a5f414400723010853f858ef78d11a674d..01ccdcd3bdea5f4f106594224e37a0d1f33fb43e:/openwrt/target/linux/package/Makefile diff --git a/openwrt/target/linux/package/Makefile b/openwrt/target/linux/package/Makefile index f34ad9a8a..72eea1f69 100644 --- a/openwrt/target/linux/package/Makefile +++ b/openwrt/target/linux/package/Makefile @@ -1,20 +1,28 @@ # Main makefile for the packages include $(TOPDIR)/rules.mk +package-$(BR2_PACKAGE_KMOD_ALSA) += alsa package-$(BR2_PACKAGE_KMOD_FUSE) += fuse package-$(BR2_PACKAGE_KMOD_MINI_FO) += mini_fo package-$(BR2_PACKAGE_KMOD_SHFS) += shfs package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan -ifeq ($(LINUX_VERSION),2.4.30) +package-$(BR2_PACKAGE_KMOD_MADWIFI) += madwifi +package-y += openwrt + +ifeq ($(BOARD)-$(KERNEL),brcm-2.4) package-$(BR2_PACKAGE_KMOD_WLCOMPAT) += wlcompat +package-$(BR2_PACKAGE_KMOD_DIAG) += diag +wlcompat-compile: openwrt-compile endif all: compile install clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m)) +prepare: $(patsubst %,%-prepare,$(package-y) $(package-m)) compile: $(patsubst %,%-compile,$(package-y) $(package-m)) install: $(patsubst %,%-install,$(package-y)) MAKEOPTS:= BOARD="$(BOARD)" \ + KERNEL="$(KERNEL)" \ IPKG="$(IPKG)" \ TARGET_DIR="$(TARGET_DIR)" \ BUILD_DIR="$(BUILD_DIR)" \