X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/b901e3bb50d4004398195236510a39537ebcba3b..01ccdcd3bdea5f4f106594224e37a0d1f33fb43e:/openwrt/target/linux/package/Makefile diff --git a/openwrt/target/linux/package/Makefile b/openwrt/target/linux/package/Makefile index 84402cce2..72eea1f69 100644 --- a/openwrt/target/linux/package/Makefile +++ b/openwrt/target/linux/package/Makefile @@ -1,29 +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 +package-$(BR2_PACKAGE_KMOD_MADWIFI) += madwifi package-y += openwrt -ifeq ($(BOARD),brcm) -package-$(BR2_PACKAGE_WIFICONF) += wificonf -package-y += nvram - -ifeq ($(LINUX_VERSION),2.4.30) +ifeq ($(BOARD)-$(KERNEL),brcm-2.4) package-$(BR2_PACKAGE_KMOD_WLCOMPAT) += wlcompat -endif - -nvram-compile: openwrt-compile +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)" \