meta-arago.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample
@ 2022-04-28 17:18 Andrew Davis
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 2/5] Add layers for split meta-ti master branch Andrew Davis
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Andrew Davis @ 2022-04-28 17:18 UTC (permalink / raw)
  To: Denys Dmytriyenko, Ryan Eatmon, meta-arago; +Cc: Andrew Davis

Signed-off-by: Andrew Davis <afd@ti.com>
---
 sample-files/bblayers-zeus-browser.conf.sample | 12 ------------
 1 file changed, 12 deletions(-)
 delete mode 100644 sample-files/bblayers-zeus-browser.conf.sample

diff --git a/sample-files/bblayers-zeus-browser.conf.sample b/sample-files/bblayers-zeus-browser.conf.sample
deleted file mode 100644
index bb83fac..0000000
--- a/sample-files/bblayers-zeus-browser.conf.sample
+++ /dev/null
@@ -1,12 +0,0 @@
-# This template file was created by taking the oe-core/meta/conf/bblayers.conf
-# file and removing the BBLAYERS section at the end.
-
-# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
-# changes incompatibly
-LCONF_VERSION = "6"
-
-BBPATH = "${TOPDIR}"
-BBFILES ?= ""
-
-OVERRIDES = "forcevariable"
-LAYERSERIES_COMPAT_browser-layer_forcevariable = "zeus"
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-arago][oe-layersetup PATCH v2 2/5] Add layers for split meta-ti master branch
  2022-04-28 17:18 [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Andrew Davis
@ 2022-04-28 17:18 ` Andrew Davis
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 3/5] Remove image-prelink from sample USER_CLASSES Andrew Davis
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Andrew Davis @ 2022-04-28 17:18 UTC (permalink / raw)
  To: Denys Dmytriyenko, Ryan Eatmon, meta-arago; +Cc: Andrew Davis

The latest master meta-ti split into two layers, add new layers here.

Signed-off-by: Andrew Davis <afd@ti.com>
---
 configs/arago-master-config.txt      | 2 +-
 configs/distroless-master-config.txt | 2 +-
 configs/poky-master-config.txt       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/arago-master-config.txt b/configs/arago-master-config.txt
index bd0ccec..532a145 100644
--- a/configs/arago-master-config.txt
+++ b/configs/arago-master-config.txt
@@ -7,7 +7,7 @@ meta-arago,git://git.yoctoproject.org/meta-arago,master,HEAD,layers=meta-arago-d
 meta-qt5,https://github.com/meta-qt5/meta-qt5.git,master,HEAD,layers=
 meta-virtualization,git://git.yoctoproject.org/meta-virtualization,master,HEAD,layers=
 meta-openembedded,git://git.openembedded.org/meta-openembedded,master,HEAD,layers=meta-networking:meta-python:meta-oe:meta-gnome:meta-filesystems
-meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=
+meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=meta-ti-extras:meta-ti-bsp
 meta-arm,git://git.yoctoproject.org/meta-arm,master,HEAD,layers=meta-arm:meta-arm-toolchain
 oe-core,git://git.openembedded.org/openembedded-core,master,HEAD,layers=meta
 OECORELAYERCONF=./sample-files/bblayers.conf.sample
diff --git a/configs/distroless-master-config.txt b/configs/distroless-master-config.txt
index 8211bd5..5c55459 100644
--- a/configs/distroless-master-config.txt
+++ b/configs/distroless-master-config.txt
@@ -1,7 +1,7 @@
 # This file takes repo entries in the format
 # repo name,repo uri,repo branch,repo commit[,layers=layer1:layer2...:layern]
 bitbake,git://git.openembedded.org/bitbake,master,HEAD
-meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=
+meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=meta-ti-extras:meta-ti-bsp
 meta-arm,git://git.yoctoproject.org/meta-arm,master,HEAD,layers=meta-arm:meta-arm-toolchain
 oe-core,git://git.openembedded.org/openembedded-core,master,HEAD,layers=meta
 OECORELAYERCONF=./sample-files/bblayers.conf.sample
diff --git a/configs/poky-master-config.txt b/configs/poky-master-config.txt
index f213411..b395ff8 100644
--- a/configs/poky-master-config.txt
+++ b/configs/poky-master-config.txt
@@ -2,7 +2,7 @@
 # repo name,repo uri,repo branch,repo commit[,layers=layer1:layer2...:layern]
 bitbake,git://git.openembedded.org/bitbake,master,HEAD
 poky,git://git.yoctoproject.org/poky,master,HEAD,layers=meta:meta-poky:meta-yocto-bsp
-meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=
+meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=meta-ti-extras:meta-ti-bsp
 meta-arm,git://git.yoctoproject.org/meta-arm,master,HEAD,layers=meta-arm:meta-arm-toolchain
 OECORELAYERCONF=./sample-files/bblayers.conf.sample
 OECORELOCALCONF=./sample-files/local-poky-v2.conf.sample
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-arago][oe-layersetup PATCH v2 3/5] Remove image-prelink from sample USER_CLASSES
  2022-04-28 17:18 [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Andrew Davis
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 2/5] Add layers for split meta-ti master branch Andrew Davis
@ 2022-04-28 17:18 ` Andrew Davis
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 4/5] Build Poky in a directory named poky-tmp vs arago-tmp Andrew Davis
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Andrew Davis @ 2022-04-28 17:18 UTC (permalink / raw)
  To: Denys Dmytriyenko, Ryan Eatmon, meta-arago; +Cc: Andrew Davis

Prelinking hasn't worked on ARM in a while so this class was
removed in the latests core master. Remove it here.

Signed-off-by: Andrew Davis <afd@ti.com>
---
 sample-files/local-arago64-v2.conf.sample | 4 +---
 sample-files/local-poky-v2.conf.sample    | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/sample-files/local-arago64-v2.conf.sample b/sample-files/local-arago64-v2.conf.sample
index 9549e8a..13585cb 100644
--- a/sample-files/local-arago64-v2.conf.sample
+++ b/sample-files/local-arago64-v2.conf.sample
@@ -112,11 +112,9 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks"
 # enable extra features. Some available options which can be included in this variable 
 # are:
 #   - 'buildstats' collect build statistics
-#   - 'image-prelink' in order to prelink the filesystem image
 #   - 'image-swab' to perform host system intrusion detection
-# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
 # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
-USER_CLASSES ?= "buildstats image-prelink"
+USER_CLASSES ?= "buildstats"
 
 # By default disable interactive patch resolution (tasks will just fail instead):
 PATCHRESOLVE = "noop"
diff --git a/sample-files/local-poky-v2.conf.sample b/sample-files/local-poky-v2.conf.sample
index 5cbe6ef..a958055 100644
--- a/sample-files/local-poky-v2.conf.sample
+++ b/sample-files/local-poky-v2.conf.sample
@@ -109,11 +109,9 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks"
 # enable extra features. Some available options which can be included in this variable 
 # are:
 #   - 'buildstats' collect build statistics
-#   - 'image-prelink' in order to prelink the filesystem image
 #   - 'image-swab' to perform host system intrusion detection
-# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
 # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
-USER_CLASSES ?= "buildstats image-prelink"
+USER_CLASSES ?= "buildstats"
 
 # By default disable interactive patch resolution (tasks will just fail instead):
 PATCHRESOLVE = "noop"
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-arago][oe-layersetup PATCH v2 4/5] Build Poky in a directory named poky-tmp vs arago-tmp
  2022-04-28 17:18 [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Andrew Davis
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 2/5] Add layers for split meta-ti master branch Andrew Davis
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 3/5] Remove image-prelink from sample USER_CLASSES Andrew Davis
@ 2022-04-28 17:18 ` Andrew Davis
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 5/5] Build Poky using meta-yocto instead of combined poky repo Andrew Davis
  2022-05-02 13:48 ` [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Ryan Eatmon
  4 siblings, 0 replies; 6+ messages in thread
From: Andrew Davis @ 2022-04-28 17:18 UTC (permalink / raw)
  To: Denys Dmytriyenko, Ryan Eatmon, meta-arago; +Cc: Andrew Davis

This also allows us to keep version of both should we need.

Signed-off-by: Andrew Davis <afd@ti.com>
---
 sample-files/local-poky-v2.conf.sample | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sample-files/local-poky-v2.conf.sample b/sample-files/local-poky-v2.conf.sample
index a958055..4bd0563 100644
--- a/sample-files/local-poky-v2.conf.sample
+++ b/sample-files/local-poky-v2.conf.sample
@@ -48,7 +48,7 @@ SSTATE_DIR = "${OEBASE}/build/sstate-cache"
 # where BitBake should place its temporary files and output. Keep in mind that
 # this includes the extraction and compilation of many applications and the toolchain
 # which can use Gigabytes of hard disk space.
-TMPDIR = "${OEBASE}/build/arago-tmp"
+TMPDIR = "${OEBASE}/build/poky-tmp"
 
 #
 # Machine Selection
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-arago][oe-layersetup PATCH v2 5/5] Build Poky using meta-yocto instead of combined poky repo
  2022-04-28 17:18 [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Andrew Davis
                   ` (2 preceding siblings ...)
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 4/5] Build Poky in a directory named poky-tmp vs arago-tmp Andrew Davis
@ 2022-04-28 17:18 ` Andrew Davis
  2022-05-02 13:48 ` [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Ryan Eatmon
  4 siblings, 0 replies; 6+ messages in thread
From: Andrew Davis @ 2022-04-28 17:18 UTC (permalink / raw)
  To: Denys Dmytriyenko, Ryan Eatmon, meta-arago; +Cc: Andrew Davis

The Poky repo contains meta-yocto plus extra bits needed for an
all-in-one build, but since we already pull in tools with this
script like bitbake and oe-core, lets use those and save some
space/bandwidth.

Signed-off-by: Andrew Davis <afd@ti.com>
---
 configs/poky-master-config.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configs/poky-master-config.txt b/configs/poky-master-config.txt
index b395ff8..a541501 100644
--- a/configs/poky-master-config.txt
+++ b/configs/poky-master-config.txt
@@ -1,8 +1,10 @@
 # This file takes repo entries in the format
 # repo name,repo uri,repo branch,repo commit[,layers=layer1:layer2...:layern]
+
 bitbake,git://git.openembedded.org/bitbake,master,HEAD
-poky,git://git.yoctoproject.org/poky,master,HEAD,layers=meta:meta-poky:meta-yocto-bsp
+meta-yocto,git://git.yoctoproject.org/meta-yocto,master,HEAD,layers=meta-poky:meta-yocto-bsp
 meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=meta-ti-extras:meta-ti-bsp
 meta-arm,git://git.yoctoproject.org/meta-arm,master,HEAD,layers=meta-arm:meta-arm-toolchain
+oe-core,git://git.openembedded.org/openembedded-core,master,HEAD,layers=meta
 OECORELAYERCONF=./sample-files/bblayers.conf.sample
 OECORELOCALCONF=./sample-files/local-poky-v2.conf.sample
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample
  2022-04-28 17:18 [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Andrew Davis
                   ` (3 preceding siblings ...)
  2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 5/5] Build Poky using meta-yocto instead of combined poky repo Andrew Davis
@ 2022-05-02 13:48 ` Ryan Eatmon
  4 siblings, 0 replies; 6+ messages in thread
From: Ryan Eatmon @ 2022-05-02 13:48 UTC (permalink / raw)
  To: Andrew Davis, Denys Dmytriyenko, meta-arago


Series applied to master.



On 4/28/2022 12:18, Andrew Davis wrote:
> Signed-off-by: Andrew Davis <afd@ti.com>
> ---
>   sample-files/bblayers-zeus-browser.conf.sample | 12 ------------
>   1 file changed, 12 deletions(-)
>   delete mode 100644 sample-files/bblayers-zeus-browser.conf.sample
> 
> diff --git a/sample-files/bblayers-zeus-browser.conf.sample b/sample-files/bblayers-zeus-browser.conf.sample
> deleted file mode 100644
> index bb83fac..0000000
> --- a/sample-files/bblayers-zeus-browser.conf.sample
> +++ /dev/null
> @@ -1,12 +0,0 @@
> -# This template file was created by taking the oe-core/meta/conf/bblayers.conf
> -# file and removing the BBLAYERS section at the end.
> -
> -# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
> -# changes incompatibly
> -LCONF_VERSION = "6"
> -
> -BBPATH = "${TOPDIR}"
> -BBFILES ?= ""
> -
> -OVERRIDES = "forcevariable"
> -LAYERSERIES_COMPAT_browser-layer_forcevariable = "zeus"

-- 
Ryan Eatmon                reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc.  -  LCPD  -  MGTS


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-05-02 13:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28 17:18 [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Andrew Davis
2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 2/5] Add layers for split meta-ti master branch Andrew Davis
2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 3/5] Remove image-prelink from sample USER_CLASSES Andrew Davis
2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 4/5] Build Poky in a directory named poky-tmp vs arago-tmp Andrew Davis
2022-04-28 17:18 ` [meta-arago][oe-layersetup PATCH v2 5/5] Build Poky using meta-yocto instead of combined poky repo Andrew Davis
2022-05-02 13:48 ` [meta-arago][oe-layersetup PATCH v2 1/5] Remove unused sample-file bblayers-zeus-browser.conf.sample Ryan Eatmon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).