blob: b6c4e338a341ac2ec61e4c2f24b7842789e80ef1 [file] [log] [blame]
Indranil Chakraborty36e686a2018-04-05 12:05:02 +05301LOCAL_PATH := $(call my-dir)
Manu Prasad1e18ad92020-01-21 15:30:58 +05302
Bruno Martins3b3ef692021-01-12 21:29:07 +00003ifneq ($(filter $(QSSI_SUPPORTED_PLATFORMS),$(TARGET_BOARD_PLATFORM)),)
4
Manu Prasad1e18ad92020-01-21 15:30:58 +05305#Disable WFD for selected 32-bit targets
6ifeq ($(call is-board-platform,bengal),true)
7ifeq ($(TARGET_BOARD_SUFFIX),_32)
8WFD_DISABLE_PLATFORM_LIST := bengal
9endif
10endif
11
12ifneq ($(call is-board-platform-in-list,$(WFD_DISABLE_PLATFORM_LIST)),true)
Manu Prasadfafdcd52020-04-10 13:29:40 +053013ifneq ($(TARGET_HAS_LOW_RAM), true)
Indranil Chakraborty36e686a2018-04-05 12:05:02 +053014include $(call all-makefiles-under, $(LOCAL_PATH))
Manu Prasad1e18ad92020-01-21 15:30:58 +053015endif
Manu Prasadfafdcd52020-04-10 13:29:40 +053016endif
Bruno Martins3b3ef692021-01-12 21:29:07 +000017
18endif