2018-06-08 15:40:11 +08:00
|
|
|
define KernelPackage/ata-ahci-mtk
|
|
|
|
TITLE:=Mediatek AHCI Serial ATA support
|
|
|
|
KCONFIG:=CONFIG_AHCI_MTK
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/ata/ahci_mtk.ko \
|
|
|
|
$(LINUX_DIR)/drivers/ata/libahci_platform.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,40,libahci libahci_platform ahci_mtk,1)
|
|
|
|
$(call AddDepends/ata)
|
kernel: bump to 4.14.193, 4.19.138, 5.4.59 (#5350)
kernel: bump to 4.14.193, 4.19.138, 5.4.59 (#5350)
431fb8c mac80211: add AQL improvements
6bdd4c9 mac80211: add missing backports for building with 4.14 kernels
0106820 mac80211: add missing return code checks in AQL improvements
e7f7101 mac80211: rework encapsulation offload support
[package]
base-files: add function for generating random MAC
dnsmasq: abort dhcp_check on interface state
boot: sync upstream source code
ath10k-ct-firmware/mt76/sch_cake: update to latest git HEAD
[script]
download: add China Mirror Station
[target]
Sync: arc770, ath79, bcm63xx, kirkwood, lantiq, layerscape,
mediatek, mvebu, octeon, oxnas, pistachio, uml
Sync most of the target patches.
Run-compiled-on: ipq40xx (4.19 & 5.4), ramips
2020-08-26 11:31:50 +08:00
|
|
|
DEPENDS+=@(TARGET_mediatek_mt7622||TARGET_mediatek_mt7623)
|
2018-06-08 15:40:11 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ata-ahci-mtk/description
|
|
|
|
Mediatek AHCI Serial ATA host controllers
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ata-ahci-mtk))
|
|
|
|
|
2020-10-03 00:36:16 +08:00
|
|
|
define KernelPackage/btmtkuart
|
|
|
|
SUBMENU:=Other modules
|
|
|
|
TITLE:=MediaTek HCI UART driver
|
|
|
|
DEPENDS:=@TARGET_mediatek_mt7622 +kmod-bluetooth +mt7622bt-firmware
|
|
|
|
KCONFIG:=CONFIG_BT_MTKUART
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/bluetooth/btmtkuart.ko
|
|
|
|
AUTOLOAD:=$(call AutoProbe,btmtkuart)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,btmtkuart))
|
|
|
|
|
2018-06-08 15:40:11 +08:00
|
|
|
define KernelPackage/sdhci-mtk
|
|
|
|
SUBMENU:=Other modules
|
|
|
|
TITLE:=Mediatek SDHCI driver
|
|
|
|
DEPENDS:=@TARGET_mediatek_mt7622 +kmod-sdhci
|
|
|
|
KCONFIG:=CONFIG_MMC_MTK
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/mmc/host/mtk-sd.ko
|
|
|
|
AUTOLOAD:=$(call AutoProbe,mtk-sd,1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sdhci-mtk))
|
|
|
|
|
|
|
|
define KernelPackage/crypto-hw-mtk
|
|
|
|
TITLE:= MediaTek's Crypto Engine module
|
|
|
|
DEPENDS:=@TARGET_mediatek
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_HW=y \
|
|
|
|
CONFIG_CRYPTO_AES=y \
|
|
|
|
CONFIG_CRYPTO_AEAD=y \
|
|
|
|
CONFIG_CRYPTO_SHA1=y \
|
|
|
|
CONFIG_CRYPTO_SHA256=y \
|
|
|
|
CONFIG_CRYPTO_SHA512=y \
|
|
|
|
CONFIG_CRYPTO_HMAC=y \
|
|
|
|
CONFIG_CRYPTO_DEV_MEDIATEK
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/crypto/mediatek/mtk-crypto.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,90,mtk-crypto)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/crypto-hw-mtk/description
|
|
|
|
MediaTek's EIP97 Cryptographic Engine driver.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hw-mtk))
|