X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f80d4fdc68858ba956a39e19ad6efa868beb827e..38715ed096533a8f3a853f5ea029cfc98ff2d5e5:/target/linux/package/Makefile diff --git a/target/linux/package/Makefile b/target/linux/package/Makefile index a08d9048a..72eea1f69 100644 --- a/target/linux/package/Makefile +++ b/target/linux/package/Makefile @@ -1,28 +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-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)" \