Indranil Chakraborty | 36e686a | 2018-04-05 12:05:02 +0530 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
Manu Prasad | 1e18ad9 | 2020-01-21 15:30:58 +0530 | [diff] [blame] | 2 | |
Bruno Martins | 3b3ef69 | 2021-01-12 21:29:07 +0000 | [diff] [blame^] | 3 | ifneq ($(filter $(QSSI_SUPPORTED_PLATFORMS),$(TARGET_BOARD_PLATFORM)),) |
| 4 | |
Manu Prasad | 1e18ad9 | 2020-01-21 15:30:58 +0530 | [diff] [blame] | 5 | #Disable WFD for selected 32-bit targets |
| 6 | ifeq ($(call is-board-platform,bengal),true) |
| 7 | ifeq ($(TARGET_BOARD_SUFFIX),_32) |
| 8 | WFD_DISABLE_PLATFORM_LIST := bengal |
| 9 | endif |
| 10 | endif |
| 11 | |
| 12 | ifneq ($(call is-board-platform-in-list,$(WFD_DISABLE_PLATFORM_LIST)),true) |
Manu Prasad | fafdcd5 | 2020-04-10 13:29:40 +0530 | [diff] [blame] | 13 | ifneq ($(TARGET_HAS_LOW_RAM), true) |
Indranil Chakraborty | 36e686a | 2018-04-05 12:05:02 +0530 | [diff] [blame] | 14 | include $(call all-makefiles-under, $(LOCAL_PATH)) |
Manu Prasad | 1e18ad9 | 2020-01-21 15:30:58 +0530 | [diff] [blame] | 15 | endif |
Manu Prasad | fafdcd5 | 2020-04-10 13:29:40 +0530 | [diff] [blame] | 16 | endif |
Bruno Martins | 3b3ef69 | 2021-01-12 21:29:07 +0000 | [diff] [blame^] | 17 | |
| 18 | endif |