diff options
Diffstat (limited to 'AndroidBoard.mk')
-rwxr-xr-x | AndroidBoard.mk | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/AndroidBoard.mk b/AndroidBoard.mk deleted file mode 100755 index cc60e9f..0000000 --- a/AndroidBoard.mk +++ /dev/null @@ -1,51 +0,0 @@ -LOCAL_PATH := $(call my-dir) - -#---------------------------------------------------------------------- -# Compile (L)ittle (K)ernel bootloader and the nandwrite utility -#---------------------------------------------------------------------- -ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) - -# Compile -include bootable/bootloader/edk2/AndroidBoot.mk - -$(INSTALLED_BOOTLOADER_MODULE): $(TARGET_EMMC_BOOTLOADER) | $(ACP) - $(transform-prebuilt-to-target) -$(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTLOADER_MODULE) - -droidcore: $(INSTALLED_BOOTLOADER_MODULE) -endif - -#---------------------------------------------------------------------- -# Compile Linux Kernel -#---------------------------------------------------------------------- -ifeq ($(KERNEL_DEFCONFIG),) - ifeq ($(TARGET_BUILD_VARIANT),user) - KERNEL_DEFCONFIG := sdm660-perf_defconfig - else - KERNEL_DEFCONFIG := sdm660_defconfig - endif -endif - -ifeq ($(TARGET_KERNEL_SOURCE),) - TARGET_KERNEL_SOURCE := kernel -endif - -include $(TARGET_KERNEL_SOURCE)/AndroidKernel.mk - -$(INSTALLED_KERNEL_TARGET): $(TARGET_PREBUILT_KERNEL) | $(ACP) - $(transform-prebuilt-to-target) - -#Create dsp directory -$(shell mkdir -p $(TARGET_OUT_VENDOR)/lib/dsp) - -# Create symbolic links for msadp -$(shell mkdir -p $(TARGET_OUT_VENDOR)/firmware; \ - ln -sf /dev/block/bootdevice/by-name/msadp \ - $(TARGET_OUT_VENDOR)/firmware/msadp) - -#---------------------------------------------------------------------- -# extra images -#---------------------------------------------------------------------- -#ifeq (, $(wildcard vendor/qcom/build/tasks/generate_extra_images.mk)) -include device/qcom/common/generate_extra_images.mk -#endif |