mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-28 07:25:19 +02:00
02cdebbb91
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4091 3c298f89-4303-0410-b956-a3cf2f4a3e73
34 lines
965 B
Makefile
34 lines
965 B
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/include/kernel.mk
|
|
|
|
define KernelPackage/ide-core
|
|
TITLE:=Kernel support for IDE
|
|
DESCRIPTION:=Kernel modules for IDE support\\\
|
|
useful for usb mass storage devices (e.g. on WL-HDD)\\\
|
|
\\\
|
|
Includes: \\\
|
|
- ide-core \\\
|
|
- ide-detect \\\
|
|
- ide-disk \\\
|
|
- pdc202xx_old
|
|
KCONFIG:=CONFIG_IDE
|
|
FILES:=$(MODULES_DIR)/kernel/drivers/ide/*.$(LINUX_KMOD_SUFFIX)
|
|
MODULES:=$(call AutoLoad,20,ide-core) $(call AutoLoad,90,ide-detect ide-disk)
|
|
endef
|
|
$(eval $(call KernelPackage,ide-core))
|
|
|
|
define KernelPackage/ide-pdc202xx
|
|
TITLE:=PDC202xx IDE driver
|
|
DESCRIPTION:=PDC202xx IDE driver
|
|
KCONFIG:=CONFIG_BLK_DEV_PDC202XX_OLD
|
|
FILES:=$(MODULES_DIR)/kernel/drivers/ide/pci/pdc202xx_old.$(LINUX_KMOD_SUFFIX)
|
|
MODULES:=$(call AutoLoad,30,pdc202xx_old)
|
|
endef
|
|
$(eval $(call KernelPackage,ide-pdc202xx))
|
|
|