* [PATCH 1/3] u-boot-ti: Drop using COREBASE
@ 2019-09-29 15:43 Khem Raj
2019-09-29 15:43 ` [PATCH 2/3] recipes-ti: Use COMMON_LICENSE_DIR instead of COREBASE Khem Raj
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Khem Raj @ 2019-09-29 15:43 UTC (permalink / raw)
To: meta-ti
COREBASE is hardcoding the path and moreover its obsolete the better way
is to use relative path which is automatically searched in BBPATH by
bitbake
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
recipes-bsp/u-boot/u-boot-ti.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-bsp/u-boot/u-boot-ti.inc b/recipes-bsp/u-boot/u-boot-ti.inc
index f1187e64..f7434712 100644
--- a/recipes-bsp/u-boot/u-boot-ti.inc
+++ b/recipes-bsp/u-boot/u-boot-ti.inc
@@ -13,7 +13,7 @@ UBOOT_LOCALVERSION = "-g${@get_git_revision('${S}').__str__()[:10]}"
UBOOT_SUFFIX ?= "img"
SPL_BINARY ?= "MLO"
-require ${COREBASE}/meta/recipes-bsp/u-boot/u-boot.inc
+require recipes-bsp/u-boot/u-boot.inc
FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot:"
--
2.23.0
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH 2/3] recipes-ti: Use COMMON_LICENSE_DIR instead of COREBASE 2019-09-29 15:43 [PATCH 1/3] u-boot-ti: Drop using COREBASE Khem Raj @ 2019-09-29 15:43 ` Khem Raj 2019-09-29 15:43 ` [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version Khem Raj 2019-09-29 16:40 ` [PATCH 1/3] u-boot-ti: Drop using COREBASE Denys Dmytriyenko 2 siblings, 0 replies; 11+ messages in thread From: Khem Raj @ 2019-09-29 15:43 UTC (permalink / raw) To: meta-ti Fixes beaglebone-capes-1.0-r4 do_populate_lic: ${COREBASE}/LICENSE is not a valid license file, please use '${COMMON_LICENSE_DIR}/MIT' for a MIT License file in LIC_FILES_CHKSUM. This will become an error in the future Signed-off-by: Khem Raj <raj.khem@gmail.com> --- recipes-ti/beagleboard/beaglebone-capes.bb | 2 +- recipes-ti/beagleboard/gadget-init.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-ti/beagleboard/beaglebone-capes.bb b/recipes-ti/beagleboard/beaglebone-capes.bb index 30b985b5..569a3e5a 100644 --- a/recipes-ti/beagleboard/beaglebone-capes.bb +++ b/recipes-ti/beagleboard/beaglebone-capes.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Userspace setup for beaglebone capes" LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=b97a012949927931feb7793eee5ed924 " +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" PR = "r4" diff --git a/recipes-ti/beagleboard/gadget-init.bb b/recipes-ti/beagleboard/gadget-init.bb index 8b899c51..b546efbb 100644 --- a/recipes-ti/beagleboard/gadget-init.bb +++ b/recipes-ti/beagleboard/gadget-init.bb @@ -3,7 +3,7 @@ DESCRIPTION = "Units to initialize usb gadgets" PR = "r19" LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" COMPATIBLE_MACHINE = "(ti33x)" PACKAGE_ARCH = "${MACHINE_ARCH}" -- 2.23.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version 2019-09-29 15:43 [PATCH 1/3] u-boot-ti: Drop using COREBASE Khem Raj 2019-09-29 15:43 ` [PATCH 2/3] recipes-ti: Use COMMON_LICENSE_DIR instead of COREBASE Khem Raj @ 2019-09-29 15:43 ` Khem Raj 2019-09-30 18:32 ` Denys Dmytriyenko 2019-09-29 16:40 ` [PATCH 1/3] u-boot-ti: Drop using COREBASE Denys Dmytriyenko 2 siblings, 1 reply; 11+ messages in thread From: Khem Raj @ 2019-09-29 15:43 UTC (permalink / raw) To: meta-ti This is as per https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt 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 6c61a4e9..c86e3518 100644 --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb @@ -4,7 +4,7 @@ PR = "r21" inherit allarch -LICENSE = "GPLv2+ & MIT & PD & others" +LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD & others" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=603591dea023c3c75b48e07cb47ce639" SRCREV = "6c548a307c948b28a99d48fd17d9790b56182196" -- 2.23.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version 2019-09-29 15:43 ` [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version Khem Raj @ 2019-09-30 18:32 ` Denys Dmytriyenko 2019-09-30 20:40 ` Khem Raj 0 siblings, 1 reply; 11+ messages in thread From: Denys Dmytriyenko @ 2019-09-30 18:32 UTC (permalink / raw) To: Khem Raj; +Cc: meta-ti On Sun, Sep 29, 2019 at 08:43:35AM -0700, Khem Raj wrote: > This is as per > https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt You are looking at the latest LICENSE file, while the recipe hasn't updated its SRCREV since early 2012, back when beagleboard.org was still active in OE. Specifically, GPLv3+ was added in 2013: https://github.com/jadonk/beaglebone-getting-started/commits/master/LICENSE.txt We don't use this package, but I kept it in case someone still needs it. I did put a README with a note in that directory: http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-ti/README Probably, this can be updated to the latest, as part of fixing the LICENSE? :) Denys > 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 6c61a4e9..c86e3518 100644 > --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb > +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb > @@ -4,7 +4,7 @@ PR = "r21" > > inherit allarch > > -LICENSE = "GPLv2+ & MIT & PD & others" > +LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD & others" > LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=603591dea023c3c75b48e07cb47ce639" > > SRCREV = "6c548a307c948b28a99d48fd17d9790b56182196" > -- > 2.23.0 > > -- > _______________________________________________ > meta-ti mailing list > meta-ti@yoctoproject.org > https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version 2019-09-30 18:32 ` Denys Dmytriyenko @ 2019-09-30 20:40 ` Khem Raj 2019-09-30 20:43 ` Denys Dmytriyenko 0 siblings, 1 reply; 11+ messages in thread From: Khem Raj @ 2019-09-30 20:40 UTC (permalink / raw) To: Denys Dmytriyenko; +Cc: meta-ti On 9/30/19 11:32 AM, Denys Dmytriyenko wrote: > On Sun, Sep 29, 2019 at 08:43:35AM -0700, Khem Raj wrote: >> This is as per >> https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt > > You are looking at the latest LICENSE file, while the recipe hasn't updated > its SRCREV since early 2012, back when beagleboard.org was still active in OE. > Specifically, GPLv3+ was added in 2013: > https://github.com/jadonk/beaglebone-getting-started/commits/master/LICENSE.txt > > We don't use this package, but I kept it in case someone still needs it. I did > put a README with a note in that directory: > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-ti/README > > Probably, this can be updated to the latest, as part of fixing the LICENSE? :) > The README should be specific about which recipes are not maintained, it has a general statement which gives a scare, if the recipe is not maintained then this should be removed or atleast blacklisted if you still want to keep it around. I was trying to help clearing up license warnings, other than that I dont have any interest in this recipe. I can send a patch to blacklist it if thats fine with you. > Denys > > >> 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 6c61a4e9..c86e3518 100644 >> --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb >> +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb >> @@ -4,7 +4,7 @@ PR = "r21" >> >> inherit allarch >> >> -LICENSE = "GPLv2+ & MIT & PD & others" >> +LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD & others" >> LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=603591dea023c3c75b48e07cb47ce639" >> >> SRCREV = "6c548a307c948b28a99d48fd17d9790b56182196" >> -- >> 2.23.0 >> >> -- >> _______________________________________________ >> meta-ti mailing list >> meta-ti@yoctoproject.org >> https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version 2019-09-30 20:40 ` Khem Raj @ 2019-09-30 20:43 ` Denys Dmytriyenko 2019-10-01 0:00 ` Denys Dmytriyenko 0 siblings, 1 reply; 11+ messages in thread From: Denys Dmytriyenko @ 2019-09-30 20:43 UTC (permalink / raw) To: Khem Raj; +Cc: meta-ti On Mon, Sep 30, 2019 at 01:40:23PM -0700, Khem Raj wrote: > > > On 9/30/19 11:32 AM, Denys Dmytriyenko wrote: > > On Sun, Sep 29, 2019 at 08:43:35AM -0700, Khem Raj wrote: > >> This is as per > >> https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt > > > > You are looking at the latest LICENSE file, while the recipe hasn't updated > > its SRCREV since early 2012, back when beagleboard.org was still active in OE. > > Specifically, GPLv3+ was added in 2013: > > https://github.com/jadonk/beaglebone-getting-started/commits/master/LICENSE.txt > > > > We don't use this package, but I kept it in case someone still needs it. I did > > put a README with a note in that directory: > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-ti/README > > > > Probably, this can be updated to the latest, as part of fixing the LICENSE? :) > > > > The README should be specific about which recipes are not maintained, it > has a general statement which gives a scare, if the recipe is not > maintained then this should be removed or atleast blacklisted if you > still want to keep it around. > > I was trying to help clearing up license warnings, other than that I > dont have any interest in this recipe. > > I can send a patch to blacklist it if thats fine with you. Fair enough, let me take a look at it myself. > >> 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 6c61a4e9..c86e3518 100644 > >> --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb > >> +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb > >> @@ -4,7 +4,7 @@ PR = "r21" > >> > >> inherit allarch > >> > >> -LICENSE = "GPLv2+ & MIT & PD & others" > >> +LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD & others" > >> LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=603591dea023c3c75b48e07cb47ce639" > >> > >> SRCREV = "6c548a307c948b28a99d48fd17d9790b56182196" > >> -- > >> 2.23.0 > >> > >> -- > >> _______________________________________________ > >> meta-ti mailing list > >> meta-ti@yoctoproject.org > >> https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version 2019-09-30 20:43 ` Denys Dmytriyenko @ 2019-10-01 0:00 ` Denys Dmytriyenko 2019-10-01 0:07 ` Khem Raj 0 siblings, 1 reply; 11+ messages in thread From: Denys Dmytriyenko @ 2019-10-01 0:00 UTC (permalink / raw) To: Khem Raj; +Cc: meta-ti On Mon, Sep 30, 2019 at 04:43:56PM -0400, Denys Dmytriyenko wrote: > On Mon, Sep 30, 2019 at 01:40:23PM -0700, Khem Raj wrote: > > > > > > On 9/30/19 11:32 AM, Denys Dmytriyenko wrote: > > > On Sun, Sep 29, 2019 at 08:43:35AM -0700, Khem Raj wrote: > > >> This is as per > > >> https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt > > > > > > You are looking at the latest LICENSE file, while the recipe hasn't updated > > > its SRCREV since early 2012, back when beagleboard.org was still active in OE. > > > Specifically, GPLv3+ was added in 2013: > > > https://github.com/jadonk/beaglebone-getting-started/commits/master/LICENSE.txt > > > > > > We don't use this package, but I kept it in case someone still needs it. I did > > > put a README with a note in that directory: > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-ti/README > > > > > > Probably, this can be updated to the latest, as part of fixing the LICENSE? :) > > > > > > > The README should be specific about which recipes are not maintained, it > > has a general statement which gives a scare, if the recipe is not > > maintained then this should be removed or atleast blacklisted if you > > still want to keep it around. > > > > I was trying to help clearing up license warnings, other than that I BTW, the only warning I see for this recipe, is that "others" license is unknown. Your patch was not addressing it - should I just remove "others" from the list, as this was back from the days when the list wasn't checked so strictly? > > dont have any interest in this recipe. > > > > I can send a patch to blacklist it if thats fine with you. > > Fair enough, let me take a look at it myself. > > > > >> 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 6c61a4e9..c86e3518 100644 > > >> --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb > > >> +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb > > >> @@ -4,7 +4,7 @@ PR = "r21" > > >> > > >> inherit allarch > > >> > > >> -LICENSE = "GPLv2+ & MIT & PD & others" > > >> +LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD & others" > > >> LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=603591dea023c3c75b48e07cb47ce639" > > >> > > >> SRCREV = "6c548a307c948b28a99d48fd17d9790b56182196" > > >> -- > > >> 2.23.0 > > >> > > >> -- > > >> _______________________________________________ > > >> meta-ti mailing list > > >> meta-ti@yoctoproject.org > > >> https://lists.yoctoproject.org/listinfo/meta-ti > -- > _______________________________________________ > meta-ti mailing list > meta-ti@yoctoproject.org > https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version 2019-10-01 0:00 ` Denys Dmytriyenko @ 2019-10-01 0:07 ` Khem Raj 2019-10-01 0:22 ` Denys Dmytriyenko 0 siblings, 1 reply; 11+ messages in thread From: Khem Raj @ 2019-10-01 0:07 UTC (permalink / raw) To: Denys Dmytriyenko; +Cc: meta-ti On Mon, Sep 30, 2019 at 5:00 PM Denys Dmytriyenko <denys@ti.com> wrote: > > On Mon, Sep 30, 2019 at 04:43:56PM -0400, Denys Dmytriyenko wrote: > > On Mon, Sep 30, 2019 at 01:40:23PM -0700, Khem Raj wrote: > > > > > > > > > On 9/30/19 11:32 AM, Denys Dmytriyenko wrote: > > > > On Sun, Sep 29, 2019 at 08:43:35AM -0700, Khem Raj wrote: > > > >> This is as per > > > >> https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt > > > > > > > > You are looking at the latest LICENSE file, while the recipe hasn't updated > > > > its SRCREV since early 2012, back when beagleboard.org was still active in OE. > > > > Specifically, GPLv3+ was added in 2013: > > > > https://github.com/jadonk/beaglebone-getting-started/commits/master/LICENSE.txt > > > > > > > > We don't use this package, but I kept it in case someone still needs it. I did > > > > put a README with a note in that directory: > > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-ti/README > > > > > > > > Probably, this can be updated to the latest, as part of fixing the LICENSE? :) > > > > > > > > > > The README should be specific about which recipes are not maintained, it > > > has a general statement which gives a scare, if the recipe is not > > > maintained then this should be removed or atleast blacklisted if you > > > still want to keep it around. > > > > > > I was trying to help clearing up license warnings, other than that I > > BTW, the only warning I see for this recipe, is that "others" license is > unknown. Your patch was not addressing it - should I just remove "others" > from the list, as this was back from the days when the list wasn't checked > so strictly? > Yes, go ahead. > > > > dont have any interest in this recipe. > > > > > > I can send a patch to blacklist it if thats fine with you. > > > > Fair enough, let me take a look at it myself. > > > > > > > >> 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 6c61a4e9..c86e3518 100644 > > > >> --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb > > > >> +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb > > > >> @@ -4,7 +4,7 @@ PR = "r21" > > > >> > > > >> inherit allarch > > > >> > > > >> -LICENSE = "GPLv2+ & MIT & PD & others" > > > >> +LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD & others" > > > >> LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=603591dea023c3c75b48e07cb47ce639" > > > >> > > > >> SRCREV = "6c548a307c948b28a99d48fd17d9790b56182196" > > > >> -- > > > >> 2.23.0 > > > >> > > > >> -- > > > >> _______________________________________________ > > > >> meta-ti mailing list > > > >> meta-ti@yoctoproject.org > > > >> https://lists.yoctoproject.org/listinfo/meta-ti > > -- > > _______________________________________________ > > meta-ti mailing list > > meta-ti@yoctoproject.org > > https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version 2019-10-01 0:07 ` Khem Raj @ 2019-10-01 0:22 ` Denys Dmytriyenko 0 siblings, 0 replies; 11+ messages in thread From: Denys Dmytriyenko @ 2019-10-01 0:22 UTC (permalink / raw) To: Khem Raj; +Cc: meta-ti On Mon, Sep 30, 2019 at 05:07:01PM -0700, Khem Raj wrote: > On Mon, Sep 30, 2019 at 5:00 PM Denys Dmytriyenko <denys@ti.com> wrote: > > > > On Mon, Sep 30, 2019 at 04:43:56PM -0400, Denys Dmytriyenko wrote: > > > On Mon, Sep 30, 2019 at 01:40:23PM -0700, Khem Raj wrote: > > > > > > > > > > > > On 9/30/19 11:32 AM, Denys Dmytriyenko wrote: > > > > > On Sun, Sep 29, 2019 at 08:43:35AM -0700, Khem Raj wrote: > > > > >> This is as per > > > > >> https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt > > > > > > > > > > You are looking at the latest LICENSE file, while the recipe hasn't updated > > > > > its SRCREV since early 2012, back when beagleboard.org was still active in OE. > > > > > Specifically, GPLv3+ was added in 2013: > > > > > https://github.com/jadonk/beaglebone-getting-started/commits/master/LICENSE.txt > > > > > > > > > > We don't use this package, but I kept it in case someone still needs it. I did > > > > > put a README with a note in that directory: > > > > > http://git.yoctoproject.org/cgit/cgit.cgi/meta-ti/tree/recipes-ti/README > > > > > > > > > > Probably, this can be updated to the latest, as part of fixing the LICENSE? :) > > > > > > > > > > > > > The README should be specific about which recipes are not maintained, it > > > > has a general statement which gives a scare, if the recipe is not > > > > maintained then this should be removed or atleast blacklisted if you > > > > still want to keep it around. > > > > > > > > I was trying to help clearing up license warnings, other than that I > > > > BTW, the only warning I see for this recipe, is that "others" license is > > unknown. Your patch was not addressing it - should I just remove "others" > > from the list, as this was back from the days when the list wasn't checked > > so strictly? > > > > Yes, go ahead. https://lists.yoctoproject.org/pipermail/meta-ti/2019-September/012292.html > > > > dont have any interest in this recipe. > > > > > > > > I can send a patch to blacklist it if thats fine with you. > > > > > > Fair enough, let me take a look at it myself. > > > > > > > > > > >> 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 6c61a4e9..c86e3518 100644 > > > > >> --- a/recipes-ti/beagleboard/beaglebone-getting-started.bb > > > > >> +++ b/recipes-ti/beagleboard/beaglebone-getting-started.bb > > > > >> @@ -4,7 +4,7 @@ PR = "r21" > > > > >> > > > > >> inherit allarch > > > > >> > > > > >> -LICENSE = "GPLv2+ & MIT & PD & others" > > > > >> +LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD & others" > > > > >> LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=603591dea023c3c75b48e07cb47ce639" > > > > >> > > > > >> SRCREV = "6c548a307c948b28a99d48fd17d9790b56182196" > > > > >> -- > > > > >> 2.23.0 > > > > >> > > > > >> -- > > > > >> _______________________________________________ > > > > >> meta-ti mailing list > > > > >> meta-ti@yoctoproject.org > > > > >> https://lists.yoctoproject.org/listinfo/meta-ti > > > -- > > > _______________________________________________ > > > meta-ti mailing list > > > meta-ti@yoctoproject.org > > > https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] u-boot-ti: Drop using COREBASE 2019-09-29 15:43 [PATCH 1/3] u-boot-ti: Drop using COREBASE Khem Raj 2019-09-29 15:43 ` [PATCH 2/3] recipes-ti: Use COMMON_LICENSE_DIR instead of COREBASE Khem Raj 2019-09-29 15:43 ` [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version Khem Raj @ 2019-09-29 16:40 ` Denys Dmytriyenko 2019-09-29 23:52 ` Khem Raj 2 siblings, 1 reply; 11+ messages in thread From: Denys Dmytriyenko @ 2019-09-29 16:40 UTC (permalink / raw) To: Khem Raj; +Cc: meta-ti On Sun, Sep 29, 2019 at 08:43:33AM -0700, Khem Raj wrote: > COREBASE is hardcoding the path and moreover its obsolete the better way > is to use relative path which is automatically searched in BBPATH by > bitbake This was actually done on purpose - there are many versions of u-boot.bb and u-boot.inc in different OE layers: https://layers.openembedded.org/layerindex/branch/master/recipes/?q=u-boot To avoid any conflicts, I specifically include the one from OE-Core. COREBASE itself is not obsolete, just ${COREBASE}/LICENSE is: https://www.yoctoproject.org/docs/current/mega-manual/mega-manual.html#var-COREBASE https://git.openembedded.org/openembedded-core/tree/meta/conf/layer.conf#n20 https://git.openembedded.org/openembedded-core/tree/meta/classes/insane.bbclass#n468 -- Denys > Signed-off-by: Khem Raj <raj.khem@gmail.com> > --- > recipes-bsp/u-boot/u-boot-ti.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/recipes-bsp/u-boot/u-boot-ti.inc b/recipes-bsp/u-boot/u-boot-ti.inc > index f1187e64..f7434712 100644 > --- a/recipes-bsp/u-boot/u-boot-ti.inc > +++ b/recipes-bsp/u-boot/u-boot-ti.inc > @@ -13,7 +13,7 @@ UBOOT_LOCALVERSION = "-g${@get_git_revision('${S}').__str__()[:10]}" > UBOOT_SUFFIX ?= "img" > SPL_BINARY ?= "MLO" > > -require ${COREBASE}/meta/recipes-bsp/u-boot/u-boot.inc > +require recipes-bsp/u-boot/u-boot.inc > > FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot:" > > -- > 2.23.0 > > -- > _______________________________________________ > meta-ti mailing list > meta-ti@yoctoproject.org > https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] u-boot-ti: Drop using COREBASE 2019-09-29 16:40 ` [PATCH 1/3] u-boot-ti: Drop using COREBASE Denys Dmytriyenko @ 2019-09-29 23:52 ` Khem Raj 0 siblings, 0 replies; 11+ messages in thread From: Khem Raj @ 2019-09-29 23:52 UTC (permalink / raw) To: Denys Dmytriyenko; +Cc: meta-ti On Sun, Sep 29, 2019 at 9:40 AM Denys Dmytriyenko <denys@ti.com> wrote: > > On Sun, Sep 29, 2019 at 08:43:33AM -0700, Khem Raj wrote: > > COREBASE is hardcoding the path and moreover its obsolete the better way > > is to use relative path which is automatically searched in BBPATH by > > bitbake > > This was actually done on purpose - there are many versions of u-boot.bb and > u-boot.inc in different OE layers: > https://layers.openembedded.org/layerindex/branch/master/recipes/?q=u-boot > > To avoid any conflicts, I specifically include the one from OE-Core. > hmm I guess not pretty but seems fine here. Lets drop this patch. > COREBASE itself is not obsolete, just ${COREBASE}/LICENSE is: > https://www.yoctoproject.org/docs/current/mega-manual/mega-manual.html#var-COREBASE > https://git.openembedded.org/openembedded-core/tree/meta/conf/layer.conf#n20 > https://git.openembedded.org/openembedded-core/tree/meta/classes/insane.bbclass#n468 > > -- > Denys > > > > Signed-off-by: Khem Raj <raj.khem@gmail.com> > > --- > > recipes-bsp/u-boot/u-boot-ti.inc | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/recipes-bsp/u-boot/u-boot-ti.inc b/recipes-bsp/u-boot/u-boot-ti.inc > > index f1187e64..f7434712 100644 > > --- a/recipes-bsp/u-boot/u-boot-ti.inc > > +++ b/recipes-bsp/u-boot/u-boot-ti.inc > > @@ -13,7 +13,7 @@ UBOOT_LOCALVERSION = "-g${@get_git_revision('${S}').__str__()[:10]}" > > UBOOT_SUFFIX ?= "img" > > SPL_BINARY ?= "MLO" > > > > -require ${COREBASE}/meta/recipes-bsp/u-boot/u-boot.inc > > +require recipes-bsp/u-boot/u-boot.inc > > > > FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot:" > > > > -- > > 2.23.0 > > > > -- > > _______________________________________________ > > meta-ti mailing list > > meta-ti@yoctoproject.org > > https://lists.yoctoproject.org/listinfo/meta-ti ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2019-10-01 0:22 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-09-29 15:43 [PATCH 1/3] u-boot-ti: Drop using COREBASE Khem Raj 2019-09-29 15:43 ` [PATCH 2/3] recipes-ti: Use COMMON_LICENSE_DIR instead of COREBASE Khem Raj 2019-09-29 15:43 ` [PATCH 3/3] beaglebone-getting-started: Mention CC-BY-SA-3.0 and correct GPL version Khem Raj 2019-09-30 18:32 ` Denys Dmytriyenko 2019-09-30 20:40 ` Khem Raj 2019-09-30 20:43 ` Denys Dmytriyenko 2019-10-01 0:00 ` Denys Dmytriyenko 2019-10-01 0:07 ` Khem Raj 2019-10-01 0:22 ` Denys Dmytriyenko 2019-09-29 16:40 ` [PATCH 1/3] u-boot-ti: Drop using COREBASE Denys Dmytriyenko 2019-09-29 23:52 ` Khem Raj
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.