https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: c8901fe8bdad9f5f1ecf0cfea39f87ef4444ee96 authored by Alex on 06 October 2017, 22:20:54 UTC
Close branch crop_rec_4k_EOSM_700D_SRM_BUFFER_SIZE.
Tip revision: c8901fe
Makefile.platform.base

ifndef ML_SRC_PROFILE
$(error ML_SRC_PROFILE is not defined)
endif

ifndef MODEL
$(error Camera MODEL is not defined)
endif

include $(TOP_DIR)/Makefile.top

include $(PLATFORM_PATH)/Makefile.platform.map

# check for multiple firmware versions 
ifndef FW_VERSION
FW_VERSION=$(call platform_version,$(MODEL))
ifeq ($(FW_VERSION),)
# fixme: this triggers when running make clean from platform dir; how to avoid? 
$(warning FW_VERSION is not defined)
endif
endif

#not used?
ML_VERSION=unified1

ifndef ML_MODEL_DIR
ML_MODEL_DIR = $(MODEL).$(FW_VERSION)
endif

PLATFORM_DIR=$(PLATFORM_PATH)/$(ML_MODEL_DIR)
PLATFORM_INC=$(PLATFORM_DIR)

# must have 8.3 characters for 64GB EXFAT cards
UPDATE_NAME_FIR=ML-SETUP.FIR

ifndef ML_MAKEFILE_PLATFORM_SETUP
ML_MAKEFILE_PLATFORM_SETUP = $(PLATFORM_DIR)/Makefile.platform.default
endif

-include $(ML_MAKEFILE_PLATFORM_SETUP)

ifndef AUTOEXEC_BASE
AUTOEXEC_BASE	= 0x40800000
endif

ifndef FIR_BASE
FIR_BASE	= 0x40800120
endif

ifndef ROMBASEADDR
$(error ROMBASEADDR is not defined)
endif

ifndef RESTARTSTART
$(error RESTARTSTART is not defined)
endif

include $(TOP_DIR)/Makefile.setup

include $(SRC_DIR)/Makefile.src

include $(PLATFORM_PATH)/Makefile.platform.extras
back to top