* [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding
@ 2013-08-19 5:51 Mrinmayee Hingolikar
2013-08-19 5:51 ` [PATCH 1/2] configs : Override OECORELOCALCONF to use the glsdk.conf.sample Mrinmayee Hingolikar
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Mrinmayee Hingolikar @ 2013-08-19 5:51 UTC (permalink / raw)
To: meta-arago
v1:
* In order to use GLSDK branding, a variable ARAGO_BRAND needs to be set
in local.conf.
* This patch set adds a conf.sample file for GLDK that contains the
ARAGO_BRAND set to GLSDK branding, and edits the OECORELOCALCONF
variable in GLSDK config to pick up the GLSDK conf.sample.
* The oe-layertool-setup.sh would generate local.conf from the GLSDK conf.sample.
v2:
* Copied conf.sample from AMSDK's conf.sample instead of copying from
local-arago-linaro.conf.sample.
Mrinmayee Hingolikar (2):
configs : Override OECORELOCALCONF to use the glsdk.conf.sample
sample-files: Added conf.sample file for GLSDK
configs/glsdk/glsdk-06.01.00-config.txt | 2 +-
sample-files/local-glsdk.conf.sample | 162 +++++++++++++++++++++++++++++++
2 files changed, 163 insertions(+), 1 deletion(-)
create mode 100644 sample-files/local-glsdk.conf.sample
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] configs : Override OECORELOCALCONF to use the glsdk.conf.sample
2013-08-19 5:51 [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding Mrinmayee Hingolikar
@ 2013-08-19 5:51 ` Mrinmayee Hingolikar
2013-08-19 5:51 ` [PATCH 2/2] sample-files: Added conf.sample file for GLSDK Mrinmayee Hingolikar
2013-08-19 17:41 ` [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding Denys Dmytriyenko
2 siblings, 0 replies; 4+ messages in thread
From: Mrinmayee Hingolikar @ 2013-08-19 5:51 UTC (permalink / raw)
To: meta-arago
* The OECORELOCALCONF variable specifis the conf.sample file to be used
to generate local.conf.
* Overriding it to the GLSDK conf.sample that contains the GLSDK branding.
Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
---
configs/glsdk/glsdk-06.01.00-config.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/glsdk/glsdk-06.01.00-config.txt b/configs/glsdk/glsdk-06.01.00-config.txt
index 5708106..8bb1963 100644
--- a/configs/glsdk/glsdk-06.01.00-config.txt
+++ b/configs/glsdk/glsdk-06.01.00-config.txt
@@ -8,4 +8,4 @@ meta-ti,git://arago-project.org/git/projects/meta-ti-glsdk.git,danny,DEV_SDK_06_
meta-linaro,git://git.linaro.org/openembedded/meta-linaro.git,danny,d0558fa4304592622423582f8b464e1c22cfe6f1,layers=
oe-core,git://git.openembedded.org/openembedded-core,danny,0785489d558c34cacf5cb349949a15e27084efbf,layers=meta
OECORELAYERCONF=./sample-files/bblayers.conf.sample
-OECORELOCALCONF=./sample-files/local-arago.conf.sample
+OECORELOCALCONF=./sample-files/local-glsdk.conf.sample
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] sample-files: Added conf.sample file for GLSDK
2013-08-19 5:51 [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding Mrinmayee Hingolikar
2013-08-19 5:51 ` [PATCH 1/2] configs : Override OECORELOCALCONF to use the glsdk.conf.sample Mrinmayee Hingolikar
@ 2013-08-19 5:51 ` Mrinmayee Hingolikar
2013-08-19 17:41 ` [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding Denys Dmytriyenko
2 siblings, 0 replies; 4+ messages in thread
From: Mrinmayee Hingolikar @ 2013-08-19 5:51 UTC (permalink / raw)
To: meta-arago
v1:
* The local-glsdk.conf.sample files contains the GLSDK branding.
It will b used to generate local.conf by oe-layertool-setup.sh
v2:
* Copied sample file from amsdk.con.sample instead of linaro.conf.sample
Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
---
...l-amsdk.conf.sample => local-glsdk.conf.sample} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
copy sample-files/{local-amsdk.conf.sample => local-glsdk.conf.sample} (99%)
diff --git a/sample-files/local-amsdk.conf.sample b/sample-files/local-glsdk.conf.sample
similarity index 99%
copy from sample-files/local-amsdk.conf.sample
copy to sample-files/local-glsdk.conf.sample
index 1a08f5c..acd094f 100644
--- a/sample-files/local-amsdk.conf.sample
+++ b/sample-files/local-glsdk.conf.sample
@@ -147,8 +147,8 @@ PARALLEL_MAKE = "-j 1"
DISTRO = "arago"
-# Set branding policy for AM-SDK
-ARAGO_BRAND = "amsdk"
+# Set branding policy for GLSDK
+ARAGO_BRAND = "glsdk"
# Set terminal types by default it expects gnome-terminal
# but we chose xterm
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding
2013-08-19 5:51 [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding Mrinmayee Hingolikar
2013-08-19 5:51 ` [PATCH 1/2] configs : Override OECORELOCALCONF to use the glsdk.conf.sample Mrinmayee Hingolikar
2013-08-19 5:51 ` [PATCH 2/2] sample-files: Added conf.sample file for GLSDK Mrinmayee Hingolikar
@ 2013-08-19 17:41 ` Denys Dmytriyenko
2 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2013-08-19 17:41 UTC (permalink / raw)
To: Mrinmayee Hingolikar; +Cc: meta-arago
Overall, both patches look fine. There are some small nit picks, but I won't
hold the patches because of those...
On Mon, Aug 19, 2013 at 11:21:28AM +0530, Mrinmayee Hingolikar wrote:
> v1:
>
> * In order to use GLSDK branding, a variable ARAGO_BRAND needs to be set
> in local.conf.
> * This patch set adds a conf.sample file for GLDK that contains the
> ARAGO_BRAND set to GLSDK branding, and edits the OECORELOCALCONF
> variable in GLSDK config to pick up the GLSDK conf.sample.
> * The oe-layertool-setup.sh would generate local.conf from the GLSDK conf.sample.
>
> v2:
>
> * Copied conf.sample from AMSDK's conf.sample instead of copying from
> local-arago-linaro.conf.sample.
>
> Mrinmayee Hingolikar (2):
> configs : Override OECORELOCALCONF to use the glsdk.conf.sample
> sample-files: Added conf.sample file for GLSDK
>
> configs/glsdk/glsdk-06.01.00-config.txt | 2 +-
> sample-files/local-glsdk.conf.sample | 162 +++++++++++++++++++++++++++++++
> 2 files changed, 163 insertions(+), 1 deletion(-)
> create mode 100644 sample-files/local-glsdk.conf.sample
>
> --
> 1.7.9.5
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-08-19 17:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-19 5:51 [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding Mrinmayee Hingolikar
2013-08-19 5:51 ` [PATCH 1/2] configs : Override OECORELOCALCONF to use the glsdk.conf.sample Mrinmayee Hingolikar
2013-08-19 5:51 ` [PATCH 2/2] sample-files: Added conf.sample file for GLSDK Mrinmayee Hingolikar
2013-08-19 17:41 ` [PATCHv2 0/2] Enable oe-layertool-setup.sh to use GLSDK branding 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.