1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-24 16:08:38 +03:00
openwrt-xburst/package/kernel/modules/block.mk
nbd 83790f74ad Improved autorebuild for kernel related stuff.
- make modules_install in the kernel tree is no longer called
- make modules is called on every target/compile run
- kmod packages pull the kernel modules directly out of the kernel tree and have proper file depends on them



git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6998 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-04-18 12:28:38 +00:00

22 lines
616 B
Makefile

BLMENU:=Block Devices
define KernelPackage/libata
TITLE:=libata
DESCRIPTION:=libata
KCONFIG:=$(CONFIG_ATA)
SUBMENU:=$(BLMENU)
FILES:=$(LINUX_DIR)/drivers/ata/libata.$(LINUX_KMOD_SUFFIX)
endef
$(eval $(call KernelPackage,libata))
define KernelPackage/ata-piix
TITLE:=ata-piix
DESCRIPTION:=Kernel module for Intel PIIX SATA controller
KCONFIG:=$(CONFIG_ATA_PIIX)
SUBMENU:=$(BLMENU)
AUTOLOAD:=$(call AutoLoad,30,scsi_mod libata sd_mod ata_piix)
FILES:=$(LINUX_DIR)/drivers/ata/ata_piix.$(LINUX_KMOD_SUFFIX)
DEPENDS:=+kmod-libata +kmod-ide-core +kmod-scsi-core
endef
$(eval $(call KernelPackage,ata-piix))