[meta-ti] Murali Karicheri : keystone: boot-monitor: add initial recipe

Arago Project git git at arago-project.org
Mon Jan 28 15:51:32 PST 2013


Module: meta-ti
Branch: master
Commit: 1920403ef28a61aabceee22f4472bb98ffe48f5d
URL:    http://arago-project.org/git/meta-ti.git?a=commit;h=1920403ef28a61aabceee22f4472bb98ffe48f5d

Author: Murali Karicheri <m-karicheri2 at ti.com>
Date:   Fri Jan 18 18:15:21 2013 -0500

keystone: boot-monitor: add initial recipe

This adds recipe to build boot monitor image. Boot monitor is
a standalone image that is loaded and executed from u-boot to
replace the RBL provided monitor code in ARM with Linux boot
specific code.

Signed-off-by: Murali Karicheri <m-karicheri2 at ti.com>
Signed-off-by: Denys Dmytriyenko <denys at ti.com>

---

 recipes-bsp/boot-monitor/boot-monitor_git.bb |   39 ++++++++++++++++++++++++++
 1 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/recipes-bsp/boot-monitor/boot-monitor_git.bb b/recipes-bsp/boot-monitor/boot-monitor_git.bb
new file mode 100644
index 0000000..dc4d71e
--- /dev/null
+++ b/recipes-bsp/boot-monitor/boot-monitor_git.bb
@@ -0,0 +1,39 @@
+DESCRIPTION = "Boot Monitor - TI ARM Boot monitor code"
+EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"
+
+LICENSE = "BSD"
+
+BOOT_MONITOR_BINARY ?= "skern.bin"
+BOOT_MONITOR_IMAGE  ?= "skern-${MACHINE}.bin"
+BOOT_MONITOR_MAKE_TARGET  ?= "all"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=b676661788f8c0f8cdeafd2a39467cae"
+
+COMPATIBLE_MACHINE = "keystone-evm"
+
+SRC_URI = "git://gtgit01.gt.design.ti.com/git/projects/boot-monitor.git;protocol=git;branch=${BRANCH}"
+
+PV = "1.0"
+PR = "r0+gitr${SRCPV}"
+
+BRANCH = "master"
+
+S = "${WORKDIR}/git"
+
+SRCREV = "b8014b69e8c7e981e8bc3e067a9d990e2bb603ba"
+
+do_compile () {
+	unset LDFLAGS
+	unset CFLAGS
+	unset CPPFLAGS
+	oe_runmake ${BOOT_MONITOR_MAKE_TARGET}
+}
+
+inherit deploy
+
+addtask deploy before do_build after do_compile
+
+do_deploy () {
+	install -d ${DEPLOYDIR}
+	install ${S}/${BOOT_MONITOR_BINARY} ${DEPLOYDIR}/${BOOT_MONITOR_IMAGE}
+}




More information about the meta-ti mailing list