diff options
author | Denys Dmytriyenko <denis@denix.org> | 2010-05-06 01:49:20 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2010-05-06 01:49:20 -0400 |
commit | 819cd0db4df56c85a6fd91b063133f49476ca926 (patch) | |
tree | 579d6f462e12fb429128d683a903392def18acfb | |
parent | 49d7eff0e98fb601c152858e25ca77d5b0ca0281 (diff) |
am-sysinfo: add AM SysInfo set, currently mem_util only (from Arago)
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
-rw-r--r-- | recipes/ti/am-sysinfo_svn.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/ti/am-sysinfo_svn.bb b/recipes/ti/am-sysinfo_svn.bb new file mode 100644 index 0000000000..9193836d71 --- /dev/null +++ b/recipes/ti/am-sysinfo_svn.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "AM SysInfo" +HOMEPAGE = "https://gforge.ti.com/gf/project/am_sysinfo/" +LICENSE = "BSD" +SECTION = "system" +PRIORITY = "optional" + +SRCREV = "2" +PV = "1.0" +PR = "r1+svnr${SRCPV}" + +SRC_URI = "svn://gforge.ti.com/svn/am_sysinfo/;module=trunk;proto=https;user=anonymous;pswd=''" + +S = "${WORKDIR}/trunk" + +do_compile() { + ${CC} ${CFLAGS} ${LDFLAGS} -o mem_util/mem_util mem_util/mem_util.c +} + +do_install() { + install -d ${D}/${bindir} + install -m 0755 ${S}/mem_util/mem_util ${D}/${bindir} +} |