Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.6-rc4 15 lines 499 B view raw
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for BestComm & co 4# 5 6bestcomm-core-objs := bestcomm.o sram.o 7bestcomm-ata-objs := ata.o bcom_ata_task.o 8bestcomm-fec-objs := fec.o bcom_fec_rx_task.o bcom_fec_tx_task.o 9bestcomm-gen-bd-objs := gen_bd.o bcom_gen_bd_rx_task.o bcom_gen_bd_tx_task.o 10 11obj-$(CONFIG_PPC_BESTCOMM) += bestcomm-core.o 12obj-$(CONFIG_PPC_BESTCOMM_ATA) += bestcomm-ata.o 13obj-$(CONFIG_PPC_BESTCOMM_FEC) += bestcomm-fec.o 14obj-$(CONFIG_PPC_BESTCOMM_GEN_BD) += bestcomm-gen-bd.o 15