* [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
@ 2018-10-12 19:50 Khem Raj
2018-10-12 19:58 ` Denys Dmytriyenko
0 siblings, 1 reply; 10+ messages in thread
From: Khem Raj @ 2018-10-12 19:50 UTC (permalink / raw)
To: meta-ti
Fixes do_package_qa warnings
<FILE> is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
recipes-ti/beagleboard/beaglebone-getting-started.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-ti/beagleboard/beaglebone-getting-started.bb b/recipes-ti/beagleboard/beaglebone-getting-started.bb
index 603a01a7..6c61a4e9 100644
--- a/recipes-ti/beagleboard/beaglebone-getting-started.bb
+++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb
@@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
do_install() {
install -d ${D}${datadir}/${PN}
- cp -a ${S}/* ${D}${datadir}/${PN}
+ cp -R --no-dereference --preserve=mode,links ${S}/* ${D}${datadir}/${PN}
}
FILES_${PN} += "${datadir}/${PN}"
--
2.19.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 19:50 [PATCH] beaglebone-getting-started: Use cp options to not alter file mode Khem Raj
@ 2018-10-12 19:58 ` Denys Dmytriyenko
2018-10-12 20:01 ` Khem Raj
0 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2018-10-12 19:58 UTC (permalink / raw)
To: Khem Raj; +Cc: meta-ti
Are you still trying to do world builds? :)
Most of the places with this QA warning that are part of our builds were fixed
before, but there are some outdated recipes like this one which were left out.
On Fri, Oct 12, 2018 at 12:50:00PM -0700, Khem Raj wrote:
> Fixes do_package_qa warnings
> <FILE> is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> recipes-ti/beagleboard/beaglebone-getting-started.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes-ti/beagleboard/beaglebone-getting-started.bb b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> index 603a01a7..6c61a4e9 100644
> --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb
> +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> @@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
>
> do_install() {
> install -d ${D}${datadir}/${PN}
> - cp -a ${S}/* ${D}${datadir}/${PN}
> + cp -R --no-dereference --preserve=mode,links ${S}/* ${D}${datadir}/${PN}
> }
>
> FILES_${PN} += "${datadir}/${PN}"
> --
> 2.19.1
>
> --
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 19:58 ` Denys Dmytriyenko
@ 2018-10-12 20:01 ` Khem Raj
2018-10-12 20:31 ` Denys Dmytriyenko
0 siblings, 1 reply; 10+ messages in thread
From: Khem Raj @ 2018-10-12 20:01 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
>
> Are you still trying to do world builds? :)
>
yes. with the patches I send in this week meta-ti seems to behave in
multi-BSP setup
I will soon add it to bblayers.conf for Yoe distro and it will start
testing on meta-openembedded CI builds, atleast for not nosing other
BSPs, I dont have infra to do world build for all the machines
but if you were to pick Yoe distro and run with it for machines you
are interested in
that would be awesome.
See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
is welcome to run world builds using that and report problems.
> Most of the places with this QA warning that are part of our builds were fixed
> before, but there are some outdated recipes like this one which were left out.
>
>
> On Fri, Oct 12, 2018 at 12:50:00PM -0700, Khem Raj wrote:
> > Fixes do_package_qa warnings
> > <FILE> is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination
> >
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> > recipes-ti/beagleboard/beaglebone-getting-started.bb | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/recipes-ti/beagleboard/beaglebone-getting-started.bb b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > index 603a01a7..6c61a4e9 100644
> > --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > @@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
> >
> > do_install() {
> > install -d ${D}${datadir}/${PN}
> > - cp -a ${S}/* ${D}${datadir}/${PN}
> > + cp -R --no-dereference --preserve=mode,links ${S}/* ${D}${datadir}/${PN}
> > }
> >
> > FILES_${PN} += "${datadir}/${PN}"
> > --
> > 2.19.1
> >
> > --
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 20:01 ` Khem Raj
@ 2018-10-12 20:31 ` Denys Dmytriyenko
2018-10-12 20:34 ` Khem Raj
0 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2018-10-12 20:31 UTC (permalink / raw)
To: Khem Raj; +Cc: meta-ti
On Fri, Oct 12, 2018 at 01:01:41PM -0700, Khem Raj wrote:
> On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
> >
> > Are you still trying to do world builds? :)
> >
>
> yes. with the patches I send in this week meta-ti seems to behave in
> multi-BSP setup
> I will soon add it to bblayers.conf for Yoe distro and it will start
> testing on meta-openembedded CI builds, atleast for not nosing other
> BSPs, I dont have infra to do world build for all the machines
>
> but if you were to pick Yoe distro and run with it for machines you
> are interested in
> that would be awesome.
>
> See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
> is welcome to run world builds using that and report problems.
I can probably add it to my CI loop as well - I already do extensive builds
and tests on Arago, Poky and distroless.
> > Most of the places with this QA warning that are part of our builds were fixed
> > before, but there are some outdated recipes like this one which were left out.
> >
> >
> > On Fri, Oct 12, 2018 at 12:50:00PM -0700, Khem Raj wrote:
> > > Fixes do_package_qa warnings
> > > <FILE> is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination
> > >
> > > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > > ---
> > > recipes-ti/beagleboard/beaglebone-getting-started.bb | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/recipes-ti/beagleboard/beaglebone-getting-started.bb b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > index 603a01a7..6c61a4e9 100644
> > > --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > @@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
> > >
> > > do_install() {
> > > install -d ${D}${datadir}/${PN}
> > > - cp -a ${S}/* ${D}${datadir}/${PN}
> > > + cp -R --no-dereference --preserve=mode,links ${S}/* ${D}${datadir}/${PN}
> > > }
> > >
> > > FILES_${PN} += "${datadir}/${PN}"
> > > --
> > > 2.19.1
> > >
> > > --
> > > _______________________________________________
> > > meta-ti mailing list
> > > meta-ti@yoctoproject.org
> > > https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 20:31 ` Denys Dmytriyenko
@ 2018-10-12 20:34 ` Khem Raj
2018-10-12 20:37 ` Denys Dmytriyenko
0 siblings, 1 reply; 10+ messages in thread
From: Khem Raj @ 2018-10-12 20:34 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
On Fri, Oct 12, 2018 at 1:31 PM Denys Dmytriyenko <denys@ti.com> wrote:
>
> On Fri, Oct 12, 2018 at 01:01:41PM -0700, Khem Raj wrote:
> > On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > >
> > > Are you still trying to do world builds? :)
> > >
> >
> > yes. with the patches I send in this week meta-ti seems to behave in
> > multi-BSP setup
> > I will soon add it to bblayers.conf for Yoe distro and it will start
> > testing on meta-openembedded CI builds, atleast for not nosing other
> > BSPs, I dont have infra to do world build for all the machines
> >
> > but if you were to pick Yoe distro and run with it for machines you
> > are interested in
> > that would be awesome.
> >
> > See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
> > is welcome to run world builds using that and report problems.
>
> I can probably add it to my CI loop as well - I already do extensive builds
> and tests on Arago, Poky and distroless.
Cool thanks. Although you wont need all of above
after this :)
>
>
> > > Most of the places with this QA warning that are part of our builds were fixed
> > > before, but there are some outdated recipes like this one which were left out.
> > >
> > >
> > > On Fri, Oct 12, 2018 at 12:50:00PM -0700, Khem Raj wrote:
> > > > Fixes do_package_qa warnings
> > > > <FILE> is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination
> > > >
> > > > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > > > ---
> > > > recipes-ti/beagleboard/beaglebone-getting-started.bb | 2 +-
> > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git a/recipes-ti/beagleboard/beaglebone-getting-started.bb b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > > index 603a01a7..6c61a4e9 100644
> > > > --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > > +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > > @@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
> > > >
> > > > do_install() {
> > > > install -d ${D}${datadir}/${PN}
> > > > - cp -a ${S}/* ${D}${datadir}/${PN}
> > > > + cp -R --no-dereference --preserve=mode,links ${S}/* ${D}${datadir}/${PN}
> > > > }
> > > >
> > > > FILES_${PN} += "${datadir}/${PN}"
> > > > --
> > > > 2.19.1
> > > >
> > > > --
> > > > _______________________________________________
> > > > meta-ti mailing list
> > > > meta-ti@yoctoproject.org
> > > > https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 20:34 ` Khem Raj
@ 2018-10-12 20:37 ` Denys Dmytriyenko
2018-10-12 20:49 ` Khem Raj
0 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2018-10-12 20:37 UTC (permalink / raw)
To: Khem Raj; +Cc: meta-ti
On Fri, Oct 12, 2018 at 01:34:13PM -0700, Khem Raj wrote:
> On Fri, Oct 12, 2018 at 1:31 PM Denys Dmytriyenko <denys@ti.com> wrote:
> >
> > On Fri, Oct 12, 2018 at 01:01:41PM -0700, Khem Raj wrote:
> > > On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > >
> > > > Are you still trying to do world builds? :)
> > > >
> > >
> > > yes. with the patches I send in this week meta-ti seems to behave in
> > > multi-BSP setup
> > > I will soon add it to bblayers.conf for Yoe distro and it will start
> > > testing on meta-openembedded CI builds, atleast for not nosing other
> > > BSPs, I dont have infra to do world build for all the machines
> > >
> > > but if you were to pick Yoe distro and run with it for machines you
> > > are interested in
> > > that would be awesome.
> > >
> > > See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
> > > is welcome to run world builds using that and report problems.
> >
> > I can probably add it to my CI loop as well - I already do extensive builds
> > and tests on Arago, Poky and distroless.
>
> Cool thanks. Although you wont need all of above
> after this :)
Meaning?
> > > > Most of the places with this QA warning that are part of our builds were fixed
> > > > before, but there are some outdated recipes like this one which were left out.
> > > >
> > > >
> > > > On Fri, Oct 12, 2018 at 12:50:00PM -0700, Khem Raj wrote:
> > > > > Fixes do_package_qa warnings
> > > > > <FILE> is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination
> > > > >
> > > > > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > > > > ---
> > > > > recipes-ti/beagleboard/beaglebone-getting-started.bb | 2 +-
> > > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > > >
> > > > > diff --git a/recipes-ti/beagleboard/beaglebone-getting-started.bb b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > > > index 603a01a7..6c61a4e9 100644
> > > > > --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > > > +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb
> > > > > @@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
> > > > >
> > > > > do_install() {
> > > > > install -d ${D}${datadir}/${PN}
> > > > > - cp -a ${S}/* ${D}${datadir}/${PN}
> > > > > + cp -R --no-dereference --preserve=mode,links ${S}/* ${D}${datadir}/${PN}
> > > > > }
> > > > >
> > > > > FILES_${PN} += "${datadir}/${PN}"
> > > > > --
> > > > > 2.19.1
> > > > >
> > > > > --
> > > > > _______________________________________________
> > > > > meta-ti mailing list
> > > > > meta-ti@yoctoproject.org
> > > > > https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 20:37 ` Denys Dmytriyenko
@ 2018-10-12 20:49 ` Khem Raj
2018-10-12 21:01 ` Denys Dmytriyenko
0 siblings, 1 reply; 10+ messages in thread
From: Khem Raj @ 2018-10-12 20:49 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
On Fri, Oct 12, 2018 at 1:37 PM Denys Dmytriyenko <denys@ti.com> wrote:
>
> On Fri, Oct 12, 2018 at 01:34:13PM -0700, Khem Raj wrote:
> > On Fri, Oct 12, 2018 at 1:31 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > >
> > > On Fri, Oct 12, 2018 at 01:01:41PM -0700, Khem Raj wrote:
> > > > On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > > >
> > > > > Are you still trying to do world builds? :)
> > > > >
> > > >
> > > > yes. with the patches I send in this week meta-ti seems to behave in
> > > > multi-BSP setup
> > > > I will soon add it to bblayers.conf for Yoe distro and it will start
> > > > testing on meta-openembedded CI builds, atleast for not nosing other
> > > > BSPs, I dont have infra to do world build for all the machines
> > > >
> > > > but if you were to pick Yoe distro and run with it for machines you
> > > > are interested in
> > > > that would be awesome.
> > > >
> > > > See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
> > > > is welcome to run world builds using that and report problems.
> > >
> > > I can probably add it to my CI loop as well - I already do extensive builds
> > > and tests on Arago, Poky and distroless.
> >
> > Cool thanks. Although you wont need all of above
> > after this :)
>
> Meaning?
Yoe is a superset
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 20:49 ` Khem Raj
@ 2018-10-12 21:01 ` Denys Dmytriyenko
2018-10-12 21:14 ` Khem Raj
0 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2018-10-12 21:01 UTC (permalink / raw)
To: Khem Raj; +Cc: meta-ti
On Fri, Oct 12, 2018 at 01:49:05PM -0700, Khem Raj wrote:
> On Fri, Oct 12, 2018 at 1:37 PM Denys Dmytriyenko <denys@ti.com> wrote:
> >
> > On Fri, Oct 12, 2018 at 01:34:13PM -0700, Khem Raj wrote:
> > > On Fri, Oct 12, 2018 at 1:31 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > >
> > > > On Fri, Oct 12, 2018 at 01:01:41PM -0700, Khem Raj wrote:
> > > > > On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > > > >
> > > > > > Are you still trying to do world builds? :)
> > > > > >
> > > > >
> > > > > yes. with the patches I send in this week meta-ti seems to behave in
> > > > > multi-BSP setup
> > > > > I will soon add it to bblayers.conf for Yoe distro and it will start
> > > > > testing on meta-openembedded CI builds, atleast for not nosing other
> > > > > BSPs, I dont have infra to do world build for all the machines
> > > > >
> > > > > but if you were to pick Yoe distro and run with it for machines you
> > > > > are interested in
> > > > > that would be awesome.
> > > > >
> > > > > See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
> > > > > is welcome to run world builds using that and report problems.
> > > >
> > > > I can probably add it to my CI loop as well - I already do extensive builds
> > > > and tests on Arago, Poky and distroless.
> > >
> > > Cool thanks. Although you wont need all of above
> > > after this :)
> >
> > Meaning?
>
> Yoe is a superset
Uhm, hardly. Do you mean just BSP pieces?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 21:01 ` Denys Dmytriyenko
@ 2018-10-12 21:14 ` Khem Raj
2018-10-12 21:20 ` Denys Dmytriyenko
0 siblings, 1 reply; 10+ messages in thread
From: Khem Raj @ 2018-10-12 21:14 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
On Fri, Oct 12, 2018 at 2:01 PM Denys Dmytriyenko <denys@ti.com> wrote:
>
> On Fri, Oct 12, 2018 at 01:49:05PM -0700, Khem Raj wrote:
> > On Fri, Oct 12, 2018 at 1:37 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > >
> > > On Fri, Oct 12, 2018 at 01:34:13PM -0700, Khem Raj wrote:
> > > > On Fri, Oct 12, 2018 at 1:31 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > > >
> > > > > On Fri, Oct 12, 2018 at 01:01:41PM -0700, Khem Raj wrote:
> > > > > > On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > > > > >
> > > > > > > Are you still trying to do world builds? :)
> > > > > > >
> > > > > >
> > > > > > yes. with the patches I send in this week meta-ti seems to behave in
> > > > > > multi-BSP setup
> > > > > > I will soon add it to bblayers.conf for Yoe distro and it will start
> > > > > > testing on meta-openembedded CI builds, atleast for not nosing other
> > > > > > BSPs, I dont have infra to do world build for all the machines
> > > > > >
> > > > > > but if you were to pick Yoe distro and run with it for machines you
> > > > > > are interested in
> > > > > > that would be awesome.
> > > > > >
> > > > > > See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
> > > > > > is welcome to run world builds using that and report problems.
> > > > >
> > > > > I can probably add it to my CI loop as well - I already do extensive builds
> > > > > and tests on Arago, Poky and distroless.
> > > >
> > > > Cool thanks. Although you wont need all of above
> > > > after this :)
> > >
> > > Meaning?
> >
> > Yoe is a superset
>
> Uhm, hardly. Do you mean just BSP pieces?
not only that but we have added lot
of common layers too
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] beaglebone-getting-started: Use cp options to not alter file mode
2018-10-12 21:14 ` Khem Raj
@ 2018-10-12 21:20 ` Denys Dmytriyenko
0 siblings, 0 replies; 10+ messages in thread
From: Denys Dmytriyenko @ 2018-10-12 21:20 UTC (permalink / raw)
To: Khem Raj; +Cc: meta-ti
On Fri, Oct 12, 2018 at 02:14:23PM -0700, Khem Raj wrote:
> On Fri, Oct 12, 2018 at 2:01 PM Denys Dmytriyenko <denys@ti.com> wrote:
> >
> > On Fri, Oct 12, 2018 at 01:49:05PM -0700, Khem Raj wrote:
> > > On Fri, Oct 12, 2018 at 1:37 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > >
> > > > On Fri, Oct 12, 2018 at 01:34:13PM -0700, Khem Raj wrote:
> > > > > On Fri, Oct 12, 2018 at 1:31 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > > > >
> > > > > > On Fri, Oct 12, 2018 at 01:01:41PM -0700, Khem Raj wrote:
> > > > > > > On Fri, Oct 12, 2018 at 12:58 PM Denys Dmytriyenko <denys@ti.com> wrote:
> > > > > > > >
> > > > > > > > Are you still trying to do world builds? :)
> > > > > > > >
> > > > > > >
> > > > > > > yes. with the patches I send in this week meta-ti seems to behave in
> > > > > > > multi-BSP setup
> > > > > > > I will soon add it to bblayers.conf for Yoe distro and it will start
> > > > > > > testing on meta-openembedded CI builds, atleast for not nosing other
> > > > > > > BSPs, I dont have infra to do world build for all the machines
> > > > > > >
> > > > > > > but if you were to pick Yoe distro and run with it for machines you
> > > > > > > are interested in
> > > > > > > that would be awesome.
> > > > > > >
> > > > > > > See. https://github.com/YoeDistro/yoe-distro, everyone having interesting boards
> > > > > > > is welcome to run world builds using that and report problems.
> > > > > >
> > > > > > I can probably add it to my CI loop as well - I already do extensive builds
> > > > > > and tests on Arago, Poky and distroless.
> > > > >
> > > > > Cool thanks. Although you wont need all of above
> > > > > after this :)
> > > >
> > > > Meaning?
> > >
> > > Yoe is a superset
> >
> > Uhm, hardly. Do you mean just BSP pieces?
>
> not only that but we have added lot
> of common layers too
Still, it may only replace basic BSP testing, not a whole Distro with custom
apps, etc...
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2018-10-12 21:20 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-12 19:50 [PATCH] beaglebone-getting-started: Use cp options to not alter file mode Khem Raj
2018-10-12 19:58 ` Denys Dmytriyenko
2018-10-12 20:01 ` Khem Raj
2018-10-12 20:31 ` Denys Dmytriyenko
2018-10-12 20:34 ` Khem Raj
2018-10-12 20:37 ` Denys Dmytriyenko
2018-10-12 20:49 ` Khem Raj
2018-10-12 21:01 ` Denys Dmytriyenko
2018-10-12 21:14 ` Khem Raj
2018-10-12 21:20 ` Denys Dmytriyenko
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.