18 lines
347 B
Makefile
18 lines
347 B
Makefile
ifeq ($(BOARD_KERNEL_SEPARATED_DT),true)
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
dtbtool.c
|
|
|
|
LOCAL_CFLAGS += \
|
|
-Wall
|
|
|
|
## Hybrid v1/v2 dtbTool. Use a different name to avoid conflicts with copies in device repos
|
|
LOCAL_MODULE := dtbTool_custom
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
endif
|