* [PATCH] Alsa-state: Wildcard removed and all *.state put back in the recipes
@ 2009-03-22 14:12 Matthieu Poullet
2009-03-22 14:49 ` Philip Balister
2009-03-22 18:29 ` Marcin Juszkiewicz
0 siblings, 2 replies; 7+ messages in thread
From: Matthieu Poullet @ 2009-03-22 14:12 UTC (permalink / raw)
To: openembedded-devel; +Cc: Matthieu Poullet
The wildcard doesn't work properly.
So either the wildcard support must be fixed or all the *.state files must be added in the SRC_URI.
---
recipes/alsa/alsa-state.bb | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/recipes/alsa/alsa-state.bb b/recipes/alsa/alsa-state.bb
index 3ebc0d5..a878c57 100644
--- a/recipes/alsa/alsa-state.bb
+++ b/recipes/alsa/alsa-state.bb
@@ -13,7 +13,15 @@ SRC_URI = "\
file://asound.conf \
file://asound.state \
file://alsa-state \
- file://*.state \
+ file://asound.state \
+ file://at91sam9263ek/asound.state \
+ file://spitz/asound.state \
+ file://tosa/asound.state \
+ file://c7x0/asound.state \
+ file://magician/asound.state \
+ file://hx4700/asound.state \
+ file://nokia800/asound.state \
+ file://akita/asound.state \
"
inherit update-rc.d
--
1.5.6.3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] Alsa-state: Wildcard removed and all *.state put back in the recipes
2009-03-22 14:12 [PATCH] Alsa-state: Wildcard removed and all *.state put back in the recipes Matthieu Poullet
@ 2009-03-22 14:49 ` Philip Balister
2009-03-22 16:39 ` Andrea Adami
2009-03-22 18:29 ` Marcin Juszkiewicz
1 sibling, 1 reply; 7+ messages in thread
From: Philip Balister @ 2009-03-22 14:49 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1075 bytes --]
Matthieu Poullet wrote:
> The wildcard doesn't work properly.
> So either the wildcard support must be fixed or all the *.state files must be added in the SRC_URI.
Acked-by: Philip Balister (philip@balister.org)
This makes the packages created from this recipe more deterministic.
>
> ---
> recipes/alsa/alsa-state.bb | 10 +++++++++-
> 1 files changed, 9 insertions(+), 1 deletions(-)
>
> diff --git a/recipes/alsa/alsa-state.bb b/recipes/alsa/alsa-state.bb
> index 3ebc0d5..a878c57 100644
> --- a/recipes/alsa/alsa-state.bb
> +++ b/recipes/alsa/alsa-state.bb
> @@ -13,7 +13,15 @@ SRC_URI = "\
> file://asound.conf \
> file://asound.state \
> file://alsa-state \
> - file://*.state \
> + file://asound.state \
> + file://at91sam9263ek/asound.state \
> + file://spitz/asound.state \
> + file://tosa/asound.state \
> + file://c7x0/asound.state \
> + file://magician/asound.state \
> + file://hx4700/asound.state \
> + file://nokia800/asound.state \
> + file://akita/asound.state \
> "
>
> inherit update-rc.d
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Alsa-state: Wildcard removed and all *.state put back in the recipes
2009-03-22 14:12 [PATCH] Alsa-state: Wildcard removed and all *.state put back in the recipes Matthieu Poullet
2009-03-22 14:49 ` Philip Balister
@ 2009-03-22 18:29 ` Marcin Juszkiewicz
2009-03-22 19:15 ` Marcin Juszkiewicz
2009-03-22 19:26 ` Marcin Juszkiewicz
1 sibling, 2 replies; 7+ messages in thread
From: Marcin Juszkiewicz @ 2009-03-22 18:29 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1134 bytes --]
Dnia niedziela, 22 marca 2009 o 15:12:22 Matthieu Poullet napisał(a):
> The wildcard doesn't work properly.
> So either the wildcard support must be fixed or all the *.state files
> must be added in the SRC_URI.
NACK
> diff --git a/recipes/alsa/alsa-state.bb b/recipes/alsa/alsa-state.bb
> index 3ebc0d5..a878c57 100644
> --- a/recipes/alsa/alsa-state.bb
> +++ b/recipes/alsa/alsa-state.bb
> @@ -13,7 +13,15 @@ SRC_URI = "\
> file://asound.conf \
> file://asound.state \
> file://alsa-state \
> - file://*.state \
> + file://asound.state \
This should be enough. BitBake will take proper asound.state from
MACHINE/ directory if it is present.
> + file://at91sam9263ek/asound.state \
> + file://spitz/asound.state \
> + file://tosa/asound.state \
> + file://c7x0/asound.state \
> + file://magician/asound.state \
> + file://hx4700/asound.state \
> + file://nokia800/asound.state \
> + file://akita/asound.state \
That part is wrong.
Regards,
--
JID: hrw@jabber.org
Website: http://marcin.juszkiewicz.com.pl/
LinkedIn: http://www.linkedin.com/in/marcinjuszkiewicz
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 204 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-03-22 19:28 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-22 14:12 [PATCH] Alsa-state: Wildcard removed and all *.state put back in the recipes Matthieu Poullet
2009-03-22 14:49 ` Philip Balister
2009-03-22 16:39 ` Andrea Adami
2009-03-22 18:29 ` Marcin Juszkiewicz
2009-03-22 19:15 ` Marcin Juszkiewicz
2009-03-22 19:26 ` Marcin Juszkiewicz
2009-03-22 19:26 ` Marcin Juszkiewicz
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.