a070f1a239
Add support for Accton as9726-32d platform This pull request is based on as9716-32d, so I reference as9716-32d to create new model: as9726-32d. This module do not need led driver to control led, FPGA can handle it. I also implement API2.0(sonic_platform) for this model, CPLD driver, PSU driver, Fan driver to control these HW behavior.
20 lines
539 B
Makefile
Executable File
20 lines
539 B
Makefile
Executable File
ifneq ($(KERNELRELEASE),)
|
|
obj-m:= x86-64-accton-as9726-32d-cpld.o x86-64-accton-as9726-32d-psu.o \
|
|
x86-64-accton-as9726-32d-fan.o ym2651y.o
|
|
|
|
else
|
|
ifeq (,$(KERNEL_SRC))
|
|
#$(error KERNEL_SRC is not defined)
|
|
KVERSION=3.16.0-8-amd64
|
|
KERNEL_DIR = /usr/src/linux-headers-$(KVERSION)/
|
|
KERNELDIR:=$(KERNEL_DIR)
|
|
else
|
|
KERNELDIR:=$(KERNEL_SRC)
|
|
endif
|
|
PWD:=$(shell pwd)
|
|
default:
|
|
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
|
|
clean:
|
|
rm -rf *.o *.mod.o *.mod.o *.mod.c *.ko .*cmd .tmp_versions Module.markers Module.symvers modules.order
|
|
endif
|