* [PATCH 1/6] tisdk-image: change to regex matching
@ 2014-02-05 20:04 Chase Maupin
2014-02-05 20:04 ` [PATCH 2/6] arago-source-ipk: Add Keystone sourceipk settings Chase Maupin
` (4 more replies)
0 siblings, 5 replies; 17+ messages in thread
From: Chase Maupin @ 2014-02-05 20:04 UTC (permalink / raw)
To: meta-arago
* As described in the comments of the tisdk-image.bbclass you can now
specify "or" matches for devices that do not have a consistent naming
for their DTB files using the regex matching.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
meta-arago-distro/classes/tisdk-image.bbclass | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/meta-arago-distro/classes/tisdk-image.bbclass b/meta-arago-distro/classes/tisdk-image.bbclass
index c365eaa..59e467a 100644
--- a/meta-arago-distro/classes/tisdk-image.bbclass
+++ b/meta-arago-distro/classes/tisdk-image.bbclass
@@ -532,12 +532,17 @@ do_sdk_image () {
fi
# Copy the DTB files if they exist.
- # NOTE: For simplicity remove the uImage- prefix on the dtb files. Get just the symlink
- # files for a cleaner name. Use the DTB_FILTER variable to allow finding the
- # dtb files for only that MACHINE type
+ # NOTE: For simplicity remove the uImage- prefix on the dtb files. Get
+ # just the symlink files for a cleaner name. Use the DTB_FILTER variable
+ # to allow finding the dtb files for only that MACHINE type
+ # NOTE: The DTB_FILTER variable is interpreted as a regex which means
+ # that for cases where the DTB files to be selected do not have
+ # a common naming you can use something line filter1\|filter2 which
+ # will be interpreted as an "or" and allow matching both expressions.
+ # The \| is important for delimiting these values.
if [ "${DTB_FILTER}" != "unknown" ]
then
- for f in `find ${DEPLOY_DIR_IMAGE} -type l -name "*${DTB_FILTER}*.dtb"`
+ for f in `find ${DEPLOY_DIR_IMAGE} -type l -regex ".*\(${DTB_FILTER}\).*\.dtb"`
do
dtb_file=`basename $f | sed s/.Image-//`
cp $f ${prebuilt_dir}/${dtb_file}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH 2/6] arago-source-ipk: Add Keystone sourceipk settings 2014-02-05 20:04 [PATCH 1/6] tisdk-image: change to regex matching Chase Maupin @ 2014-02-05 20:04 ` Chase Maupin 2014-02-05 20:04 ` [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux for keystone devices Chase Maupin ` (3 subsequent siblings) 4 siblings, 0 replies; 17+ messages in thread From: Chase Maupin @ 2014-02-05 20:04 UTC (permalink / raw) To: meta-arago * Add settings to make the Keystone u-boot and kernel sourceipks Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> --- .../conf/distro/arago-source-ipk.conf | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf index 19034b6..231e13d 100644 --- a/meta-arago-distro/conf/distro/arago-source-ipk.conf +++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf @@ -120,6 +120,11 @@ SRCIPK_INSTALL_DIR_pn-u-boot-ti-staging = "board-support/u-boot-${PV}" SRCIPK_PACKAGE_ARCH_pn-u-boot-ti-staging = "${MACHINE_ARCH}" SRCIPK_PRESERVE_GIT_pn-u-boot-ti-staging = "true" +CREATE_SRCIPK_pn-u-boot-keystone = "1" +SRCIPK_INSTALL_DIR_pn-u-boot-keystone = "board-support/u-boot-${PV}" +SRCIPK_PACKAGE_ARCH_pn-u-boot-keystone = "${MACHINE_ARCH}" +SRCIPK_PRESERVE_GIT_pn-u-boot-keystone = "true" + CREATE_SRCIPK_pn-u-boot-dra7xx = "1" SRCIPK_INSTALL_DIR_pn-u-boot-dra7xx = "board-support/u-boot-${PV}-${PR}" SRCIPK_PACKAGE_ARCH_pn-u-boot-dra7xx = "${MACHINE_ARCH}" @@ -145,6 +150,11 @@ SRCIPK_INSTALL_DIR_pn-linux-ti-staging = "board-support/linux-${PV}" SRCIPK_PACKAGE_ARCH_pn-linux-ti-staging = "${MACHINE_ARCH}" SRCIPK_PRESERVE_GIT_pn-linux-ti-staging = "true" +CREATE_SRCIPK_pn-linux-keystone = "1" +SRCIPK_INSTALL_DIR_pn-linux-keystone = "board-support/linux-${PV}" +SRCIPK_PACKAGE_ARCH_pn-linux-keystone = "${MACHINE_ARCH}" +SRCIPK_PRESERVE_GIT_pn-linux-keystone = "true" + CREATE_SRCIPK_pn-linux-omapl138-psp = "1" SRCIPK_INSTALL_DIR_pn-linux-omapl138-psp = "board-support/linux-${KVER}-psp${PSPREL}" SRCIPK_PACKAGE_ARCH_pn-linux-omapl138-psp = "${MACHINE_ARCH}" -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux for keystone devices 2014-02-05 20:04 [PATCH 1/6] tisdk-image: change to regex matching Chase Maupin 2014-02-05 20:04 ` [PATCH 2/6] arago-source-ipk: Add Keystone sourceipk settings Chase Maupin @ 2014-02-05 20:04 ` Chase Maupin 2014-02-06 0:04 ` Denys Dmytriyenko 2014-02-05 20:04 ` [PATCH 4/6] arago-base-tisdk-image: add keystone support Chase Maupin ` (2 subsequent siblings) 4 siblings, 1 reply; 17+ messages in thread From: Chase Maupin @ 2014-02-05 20:04 UTC (permalink / raw) To: meta-arago * Keystone devices do not have a pinmux utility currently so do not try to package one. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> --- .../packagegroup-arago-tisdk-amsdk-sdk-host.bb | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb index cb95ae9..e5d1be5 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb @@ -1,6 +1,6 @@ DESCRIPTION = "Task to install additional scripts and applications into the SDK" LICENSE = "MIT" -PR = "r17" +PR = "r18" inherit packagegroup @@ -14,6 +14,7 @@ KERNEL_SRC = "${PREFERRED_PROVIDER_virtual/kernel}-src" TOOLS = "pinmux-utility" TOOLS_omap-a15 = "" TOOLS_ti43x = "" +TOOLS_keystone = "" TOOLS_append_am37x-evm = " flash-utility" TOOLS_append_am3517-evm = " flash-utility" -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux for keystone devices 2014-02-05 20:04 ` [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux for keystone devices Chase Maupin @ 2014-02-06 0:04 ` Denys Dmytriyenko 2014-02-06 0:15 ` Nelson, Sam 0 siblings, 1 reply; 17+ messages in thread From: Denys Dmytriyenko @ 2014-02-06 0:04 UTC (permalink / raw) To: Chase Maupin; +Cc: meta-arago Sam, Which recipe do you currently use to build linux-devkit for MCSDK? I'm trying to see if this recipe is in your path or not. But either way we need to unify these thinks a bit better... -- Denys On Wed, Feb 05, 2014 at 02:04:03PM -0600, Chase Maupin wrote: > * Keystone devices do not have a pinmux utility currently so > do not try to package one. > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> > --- > .../packagegroup-arago-tisdk-amsdk-sdk-host.bb | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb > index cb95ae9..e5d1be5 100644 > --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb > +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb > @@ -1,6 +1,6 @@ > DESCRIPTION = "Task to install additional scripts and applications into the SDK" > LICENSE = "MIT" > -PR = "r17" > +PR = "r18" > > inherit packagegroup > > @@ -14,6 +14,7 @@ KERNEL_SRC = "${PREFERRED_PROVIDER_virtual/kernel}-src" > TOOLS = "pinmux-utility" > TOOLS_omap-a15 = "" > TOOLS_ti43x = "" > +TOOLS_keystone = "" > TOOLS_append_am37x-evm = " flash-utility" > TOOLS_append_am3517-evm = " flash-utility" > > -- > 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] 17+ messages in thread
* Re: [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux for keystone devices 2014-02-06 0:04 ` Denys Dmytriyenko @ 2014-02-06 0:15 ` Nelson, Sam 0 siblings, 0 replies; 17+ messages in thread From: Nelson, Sam @ 2014-02-06 0:15 UTC (permalink / raw) To: Dmytriyenko, Denys, Maupin, Chase; +Cc: meta-arago@arago-project.org > -----Original Message----- > From: meta-arago-bounces@arago-project.org [mailto:meta-arago- > bounces@arago-project.org] On Behalf Of Dmytriyenko, Denys > Sent: Wednesday, February 05, 2014 7:04 PM > To: Maupin, Chase > Cc: meta-arago@arago-project.org > Subject: Re: [meta-arago] [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux > for keystone devices > > Sam, > > Which recipe do you currently use to build linux-devkit for MCSDK? I'm > trying > to see if this recipe is in your path or not. [Sam] linux-devkit for MCSDK uses meta-arago/meta-arago-distro/recipes-core/meta/meta-toolchain-arago-tisdk.bb > But either way we need to unify > these thinks a bit better... [Sam] I agree. > -- > Denys > > > On Wed, Feb 05, 2014 at 02:04:03PM -0600, Chase Maupin wrote: > > * Keystone devices do not have a pinmux utility currently so > > do not try to package one. > > > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> > > --- > > .../packagegroup-arago-tisdk-amsdk-sdk-host.bb | 3 ++- > > 1 files changed, 2 insertions(+), 1 deletions(-) > > > > diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup- > arago-tisdk-amsdk-sdk-host.bb b/meta-arago-distro/recipes- > core/packagegroups/packagegroup-arago-tisdk-amsdk-sdk-host.bb > > index cb95ae9..e5d1be5 100644 > > --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago- > tisdk-amsdk-sdk-host.bb > > +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup- > arago-tisdk-amsdk-sdk-host.bb > > @@ -1,6 +1,6 @@ > > DESCRIPTION = "Task to install additional scripts and applications into the > SDK" > > LICENSE = "MIT" > > -PR = "r17" > > +PR = "r18" > > > > inherit packagegroup > > > > @@ -14,6 +14,7 @@ KERNEL_SRC = > "${PREFERRED_PROVIDER_virtual/kernel}-src" > > TOOLS = "pinmux-utility" > > TOOLS_omap-a15 = "" > > TOOLS_ti43x = "" > > +TOOLS_keystone = "" > > TOOLS_append_am37x-evm = " flash-utility" > > TOOLS_append_am3517-evm = " flash-utility" > > > > -- > > 1.7.0.4 > > > > _______________________________________________ > > meta-arago mailing list > > meta-arago@arago-project.org > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 4/6] arago-base-tisdk-image: add keystone support 2014-02-05 20:04 [PATCH 1/6] tisdk-image: change to regex matching Chase Maupin 2014-02-05 20:04 ` [PATCH 2/6] arago-source-ipk: Add Keystone sourceipk settings Chase Maupin 2014-02-05 20:04 ` [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux for keystone devices Chase Maupin @ 2014-02-05 20:04 ` Chase Maupin 2014-02-06 0:00 ` Denys Dmytriyenko 2014-02-05 20:04 ` [PATCH 5/6] arago-core-tisdk-image: add support for keystone devices Chase Maupin 2014-02-05 20:04 ` [PATCH 6/6] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin 4 siblings, 1 reply; 17+ messages in thread From: Chase Maupin @ 2014-02-05 20:04 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] 17+ messages in thread
* Re: [PATCH 4/6] arago-base-tisdk-image: add keystone support 2014-02-05 20:04 ` [PATCH 4/6] arago-base-tisdk-image: add keystone support Chase Maupin @ 2014-02-06 0:00 ` Denys Dmytriyenko 2014-02-06 12:45 ` Maupin, Chase 0 siblings, 1 reply; 17+ messages in thread From: Denys Dmytriyenko @ 2014-02-06 0:00 UTC (permalink / raw) To: Chase Maupin; +Cc: meta-arago On Wed, Feb 05, 2014 at 02:04:04PM -0600, Chase Maupin wrote: > * Add support to this image for keystone devices And the server image doesn't use arago-base-tisdk-image directly. So, I'll push the first 3 patches from the series. > 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 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 4/6] arago-base-tisdk-image: add keystone support 2014-02-06 0:00 ` Denys Dmytriyenko @ 2014-02-06 12:45 ` Maupin, Chase 2014-02-06 15:18 ` Denys Dmytriyenko 0 siblings, 1 reply; 17+ messages in thread From: Maupin, Chase @ 2014-02-06 12:45 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org >-----Original Message----- >From: Dmytriyenko, Denys >Sent: Wednesday, February 05, 2014 7:00 PM >To: Maupin, Chase >Cc: meta-arago@arago-project.org >Subject: Re: [meta-arago] [PATCH 4/6] arago-base-tisdk-image: add >keystone support > >On Wed, Feb 05, 2014 at 02:04:04PM -0600, Chase Maupin wrote: >> * Add support to this image for keystone devices > >And the server image doesn't use arago-base-tisdk-image directly. But the arago-core-tisdk-image does right? So I still need this support added. > >So, I'll push the first 3 patches from the series. > > >> 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 >> >> _______________________________________________ >> meta-arago mailing list >> meta-arago@arago-project.org >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 4/6] arago-base-tisdk-image: add keystone support 2014-02-06 12:45 ` Maupin, Chase @ 2014-02-06 15:18 ` Denys Dmytriyenko 2014-02-06 15:24 ` Maupin, Chase 0 siblings, 1 reply; 17+ messages in thread From: Denys Dmytriyenko @ 2014-02-06 15:18 UTC (permalink / raw) To: Maupin, Chase; +Cc: meta-arago@arago-project.org On Thu, Feb 06, 2014 at 07:45:59AM -0500, Maupin, Chase wrote: > >-----Original Message----- > >From: Dmytriyenko, Denys > >Sent: Wednesday, February 05, 2014 7:00 PM > >To: Maupin, Chase > >Cc: meta-arago@arago-project.org > >Subject: Re: [meta-arago] [PATCH 4/6] arago-base-tisdk-image: add > >keystone support > > > >On Wed, Feb 05, 2014 at 02:04:04PM -0600, Chase Maupin wrote: > >> * Add support to this image for keystone devices > > > >And the server image doesn't use arago-base-tisdk-image directly. > > But the arago-core-tisdk-image does right? So I still need this support added. But, arago-core-tisdk-image uses server-rootfs image for keystone, so it still skips this... > >So, I'll push the first 3 patches from the series. > > > > > >> 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 > >> > >> _______________________________________________ > >> meta-arago mailing list > >> meta-arago@arago-project.org > >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 4/6] arago-base-tisdk-image: add keystone support 2014-02-06 15:18 ` Denys Dmytriyenko @ 2014-02-06 15:24 ` Maupin, Chase 2014-02-06 15:28 ` Denys Dmytriyenko 0 siblings, 1 reply; 17+ messages in thread From: Maupin, Chase @ 2014-02-06 15:24 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org It has both listed for TARGET_IMAGES >-----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 4/6] arago-base-tisdk-image: add >keystone support > >On Thu, Feb 06, 2014 at 07:45:59AM -0500, Maupin, Chase wrote: >> >-----Original Message----- >> >From: Dmytriyenko, Denys >> >Sent: Wednesday, February 05, 2014 7:00 PM >> >To: Maupin, Chase >> >Cc: meta-arago@arago-project.org >> >Subject: Re: [meta-arago] [PATCH 4/6] arago-base-tisdk-image: >add >> >keystone support >> > >> >On Wed, Feb 05, 2014 at 02:04:04PM -0600, Chase Maupin wrote: >> >> * Add support to this image for keystone devices >> > >> >And the server image doesn't use arago-base-tisdk-image >directly. >> >> But the arago-core-tisdk-image does right? So I still need this >support added. > >But, arago-core-tisdk-image uses server-rootfs image for keystone, >so it still >skips this... > > >> >So, I'll push the first 3 patches from the series. >> > >> > >> >> 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 >> >> >> >> _______________________________________________ >> >> meta-arago mailing list >> >> meta-arago@arago-project.org >> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago >> >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 4/6] arago-base-tisdk-image: add keystone support 2014-02-06 15:24 ` Maupin, Chase @ 2014-02-06 15:28 ` Denys Dmytriyenko 0 siblings, 0 replies; 17+ messages in thread From: Denys Dmytriyenko @ 2014-02-06 15:28 UTC (permalink / raw) To: Maupin, Chase; +Cc: meta-arago@arago-project.org On Thu, Feb 06, 2014 at 10:24:41AM -0500, Maupin, Chase wrote: > It has both listed for TARGET_IMAGES Indeed... Can you remind me what is the purpose? > >-----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 4/6] arago-base-tisdk-image: add > >keystone support > > > >On Thu, Feb 06, 2014 at 07:45:59AM -0500, Maupin, Chase wrote: > >> >-----Original Message----- > >> >From: Dmytriyenko, Denys > >> >Sent: Wednesday, February 05, 2014 7:00 PM > >> >To: Maupin, Chase > >> >Cc: meta-arago@arago-project.org > >> >Subject: Re: [meta-arago] [PATCH 4/6] arago-base-tisdk-image: > >add > >> >keystone support > >> > > >> >On Wed, Feb 05, 2014 at 02:04:04PM -0600, Chase Maupin wrote: > >> >> * Add support to this image for keystone devices > >> > > >> >And the server image doesn't use arago-base-tisdk-image > >directly. > >> > >> But the arago-core-tisdk-image does right? So I still need this > >support added. > > > >But, arago-core-tisdk-image uses server-rootfs image for keystone, > >so it still > >skips this... > > > > > >> >So, I'll push the first 3 patches from the series. > >> > > >> > > >> >> 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 > >> >> > >> >> _______________________________________________ > >> >> meta-arago mailing list > >> >> meta-arago@arago-project.org > >> >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > >> >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 5/6] arago-core-tisdk-image: add support for keystone devices 2014-02-05 20:04 [PATCH 1/6] tisdk-image: change to regex matching Chase Maupin ` (2 preceding siblings ...) 2014-02-05 20:04 ` [PATCH 4/6] arago-base-tisdk-image: add keystone support Chase Maupin @ 2014-02-05 20:04 ` Chase Maupin 2014-02-05 18:47 ` Denys Dmytriyenko 2014-02-05 20:04 ` [PATCH 6/6] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin 4 siblings, 1 reply; 17+ messages in thread From: Chase Maupin @ 2014-02-05 20:04 UTC (permalink / raw) To: meta-arago Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> --- .../recipes-core/images/arago-core-tisdk-image.bb | 1 + .../recipes-core/images/arago-core-tisdk-image.inc | 3 ++- 2 files changed, 3 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..e3de734 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,6 +21,7 @@ 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" -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH 5/6] arago-core-tisdk-image: add support for keystone devices 2014-02-05 20:04 ` [PATCH 5/6] arago-core-tisdk-image: add support for keystone devices Chase Maupin @ 2014-02-05 18:47 ` Denys Dmytriyenko 2014-02-05 18:58 ` Maupin, Chase 0 siblings, 1 reply; 17+ messages in thread From: Denys Dmytriyenko @ 2014-02-05 18:47 UTC (permalink / raw) To: Chase Maupin; +Cc: meta-arago On Wed, Feb 05, 2014 at 02:04:05PM -0600, Chase Maupin wrote: > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> > --- > .../recipes-core/images/arago-core-tisdk-image.bb | 1 + > .../recipes-core/images/arago-core-tisdk-image.inc | 3 ++- > 2 files changed, 3 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..e3de734 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,6 +21,7 @@ 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" Missing here: TARGET_IMAGES_keystone = "arago-base-tisdk-image tisdk-server-rootfs-image" > -- > 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] 17+ messages in thread
* Re: [PATCH 5/6] arago-core-tisdk-image: add support for keystone devices 2014-02-05 18:47 ` Denys Dmytriyenko @ 2014-02-05 18:58 ` Maupin, Chase 0 siblings, 0 replies; 17+ messages in thread From: Maupin, Chase @ 2014-02-05 18:58 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org >-----Original Message----- >From: Dmytriyenko, Denys >Sent: Wednesday, February 05, 2014 1:48 PM >To: Maupin, Chase >Cc: meta-arago@arago-project.org >Subject: Re: [meta-arago] [PATCH 5/6] arago-core-tisdk-image: add >support for keystone devices > >On Wed, Feb 05, 2014 at 02:04:05PM -0600, Chase Maupin wrote: >> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> >> --- >> .../recipes-core/images/arago-core-tisdk-image.bb | 1 + >> .../recipes-core/images/arago-core-tisdk-image.inc | 3 ++- >> 2 files changed, 3 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..e3de734 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,6 +21,7 @@ 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" > >Missing here: > >TARGET_IMAGES_keystone = "arago-base-tisdk-image tisdk-server- >rootfs-image" Good point. I forgot they had the server image. > > >> -- >> 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] 17+ messages in thread
* [PATCH 6/6] mmc-utils: add mmc-utils for working with eMMC devices 2014-02-05 20:04 [PATCH 1/6] tisdk-image: change to regex matching Chase Maupin ` (3 preceding siblings ...) 2014-02-05 20:04 ` [PATCH 5/6] arago-core-tisdk-image: add support for keystone devices Chase Maupin @ 2014-02-05 20:04 ` Chase Maupin 2014-02-05 18:43 ` Denys Dmytriyenko 4 siblings, 1 reply; 17+ messages in thread From: Chase Maupin @ 2014-02-05 20:04 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] 17+ messages in thread
* Re: [PATCH 6/6] mmc-utils: add mmc-utils for working with eMMC devices 2014-02-05 20:04 ` [PATCH 6/6] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin @ 2014-02-05 18:43 ` Denys Dmytriyenko 2014-02-05 18:58 ` Maupin, Chase 0 siblings, 1 reply; 17+ messages in thread From: Denys Dmytriyenko @ 2014-02-05 18:43 UTC (permalink / raw) To: Chase Maupin; +Cc: meta-arago On Wed, Feb 05, 2014 at 02:04:06PM -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 Should it be added to one of the packagegroups? > 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" PV? > +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] 17+ messages in thread
* Re: [PATCH 6/6] mmc-utils: add mmc-utils for working with eMMC devices 2014-02-05 18:43 ` Denys Dmytriyenko @ 2014-02-05 18:58 ` Maupin, Chase 0 siblings, 0 replies; 17+ messages in thread From: Maupin, Chase @ 2014-02-05 18:58 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org Yes. Haven't gotten there yet :) >-----Original Message----- >From: Dmytriyenko, Denys >Sent: Wednesday, February 05, 2014 1:43 PM >To: Maupin, Chase >Cc: meta-arago@arago-project.org >Subject: Re: [meta-arago] [PATCH 6/6] mmc-utils: add mmc-utils for >working with eMMC devices > >On Wed, Feb 05, 2014 at 02:04:06PM -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 > >Should it be added to one of the packagegroups? > > >> 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" > >PV? > > >> +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] 17+ messages in thread
end of thread, other threads:[~2014-02-06 15:28 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-02-05 20:04 [PATCH 1/6] tisdk-image: change to regex matching Chase Maupin 2014-02-05 20:04 ` [PATCH 2/6] arago-source-ipk: Add Keystone sourceipk settings Chase Maupin 2014-02-05 20:04 ` [PATCH 3/6] tisdk-amsdk-sdk-host: remove pinmux for keystone devices Chase Maupin 2014-02-06 0:04 ` Denys Dmytriyenko 2014-02-06 0:15 ` Nelson, Sam 2014-02-05 20:04 ` [PATCH 4/6] arago-base-tisdk-image: add keystone support Chase Maupin 2014-02-06 0:00 ` Denys Dmytriyenko 2014-02-06 12:45 ` Maupin, Chase 2014-02-06 15:18 ` Denys Dmytriyenko 2014-02-06 15:24 ` Maupin, Chase 2014-02-06 15:28 ` Denys Dmytriyenko 2014-02-05 20:04 ` [PATCH 5/6] arago-core-tisdk-image: add support for keystone devices Chase Maupin 2014-02-05 18:47 ` Denys Dmytriyenko 2014-02-05 18:58 ` Maupin, Chase 2014-02-05 20:04 ` [PATCH 6/6] mmc-utils: add mmc-utils for working with eMMC devices Chase Maupin 2014-02-05 18:43 ` Denys Dmytriyenko 2014-02-05 18:58 ` Maupin, Chase
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.