blob: 0155c2fe3b715c7b17c5bac08e6954b9e05b15cb [file] [log] [blame]
Jesse Chan67a74442017-02-02 00:22:09 +08001# Copyright (C) 2017 The LineageOS Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17ifeq ($(strip $(BOARD_KERNEL_SEPARATED_DT)),true)
18ifneq ($(strip $(BOARD_KERNEL_PREBUILT_DT)),true)
19ifeq ($(strip $(BUILD_TINY_ANDROID)),true)
Michael Bestasd5b988f2018-03-25 20:33:08 +030020include system/tools/dtbtool/Android.mk
Jesse Chan67a74442017-02-02 00:22:09 +080021endif
22
23ifeq ($(strip $(TARGET_CUSTOM_DTBTOOL)),)
LuK1337977aee52017-08-28 22:24:35 +020024DTBTOOL_NAME := dtbToolLineage
Jesse Chan67a74442017-02-02 00:22:09 +080025else
26DTBTOOL_NAME := $(TARGET_CUSTOM_DTBTOOL)
27endif
28
29DTBTOOL := $(HOST_OUT_EXECUTABLES)/$(DTBTOOL_NAME)$(HOST_EXECUTABLE_SUFFIX)
30
31INSTALLED_DTIMAGE_TARGET := $(PRODUCT_OUT)/dt.img
32
33ifeq ($(strip $(TARGET_CUSTOM_DTBTOOL)),)
34# dtbToolCM will search subdirectories
35possible_dtb_dirs = $(KERNEL_OUT)/arch/$(KERNEL_ARCH)/boot/
36else
37# Most specific paths must come first in possible_dtb_dirs
Jesse Chan9432ff32017-04-25 17:38:42 +080038possible_dtb_dirs = $(KERNEL_OUT)/arch/$(KERNEL_ARCH)/boot/dts/exynos/ $(KERNEL_OUT)/arch/$(KERNEL_ARCH)/boot/dts/ $(KERNEL_OUT)/arch/$(KERNEL_ARCH)/boot/
Jesse Chan67a74442017-02-02 00:22:09 +080039endif
40
41define build-dtimage-target
42 $(call pretty,"Target dt image: $@")
43 $(hide) for dir in $(possible_dtb_dirs); do \
44 if [ -d "$$dir" ]; then \
45 dtb_dir="$$dir"; \
46 break; \
47 fi; \
48 done; \
49 $(DTBTOOL) $(BOARD_DTBTOOL_ARGS) -o $@ -s $(BOARD_KERNEL_PAGESIZE) -p $(KERNEL_OUT)/scripts/dtc/ "$$dtb_dir";
50 $(hide) chmod a+r $@
51endef
52
53$(INSTALLED_DTIMAGE_TARGET): $(DTBTOOL) $(INSTALLED_KERNEL_TARGET)
54 $(build-dtimage-target)
55 @echo "Made DT image: $@"
56
57.PHONY: dtimage
58dtimage: $(INSTALLED_DTIMAGE_TARGET)
59
60endif
61endif
62
Nolen Johnsonc03534e2019-08-11 20:46:48 +000063ifeq ($(strip $(TARGET_NEEDS_LOKI)),true)
Nolen Johnson802fd002019-08-07 23:56:48 -040064LOKI_TOOL := loki_tool
65else
66LOKI_TOOL := echo
67TARGET_LOKI_ABOOT_IMAGE :=
68endif
69
Jesse Chan67a74442017-02-02 00:22:09 +080070$(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(BOOTIMAGE_EXTRA_DEPS)
71 $(call pretty,"Target boot image: $@")
72 $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@
73 $(hide) echo -n "SEANDROIDENFORCE" >> $@
Nolen Johnson802fd002019-08-07 23:56:48 -040074 $(hide) $(LOKI_TOOL) patch boot $(TARGET_LOKI_ABOOT_IMAGE) $@ $@.lok
75 $(hide) cp $@.lok $@ || true
Jesse Chan67a74442017-02-02 00:22:09 +080076 $(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE),raw)
77 @echo "Made boot image: $@"
78
79$(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) $(RECOVERYIMAGE_EXTRA_DEPS)
80 @echo "----- Making recovery image ------"
81 $(hide) $(MKBOOTIMG) $(INTERNAL_RECOVERYIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ --id > $(RECOVERYIMAGE_ID_FILE)
82 $(hide) echo -n "SEANDROIDENFORCE" >> $@
Nolen Johnson802fd002019-08-07 23:56:48 -040083 $(hide) $(LOKI_TOOL) patch recovery $(TARGET_LOKI_ABOOT_IMAGE) $@ $@.lok
84 $(hide) cp $@.lok $@ || true
Jesse Chan67a74442017-02-02 00:22:09 +080085 $(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw)
86 @echo "Made recovery image: $@"