diff options
Diffstat (limited to 'conf/machine/include/omap3.inc')
-rw-r--r-- | conf/machine/include/omap3.inc | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/conf/machine/include/omap3.inc b/conf/machine/include/omap3.inc index 1249837ddb..8e90453d4c 100644 --- a/conf/machine/include/omap3.inc +++ b/conf/machine/include/omap3.inc @@ -1,13 +1,30 @@ require conf/machine/include/tune-cortexa8.inc PREFERRED_PROVIDER_virtual/kernel = "linux-omap" # Increase this everytime you change something in the kernel -MACHINE_KERNEL_PR = "r36" +MACHINE_KERNEL_PR = "r37" KERNEL_IMAGETYPE = "uImage" UBOOT_ENTRYPOINT = "0x80008000" UBOOT_LOADADDRESS = "0x80008000" -EXTRA_IMAGEDEPENDS += "u-boot x-load" +# Only build u-boot, xload is optional +EXTRA_IMAGEDEPENDS += "u-boot" MACHINE_EXTRA_RRECOMMENDS = " omap3-sgx-modules " + +# TI DVSDK stuff: +CODEC_INSTALL_DIR ?= "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combo-omap3530" +CODEC ?= "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-codec-combo-omap3530" +DSPCFG ?= "OMAP3530SHMEM" +DSPLINKDSPCFG ?= "OMAP3530SHMEM" +DSPLINKGPPOS ?= "OMAPLSP" +GPPOS ?= "OMAPLSP" +DSPLINKPLATFORM ?= "OMAP3530" +DSPLINKSOC ?= "3530" +DSPPOWERSOC ?= "omap3530" +LPMDSPPOWERSOC ?= "omap3530" +PLATFORM ?= "omap3530" +TARGET ?= "o3530_al" +XDC_PLATFORM ?= ti.platforms.evm3530 + |