move brcm-2.4 specific kmod to new module layout
SVN-Revision: 5058
This commit is contained in:
parent
286d6f8bc4
commit
b3ce218b51
2 changed files with 18 additions and 10 deletions
|
@ -60,6 +60,24 @@ define KernelPackage/ide-pdc202xx
|
|||
endef
|
||||
$(eval $(call KernelPackage,ide-pdc202xx))
|
||||
|
||||
|
||||
define KernelPackage/lp
|
||||
TITLE:=Parallel port and line printer support
|
||||
KCONFIG:=$(CONFIG_PARPORT)
|
||||
FILES:= \
|
||||
$(MODULES_DIR)/kernel/drivers/parport/parport.o \
|
||||
$(MODULES_DIR)/kernel/drivers/parport/parport_splink.o \
|
||||
$(MODULES_DIR)/kernel/drivers/char/lp.o \
|
||||
$(MODULES_DIR)/kernel/drivers/char/ppdev.o
|
||||
AUTOLOAD:=$(call AutoLoad,50, \
|
||||
parport \
|
||||
parport_splink \
|
||||
lp \
|
||||
)
|
||||
endef
|
||||
$(eval $(call KernelPackage,lp))
|
||||
|
||||
|
||||
define KernelPackage/ieee80211softmac
|
||||
TITLE:=802.11 Networking stack
|
||||
DESCRIPTION:=\\\
|
||||
|
|
|
@ -12,18 +12,8 @@ LINUX_KERNEL_MD5SUM:=38f4d0830e95a20f4bfed17622d5557c
|
|||
|
||||
include ./config
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
||||
# broadcom specific kmod packages
|
||||
$(eval $(call KMOD_template,LP,lp,\
|
||||
$(MODULES_DIR)/kernel/drivers/parport/parport.o \
|
||||
$(MODULES_DIR)/kernel/drivers/parport/parport_splink.o \
|
||||
$(MODULES_DIR)/kernel/drivers/char/lp.o \
|
||||
$(MODULES_DIR)/kernel/drivers/char/ppdev.o \
|
||||
,CONFIG_PARPORT,,50,parport parport_splink lp))
|
||||
|
||||
include $(INCLUDE_DIR)/kernel-build.mk
|
||||
|
||||
|
||||
$(LINUX_DIR)/.patched: $(LINUX_DIR)/.unpacked
|
||||
[ -d ../generic-$(KERNEL)/patches ] && $(PATCH) $(LINUX_DIR) ../generic-$(KERNEL)/patches
|
||||
[ -d ./patches ] && $(PATCH) $(LINUX_DIR) ./patches
|
||||
|
|
Loading…
Reference in a new issue