* [STABLE][PATCH 1/1] task-base: added btusb driver to list of recommended BT drivers
@ 2009-04-23 16:30 Marcin Juszkiewicz
2009-04-23 17:24 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Marcin Juszkiewicz @ 2009-04-23 16:30 UTC (permalink / raw)
To: openembedded-devel; +Cc: Marcin Juszkiewicz
From: Marcin Juszkiewicz <hrw@openembedded.org>
'btusb' driver replaced 'hci-usb' one few kernel releases ago. We recommend
both as some devices use older kernels.
Signed-off-by: Marcin Juszkiewicz <hrw@openembedded.org>
---
recipes/tasks/task-base.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/recipes/tasks/task-base.bb b/recipes/tasks/task-base.bb
index 4003359..66c26af 100644
--- a/recipes/tasks/task-base.bb
+++ b/recipes/tasks/task-base.bb
@@ -1,5 +1,5 @@
DESCRIPTION = "Merge machine and distro options to create a basic machine task/package"
-PR = "r80"
+PR = "r83"
inherit task
@@ -256,7 +256,7 @@ RRECOMMENDS_task-base-bluetooth = "\
kernel-module-hidp \
kernel-module-hci-uart \
kernel-module-sco \
- ${@base_contains('COMBINED_FEATURES', 'usbhost', 'kernel-module-hci-usb', '',d)} \
+ ${@base_contains('COMBINED_FEATURES', 'usbhost', 'kernel-module-btusb kernel-module-hci-usb', '',d)} \
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluetooth3c-cs', '',d)} \
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluecard-cs', '',d)} \
${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluetoothuart-cs', '',d)} \
--
1.6.3.rc0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [STABLE][PATCH 1/1] task-base: added btusb driver to list of recommended BT drivers
2009-04-23 16:30 [STABLE][PATCH 1/1] task-base: added btusb driver to list of recommended BT drivers Marcin Juszkiewicz
@ 2009-04-23 17:24 ` Koen Kooi
2009-04-23 17:31 ` Tom Rini
0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2009-04-23 17:24 UTC (permalink / raw)
To: openembedded-devel
On 23-04-09 18:30, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz<hrw@openembedded.org>
>
> 'btusb' driver replaced 'hci-usb' one few kernel releases ago. We recommend
> both as some devices use older kernels.
>
> Signed-off-by: Marcin Juszkiewicz<hrw@openembedded.org>
I ran into the same problem as well:
Acked-by: Koen Kooi <koen@openembedded.org>
> ---
> recipes/tasks/task-base.bb | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes/tasks/task-base.bb b/recipes/tasks/task-base.bb
> index 4003359..66c26af 100644
> --- a/recipes/tasks/task-base.bb
> +++ b/recipes/tasks/task-base.bb
> @@ -1,5 +1,5 @@
> DESCRIPTION = "Merge machine and distro options to create a basic machine task/package"
> -PR = "r80"
> +PR = "r83"
>
> inherit task
>
> @@ -256,7 +256,7 @@ RRECOMMENDS_task-base-bluetooth = "\
> kernel-module-hidp \
> kernel-module-hci-uart \
> kernel-module-sco \
> - ${@base_contains('COMBINED_FEATURES', 'usbhost', 'kernel-module-hci-usb', '',d)} \
> + ${@base_contains('COMBINED_FEATURES', 'usbhost', 'kernel-module-btusb kernel-module-hci-usb', '',d)} \
> ${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluetooth3c-cs', '',d)} \
> ${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluecard-cs', '',d)} \
> ${@base_contains('COMBINED_FEATURES', 'pcmcia', 'kernel-module-bluetoothuart-cs', '',d)} \
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [STABLE][PATCH 1/1] task-base: added btusb driver to list of recommended BT drivers
2009-04-23 17:24 ` Koen Kooi
@ 2009-04-23 17:31 ` Tom Rini
2009-04-23 17:37 ` Marcin Juszkiewicz
0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2009-04-23 17:31 UTC (permalink / raw)
To: openembedded-devel
On Thu, Apr 23, 2009 at 07:24:21PM +0200, Koen Kooi wrote:
> On 23-04-09 18:30, Marcin Juszkiewicz wrote:
>> From: Marcin Juszkiewicz<hrw@openembedded.org>
>>
>> 'btusb' driver replaced 'hci-usb' one few kernel releases ago. We recommend
>> both as some devices use older kernels.
>>
>> Signed-off-by: Marcin Juszkiewicz<hrw@openembedded.org>
>
> I ran into the same problem as well:
>
> Acked-by: Koen Kooi <koen@openembedded.org>
>
>
>> ---
>> recipes/tasks/task-base.bb | 4 ++--
>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/recipes/tasks/task-base.bb b/recipes/tasks/task-base.bb
>> index 4003359..66c26af 100644
>> --- a/recipes/tasks/task-base.bb
>> +++ b/recipes/tasks/task-base.bb
>> @@ -1,5 +1,5 @@
>> DESCRIPTION = "Merge machine and distro options to create a basic machine task/package"
>> -PR = "r80"
>> +PR = "r83"
So it's OK to just jump PRs like this? I assume in .dev there's 3
changes made to task-base from 80 to 83, including this change.
--
Tom Rini
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [STABLE][PATCH 1/1] task-base: added btusb driver to list of recommended BT drivers
2009-04-23 17:31 ` Tom Rini
@ 2009-04-23 17:37 ` Marcin Juszkiewicz
2009-04-23 17:46 ` [STABLE][PATCH 1/1] task-base: added btusb driver to list?of " Tom Rini
0 siblings, 1 reply; 5+ messages in thread
From: Marcin Juszkiewicz @ 2009-04-23 17:37 UTC (permalink / raw)
To: openembedded-devel
Dnia czwartek, 23 kwietnia 2009 o 19:31:55 Tom Rini napisał(a):
> >> +++ b/recipes/tasks/task-base.bb
> >> @@ -1,5 +1,5 @@
> >> DESCRIPTION = "Merge machine and distro options to create a
> >> basic machine task/package" -PR = "r80"
> >> +PR = "r83"
>
> So it's OK to just jump PRs like this? I assume in .dev there's 3
> changes made to task-base from 80 to 83, including this change.
Dev tree has r80 -> r82 jump when Raster introduced big change on how
splash tools work. This is not a change which was suggested for stable
(as it is big and not wide tested). And r83 task-base in stable/2009
will be same as r83 task-base from .dev after that patch.
Regards,
--
JID: hrw@jabber.org
Website: http://marcin.juszkiewicz.com.pl/
LinkedIn: http://www.linkedin.com/in/marcinjuszkiewicz
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [STABLE][PATCH 1/1] task-base: added btusb driver to list?of recommended BT drivers
2009-04-23 17:37 ` Marcin Juszkiewicz
@ 2009-04-23 17:46 ` Tom Rini
0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2009-04-23 17:46 UTC (permalink / raw)
To: openembedded-devel
On Thu, Apr 23, 2009 at 07:37:18PM +0200, Marcin Juszkiewicz wrote:
> Dnia czwartek, 23 kwietnia 2009 o 19:31:55 Tom Rini napisa??(a):
> > >> +++ b/recipes/tasks/task-base.bb
> > >> @@ -1,5 +1,5 @@
> > >> DESCRIPTION = "Merge machine and distro options to create a
> > >> basic machine task/package" -PR = "r80"
> > >> +PR = "r83"
> >
> > So it's OK to just jump PRs like this? I assume in .dev there's 3
> > changes made to task-base from 80 to 83, including this change.
>
> Dev tree has r80 -> r82 jump when Raster introduced big change on how
> splash tools work. This is not a change which was suggested for stable
> (as it is big and not wide tested). And r83 task-base in stable/2009
> will be same as r83 task-base from .dev after that patch.
OK.
Acked-by: Tom Rini <trini@embeddedalley.com>
--
Tom Rini
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-04-23 17:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-23 16:30 [STABLE][PATCH 1/1] task-base: added btusb driver to list of recommended BT drivers Marcin Juszkiewicz
2009-04-23 17:24 ` Koen Kooi
2009-04-23 17:31 ` Tom Rini
2009-04-23 17:37 ` Marcin Juszkiewicz
2009-04-23 17:46 ` [STABLE][PATCH 1/1] task-base: added btusb driver to list?of " Tom Rini
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.