86f5a9cf78
SVN-Revision: 39693
85 lines
2.2 KiB
Makefile
85 lines
2.2 KiB
Makefile
#
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
|
|
define KernelPackage/rtc-sunxi
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=Sunxi SoC built-in RTC support
|
|
DEPENDS:=@TARGET_sunxi
|
|
$(call AddDepends/rtc)
|
|
KCONFIG:= \
|
|
CONFIG_RTC_CLASS=y \
|
|
CONFIG_RTC_DRV_SUNXI=m
|
|
FILES:=$(LINUX_DIR)/drivers/rtc/rtc-sunxi.ko
|
|
AUTOLOAD:=$(call AutoLoad,50,rtc-sunxi)
|
|
endef
|
|
|
|
define KernelPackage/rtc-sunxi/description
|
|
Support for the AllWinner sunXi SoC's onboard RTC
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,rtc-sunxi))
|
|
|
|
define KernelPackage/eeprom-sunxi
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=AllWinner Security ID fuse support
|
|
DEPENDS:=@TARGET_sunxi
|
|
KCONFIG:= \
|
|
CONFIG_EEPROM_SUNXI_SID
|
|
FILES:=$(LINUX_DIR)/drivers/misc/eeprom/sunxi_sid.ko
|
|
AUTOLOAD:=$(call AutoLoad,50,sunxi_sid)
|
|
endef
|
|
|
|
define KernelPackage/eeprom-sunxi/description
|
|
Support for the AllWinner Security ID fuse support
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,eeprom-sunxi))
|
|
|
|
define KernelPackage/ata-sunxi
|
|
TITLE:=AllWinner sunXi AHCI SATA support
|
|
SUBMENU:=$(BLOCK_MENU)
|
|
DEPENDS:=@TARGET_sunxi +kmod-scsi-core
|
|
KCONFIG:=\
|
|
CONFIG_AHCI_SUNXI \
|
|
CONFIG_SATA_AHCI_PLATFORM
|
|
FILES:=$(LINUX_DIR)/drivers/ata/ahci_sunxi.ko
|
|
AUTOLOAD:=$(call AutoLoad,41,ahci_sunxi,1)
|
|
endef
|
|
|
|
define KernelPackage/ata-sunxi/description
|
|
SATA support for the AllWinner sunXi SoC's onboard AHCI SATA
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,ata-sunxi))
|
|
|
|
define KernelPackage/sun4i-emac
|
|
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
|
TITLE:=AllWinner EMAC Ethernet support
|
|
DEPENDS:=@TARGET_sunxi
|
|
KCONFIG:=CONFIG_SUN4I_EMAC
|
|
FILES:=$(LINUX_DIR)/drivers/net/ethernet/allwinner/sun4i-emac.ko
|
|
AUTOLOAD:=$(call AutoProbe,sun4i-emac)
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,sun4i-emac))
|
|
|
|
|
|
define KernelPackage/wdt-sunxi
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=AllWinner sunXi Watchdog timer
|
|
DEPENDS:=@TARGET_sunxi
|
|
KCONFIG:=CONFIG_SUNXI_WATCHDOG
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/sunxi_wdt.ko
|
|
AUTOLOAD:=$(call AutoLoad,51,sunxi_wdt)
|
|
endef
|
|
|
|
define KernelPackage/wdt-sunxi/description
|
|
Kernel module for AllWinner sunXi watchdog timer.
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,wdt-sunxi))
|
|
|