68c8d11eba
Add camera config support for BENGAL target. CRs-Fixed: 2531589 Change-Id: Ie0afa4acdcdcde2286a56f802b4f8246e711503f Signed-off-by: Suresh Vankadara <svankada@codeaurora.org>
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# auto-detect subdirs
|
|
ifeq ($(CONFIG_ARCH_KONA), y)
|
|
include $(srctree)/techpack/camera/config/konacamera.conf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_LITO), y)
|
|
include $(srctree)/techpack/camera/config/litocamera.conf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_BENGAL), y)
|
|
include $(srctree)/techpack/camera/config/bengalcamera.conf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_KONA), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/camera/config/konacameraconf.h
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_LITO), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/camera/config/litocameraconf.h
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_BENGAL), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/camera/config/bengalcameraconf.h
|
|
endif
|
|
|
|
ifdef CONFIG_SPECTRA_CAMERA
|
|
# Use USERINCLUDE when you must reference the UAPI directories only.
|
|
USERINCLUDE += \
|
|
-I$(srctree)/techpack/camera/include/uapi
|
|
|
|
# Use LINUXINCLUDE when you must reference the include/ directory.
|
|
# Needed to be compatible with the O= option
|
|
LINUXINCLUDE += \
|
|
-I$(srctree)/techpack/camera/include/uapi \
|
|
-I$(srctree)/techpack/camera/include
|
|
obj-y += drivers/
|
|
else
|
|
$(info Target not found)
|
|
endif
|