* These utils make working with eMMC devices as raw devices easier for setting up the boot locations, etc * This is overlayed into meta-arago until picked up in oe-core
Signed-off-by: Chase Maupin <[email protected]> --- .../recipes-devtools/mmc/mmc-utils_git.bb | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 meta-arago-extras/recipes-devtools/mmc/mmc-utils_git.bb diff --git a/meta-arago-extras/recipes-devtools/mmc/mmc-utils_git.bb b/meta-arago-extras/recipes-devtools/mmc/mmc-utils_git.bb new file mode 100644 index 0000000..fe9a3fa --- /dev/null +++ b/meta-arago-extras/recipes-devtools/mmc/mmc-utils_git.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "Userspace tools for MMC/SD devices" +HOMEPAGE = "http://git.kernel.org/cgit/linux/kernel/git/cjb/mmc-utils.git/" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://mmc.c;beginline=1;endline=17;md5=d7747fc87f1eb22b946ef819969503f0" + +BRANCH ?= "master" +SRCREV = "11f2ceabc4ad3f0dd568e0ce68166e4803e0615b" + +SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git;protocol=git;branch=${BRANCH}" + + +S = "${WORKDIR}/git" + +do_install() { + install -d ${D}${bindir} + install -m 0755 mmc ${D}${bindir} +} -- 1.7.0.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
