* [PATCH 1/4] arago-base-tisdk-image: add keystone support
@ 2014-02-06 14:39 Chase Maupin
2014-02-06 14:40 ` [PATCHv2 2/4] arago-core-tisdk-image: add support for keystone devices Chase Maupin
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Chase Maupin @ 2014-02-06 14:39 UTC (permalink / raw)
To: meta-arago
* Add support to this image for keystone devices
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../recipes-core/images/arago-base-tisdk-image.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb b/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb
index 2c0e217..ef47dc0 100644
--- a/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb
+++ b/meta-arago-distro/recipes-core/images/arago-base-tisdk-image.bb
@@ -4,7 +4,7 @@
require arago-image.inc
inherit remove-net-rules
-COMPATIBLE_MACHINE = "omap3|omapl138|ti33x|ti43x|omap4|omap-a15"
+COMPATIBLE_MACHINE = "omap3|omapl138|ti33x|ti43x|omap4|omap-a15|keystone"
IMAGE_INSTALL += "\
packagegroup-arago-base \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCHv2 2/4] arago-core-tisdk-image: add support for keystone devices
2014-02-06 14:39 [PATCH 1/4] arago-base-tisdk-image: add keystone support Chase Maupin
@ 2014-02-06 14:40 ` Chase Maupin
2014-02-06 14:40 ` [PATCH 3/4] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin
2014-02-06 14:40 ` [PATCH 4/4] tisdk-addons: add mmc-utils package Chase Maupin
2 siblings, 0 replies; 6+ messages in thread
From: Chase Maupin @ 2014-02-06 14:40 UTC (permalink / raw)
To: meta-arago
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
* Updated in version 2
* Use arago-server-tisdk-image for keystone devices
---
.../recipes-core/images/arago-core-tisdk-image.bb | 1 +
.../recipes-core/images/arago-core-tisdk-image.inc | 6 +++++-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.bb b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.bb
index 33bfc11..ccddbc1 100644
--- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.bb
+++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.bb
@@ -1,5 +1,6 @@
require arago-core-tisdk-image.inc
DEPLOY_SPL_NAME_omapl138 = ""
+DEPLOY_SPL_NAME_keystone = ""
export IMAGE_BASENAME = "arago-core-tisdk-image"
diff --git a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
index 74c2b87..f25db51 100644
--- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
+++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
@@ -7,7 +7,7 @@ IMAGE_FSTYPES = "tar.gz"
inherit tisdk-image
-COMPATIBLE_MACHINE = "omap3|omapl138|ti33x|ti43x|omap-a15"
+COMPATIBLE_MACHINE = "omap3|omapl138|ti33x|ti43x|omap-a15|keystone"
# List of packages to remove from the host package. This is usually due to
# licensing issues and unneeded dependencies.
@@ -21,10 +21,14 @@ DTB_FILTER_ti33x = "am335x"
DTB_FILTER_omap5-evm = "omap5"
DTB_FILTER_dra7xx-evm = "dra7"
DTB_FILTER_ti43x = "am43"
+DTB_FILTER_keystone = "k2hk"
# List of target side images to build for the SDK
TARGET_IMAGES = "arago-base-tisdk-image tisdk-rootfs-image"
+# Some devices do not support display and use a server image instead
+TARGET_IMAGES_keystone-evm = "arago-base-tisdk-image tisdk-server-rootfs-image"
+
TISDK_TOOLCHAIN = "meta-toolchain-arago-tisdk"
IMAGE_INSTALL = "\
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 3/4] mmc-utils: add mmc-utils for working with eMMC devices
2014-02-06 14:39 [PATCH 1/4] arago-base-tisdk-image: add keystone support Chase Maupin
2014-02-06 14:40 ` [PATCHv2 2/4] arago-core-tisdk-image: add support for keystone devices Chase Maupin
@ 2014-02-06 14:40 ` Chase Maupin
2014-02-06 15:19 ` Denys Dmytriyenko
2014-02-06 14:40 ` [PATCH 4/4] tisdk-addons: add mmc-utils package Chase Maupin
2 siblings, 1 reply; 6+ messages in thread
From: Chase Maupin @ 2014-02-06 14:40 UTC (permalink / raw)
To: meta-arago
* 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 <Chase.Maupin@ti.com>
---
.../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
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH 3/4] mmc-utils: add mmc-utils for working with eMMC devices
2014-02-06 14:40 ` [PATCH 3/4] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin
@ 2014-02-06 15:19 ` Denys Dmytriyenko
2014-02-06 15:25 ` Maupin, Chase
0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-02-06 15:19 UTC (permalink / raw)
To: Chase Maupin; +Cc: meta-arago
On Thu, Feb 06, 2014 at 08:40:01AM -0600, Chase Maupin wrote:
> * 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
Still no PV? It will default to 0.0, but maybe we want to set it explicitly?
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
> .../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
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 3/4] mmc-utils: add mmc-utils for working with eMMC devices
2014-02-06 15:19 ` Denys Dmytriyenko
@ 2014-02-06 15:25 ` Maupin, Chase
0 siblings, 0 replies; 6+ messages in thread
From: Maupin, Chase @ 2014-02-06 15:25 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Thursday, February 06, 2014 10:19 AM
>To: Maupin, Chase
>Cc: meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 3/4] mmc-utils: add mmc-utils for
>working with eMMC devices
>
>On Thu, Feb 06, 2014 at 08:40:01AM -0600, Chase Maupin wrote:
>> * 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
>
>Still no PV? It will default to 0.0, but maybe we want to set it
>explicitly?
I missed that comment. There was no PV that I noticed for this project :(
I can set 1.0 though.
>
>
>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>> ---
>> .../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=d7747fc87f1eb22b946ef8199
>69503f0"
>> +
>> +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
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 4/4] tisdk-addons: add mmc-utils package
2014-02-06 14:39 [PATCH 1/4] arago-base-tisdk-image: add keystone support Chase Maupin
2014-02-06 14:40 ` [PATCHv2 2/4] arago-core-tisdk-image: add support for keystone devices Chase Maupin
2014-02-06 14:40 ` [PATCH 3/4] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin
@ 2014-02-06 14:40 ` Chase Maupin
2 siblings, 0 replies; 6+ messages in thread
From: Chase Maupin @ 2014-02-06 14:40 UTC (permalink / raw)
To: meta-arago
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../packagegroup-arago-tisdk-addons.bb | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
index 837378a..18c97cc 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to install additional utilities/demos for SDKs"
LICENSE = "MIT"
-PR = "r11"
+PR = "r12"
inherit packagegroup
@@ -17,6 +17,7 @@ UTILS = " \
dropbear \
openssh-sftp-server \
ptpd \
+ mmc-utils \
"
# Add PRU examples for am180x-evm devices
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-02-06 15:25 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-06 14:39 [PATCH 1/4] arago-base-tisdk-image: add keystone support Chase Maupin
2014-02-06 14:40 ` [PATCHv2 2/4] arago-core-tisdk-image: add support for keystone devices Chase Maupin
2014-02-06 14:40 ` [PATCH 3/4] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin
2014-02-06 15:19 ` Denys Dmytriyenko
2014-02-06 15:25 ` Maupin, Chase
2014-02-06 14:40 ` [PATCH 4/4] tisdk-addons: add mmc-utils package Chase Maupin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.