summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-03-05 04:02:04 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-03-05 04:02:04 +0000
commit1673d5342ef5fd3076a37336883db082dacf855b (patch)
tree06a5ec912d1b4915cd4d724eb97d5df7bb78187e
parent8fb5dadddd42e8c29773a54f62c68d070255d736 (diff)
parentf0fb65a243dd966f018719d2627ad23e029ffd75 (diff)
downloadbeagle-x15-1673d5342ef5fd3076a37336883db082dacf855b.tar.gz
Snap for 8254899 from f0fb65a243dd966f018719d2627ad23e029ffd75 to tm-releaseandroid-vts-13.0_r8android-vts-13.0_r7android-vts-13.0_r6android-vts-13.0_r5android-vts-13.0_r4android-vts-13.0_r3android-vts-13.0_r2android-vts-13.0_r1android-security-13.0.0_r9android-security-13.0.0_r8android-security-13.0.0_r7android-security-13.0.0_r6android-security-13.0.0_r5android-security-13.0.0_r4android-security-13.0.0_r3android-security-13.0.0_r2android-security-13.0.0_r18android-security-13.0.0_r17android-security-13.0.0_r16android-security-13.0.0_r15android-security-13.0.0_r14android-security-13.0.0_r13android-security-13.0.0_r12android-security-13.0.0_r11android-security-13.0.0_r10android-security-13.0.0_r1android-platform-13.0.0_r9android-platform-13.0.0_r8android-platform-13.0.0_r7android-platform-13.0.0_r6android-platform-13.0.0_r5android-platform-13.0.0_r4android-platform-13.0.0_r3android-platform-13.0.0_r20android-platform-13.0.0_r2android-platform-13.0.0_r19android-platform-13.0.0_r18android-platform-13.0.0_r17android-platform-13.0.0_r16android-platform-13.0.0_r15android-platform-13.0.0_r14android-platform-13.0.0_r13android-platform-13.0.0_r12android-platform-13.0.0_r11android-platform-13.0.0_r10android-platform-13.0.0_r1android-cts-13.0_r8android-cts-13.0_r7android-cts-13.0_r6android-cts-13.0_r5android-cts-13.0_r4android-cts-13.0_r3android-cts-13.0_r2android-cts-13.0_r1android-13.0.0_r8android-13.0.0_r7android-13.0.0_r6android-13.0.0_r5android-13.0.0_r4android-13.0.0_r31android-13.0.0_r3android-13.0.0_r2android-13.0.0_r12android-13.0.0_r1android13-tests-releaseandroid13-security-releaseandroid13-s3-releaseandroid13-s2-releaseandroid13-s1-releaseandroid13-releaseandroid13-platform-release
Change-Id: Ib5a45e625f7668f951889ea4fafea6e64cd3586c
-rw-r--r--build/tasks/boot_fit.mk41
1 files changed, 0 insertions, 41 deletions
diff --git a/build/tasks/boot_fit.mk b/build/tasks/boot_fit.mk
deleted file mode 100644
index 2852cf7..0000000
--- a/build/tasks/boot_fit.mk
+++ /dev/null
@@ -1,41 +0,0 @@
-ifneq ($(filter beagle_x15%, $(TARGET_DEVICE)),)
-ifeq ($(TARGET_BOOTIMAGE_FIT), true)
-
-MKIMAGE := $(HOST_OUT_EXECUTABLES)/mkimage
-DTC := $(HOST_OUT_EXECUTABLES)/dtc
-BOARD_DIR := device/ti/beagle_x15
-ITS := beagle_x15.its
-BOOTIMG_FIT := $(PRODUCT_OUT)/boot_fit.img
-BOOTIMG_FIT_INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel
-BOOTIMG_FIT_INSTALLED_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
-
-$(BOOTIMG_FIT): PRIVATE_DTC_FLAGS_MKIMAGE = -I dts -O dtb -p 500 -Wno-unit_address_vs_reg
-$(BOOTIMG_FIT): PRIVATE_INTERMEDIATES := $(call intermediates-dir-for,PACKAGING,fit)
-$(BOOTIMG_FIT): PRIVATE_ITS := $(ITS)
-$(BOOTIMG_FIT): PRIVATE_MKIMAGE := $(MKIMAGE)
-$(BOOTIMG_FIT): PRIVATE_BOARD_DIR := $(BOARD_DIR)
-$(BOOTIMG_FIT): PRIVATE_INSTALLED_KERNEL_TARGET := $(BOOTIMG_FIT_INSTALLED_KERNEL_TARGET)
-$(BOOTIMG_FIT): PRIVATE_INSTALLED_RAMDISK_TARGET := $(BOOTIMG_FIT_INSTALLED_RAMDISK_TARGET)
-$(BOOTIMG_FIT): $(BOOTIMG_FIT_INSTALLED_KERNEL_TARGET) $(BOOTIMG_FIT_INSTALLED_RAMDISK_TARGET)
-$(BOOTIMG_FIT): $(BOARD_DIR)/$(ITS) $(MKIMAGE) $(DTC) $(wildcard $(DTB_DIR)/*.dtb)
- mkdir -p $(PRIVATE_INTERMEDIATES)
- cp $(PRIVATE_BOARD_DIR)/$(PRIVATE_ITS) $(PRIVATE_INTERMEDIATES)/
- cp $(PRIVATE_INSTALLED_RAMDISK_TARGET) $(PRIVATE_INTERMEDIATES)/
- cp $(PRIVATE_INSTALLED_KERNEL_TARGET) $(PRIVATE_INTERMEDIATES)/zImage
- cp $(DTB_DIR)/*.dtb $(PRIVATE_INTERMEDIATES)/
-ifneq ($(wildcard $(DTBO_DIR)/*.dtbo),)
- cp $(DTBO_DIR)/*.dtbo $(PRIVATE_INTERMEDIATES)/
-endif
- PATH=$(HOST_OUT_EXECUTABLES):$$PATH $(PRIVATE_MKIMAGE) -D "$(PRIVATE_DTC_FLAGS_MKIMAGE)" -f $(PRIVATE_INTERMEDIATES)/$(PRIVATE_ITS) $@
-
-include $(CLEAR_VARS)
-LOCAL_MODULE := bootfitimage
-LOCAL_LICENSE_KINDS := legacy_notice
-LOCAL_LICENSE_CONDITIONS := notice
-LOCAL_ADDITIONAL_DEPENDENCIES := $(BOOTIMG_FIT)
-include $(BUILD_PHONY_PACKAGE)
-
-droidcore: bootfitimage
-
-endif
-endif