* [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE
@ 2012-07-16 19:24 Martin Jansa
2012-07-16 19:31 ` Koen Kooi
2012-07-16 19:32 ` [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE Eric Bénard
0 siblings, 2 replies; 4+ messages in thread
From: Martin Jansa @ 2012-07-16 19:24 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
recipes-browser/chromium/chromium_19.0.1049.3.bb | 5 +++++
recipes-browser/chromium/chromium_20.0.1086.0.bb | 5 +++++
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/recipes-browser/chromium/chromium_19.0.1049.3.bb b/recipes-browser/chromium/chromium_19.0.1049.3.bb
index 4c9de8e..e657c48 100644
--- a/recipes-browser/chromium/chromium_19.0.1049.3.bb
+++ b/recipes-browser/chromium/chromium_19.0.1049.3.bb
@@ -10,6 +10,11 @@ SRC_URI = "http://commondatastorage.googleapis.com/chromium-browser-official/${P
file://softfloat-fix.patch \
"
+# include.gypi exists only for armv6 and armv7a and there isn't something like COMPATIBLE_ARCH afaik
+COMPATIBLE_MACHINE = "(-)"
+COMPATIBLE_MACHINE_armv6 = "(.*)"
+COMPATIBLE_MACHINE_armv7a = "(.*)"
+
PR = "r1"
SRC_URI[md5sum] = "0cdd94b2be21180af93f719e9a9a2883"
diff --git a/recipes-browser/chromium/chromium_20.0.1086.0.bb b/recipes-browser/chromium/chromium_20.0.1086.0.bb
index 47f0173..527f317 100644
--- a/recipes-browser/chromium/chromium_20.0.1086.0.bb
+++ b/recipes-browser/chromium/chromium_20.0.1086.0.bb
@@ -7,6 +7,11 @@ SRC_URI = "http://commondatastorage.googleapis.com/chromium-browser-official/${P
file://include.gypi \
"
+# include.gypi exists only for armv6 and armv7a and there isn't something like COMPATIBLE_ARCH afaik
+COMPATIBLE_MACHINE = "(-)"
+COMPATIBLE_MACHINE_armv6 = "(.*)"
+COMPATIBLE_MACHINE_armv7a = "(.*)"
+
DEFAULT_PREFERENCE = "-1"
SRC_URI[md5sum] = "86535af2d00d157b358e8fd6fb6ad38c"
--
1.7.8.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE
2012-07-16 19:24 [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE Martin Jansa
@ 2012-07-16 19:31 ` Koen Kooi
2012-07-16 20:25 ` [meta-browser][PATCH] chromium: use COMPATIBLE_HOST instead of COMPATIBLE_MACHINE Martin Jansa
2012-07-16 19:32 ` [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE Eric Bénard
1 sibling, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2012-07-16 19:31 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 16-07-12 21:24, Martin Jansa schreef:
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> ---
> recipes-browser/chromium/chromium_19.0.1049.3.bb | 5 +++++
> recipes-browser/chromium/chromium_20.0.1086.0.bb | 5 +++++ 2 files
> changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/recipes-browser/chromium/chromium_19.0.1049.3.bb
> b/recipes-browser/chromium/chromium_19.0.1049.3.bb index 4c9de8e..e657c48
> 100644 --- a/recipes-browser/chromium/chromium_19.0.1049.3.bb +++
> b/recipes-browser/chromium/chromium_19.0.1049.3.bb @@ -10,6 +10,11 @@
> SRC_URI =
> "http://commondatastorage.googleapis.com/chromium-browser-official/${P
> file://softfloat-fix.patch \ "
>
> +# include.gypi exists only for armv6 and armv7a and there isn't
> something like COMPATIBLE_ARCH afaik +COMPATIBLE_MACHINE = "(-)"
> +COMPATIBLE_MACHINE_armv6 = "(.*)" +COMPATIBLE_MACHINE_armv7a = "(.*)" +
> PR = "r1"
>
> SRC_URI[md5sum] = "0cdd94b2be21180af93f719e9a9a2883" diff --git
> a/recipes-browser/chromium/chromium_20.0.1086.0.bb
> b/recipes-browser/chromium/chromium_20.0.1086.0.bb index 47f0173..527f317
> 100644 --- a/recipes-browser/chromium/chromium_20.0.1086.0.bb +++
> b/recipes-browser/chromium/chromium_20.0.1086.0.bb @@ -7,6 +7,11 @@
> SRC_URI =
> "http://commondatastorage.googleapis.com/chromium-browser-official/${P
> file://include.gypi \ "
>
> +# include.gypi exists only for armv6 and armv7a and there isn't
> something like COMPATIBLE_ARCH afaik
COMPATIBLE_HOST
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org
iD8DBQFQBGwgMkyGM64RGpERAkalAJ9L4B9WgeMXcqgJkYZIu1QgbQ2bvgCfRpFB
C4ukDSjXiVL0tSjgxFePQUA=
=Wnan
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE
2012-07-16 19:24 [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE Martin Jansa
2012-07-16 19:31 ` Koen Kooi
@ 2012-07-16 19:32 ` Eric Bénard
1 sibling, 0 replies; 4+ messages in thread
From: Eric Bénard @ 2012-07-16 19:32 UTC (permalink / raw)
To: openembedded-devel
Le Mon, 16 Jul 2012 21:24:58 +0200,
Martin Jansa <martin.jansa@gmail.com> a écrit :
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
> recipes-browser/chromium/chromium_19.0.1049.3.bb | 5 +++++
> recipes-browser/chromium/chromium_20.0.1086.0.bb | 5 +++++
> 2 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/recipes-browser/chromium/chromium_19.0.1049.3.bb b/recipes-browser/chromium/chromium_19.0.1049.3.bb
> index 4c9de8e..e657c48 100644
> --- a/recipes-browser/chromium/chromium_19.0.1049.3.bb
> +++ b/recipes-browser/chromium/chromium_19.0.1049.3.bb
> @@ -10,6 +10,11 @@ SRC_URI = "http://commondatastorage.googleapis.com/chromium-browser-official/${P
> file://softfloat-fix.patch \
> "
>
> +# include.gypi exists only for armv6 and armv7a and there isn't
applied thanks, and if anyone want to adapt these recipes to other
archs : feel free to send patches ;-)
Eric
^ permalink raw reply [flat|nested] 4+ messages in thread
* [meta-browser][PATCH] chromium: use COMPATIBLE_HOST instead of COMPATIBLE_MACHINE
2012-07-16 19:31 ` Koen Kooi
@ 2012-07-16 20:25 ` Martin Jansa
0 siblings, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2012-07-16 20:25 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
recipes-browser/chromium/chromium_19.0.1049.3.bb | 6 ++----
recipes-browser/chromium/chromium_20.0.1086.0.bb | 4 +---
2 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/recipes-browser/chromium/chromium_19.0.1049.3.bb b/recipes-browser/chromium/chromium_19.0.1049.3.bb
index e657c48..97843a3 100644
--- a/recipes-browser/chromium/chromium_19.0.1049.3.bb
+++ b/recipes-browser/chromium/chromium_19.0.1049.3.bb
@@ -10,10 +10,8 @@ SRC_URI = "http://commondatastorage.googleapis.com/chromium-browser-official/${P
file://softfloat-fix.patch \
"
-# include.gypi exists only for armv6 and armv7a and there isn't something like COMPATIBLE_ARCH afaik
-COMPATIBLE_MACHINE = "(-)"
-COMPATIBLE_MACHINE_armv6 = "(.*)"
-COMPATIBLE_MACHINE_armv7a = "(.*)"
+# include.gypi exists only for armv6 and armv7a
+COMPATIBLE_HOST = "(armv6|armv7).*-linux"
PR = "r1"
diff --git a/recipes-browser/chromium/chromium_20.0.1086.0.bb b/recipes-browser/chromium/chromium_20.0.1086.0.bb
index 527f317..d1ae7e5 100644
--- a/recipes-browser/chromium/chromium_20.0.1086.0.bb
+++ b/recipes-browser/chromium/chromium_20.0.1086.0.bb
@@ -8,9 +8,7 @@ SRC_URI = "http://commondatastorage.googleapis.com/chromium-browser-official/${P
"
# include.gypi exists only for armv6 and armv7a and there isn't something like COMPATIBLE_ARCH afaik
-COMPATIBLE_MACHINE = "(-)"
-COMPATIBLE_MACHINE_armv6 = "(.*)"
-COMPATIBLE_MACHINE_armv7a = "(.*)"
+COMPATIBLE_HOST = "(armv6|armv7).*-linux"
DEFAULT_PREFERENCE = "-1"
--
1.7.8.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-07-16 20:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-16 19:24 [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE Martin Jansa
2012-07-16 19:31 ` Koen Kooi
2012-07-16 20:25 ` [meta-browser][PATCH] chromium: use COMPATIBLE_HOST instead of COMPATIBLE_MACHINE Martin Jansa
2012-07-16 19:32 ` [meta-browser][PATCH] chromium: restrict COMPATIBLE_MACHINE to any armv6 or armv7a MACHINE Eric Bénard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox