All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog
@ 2021-07-27  7:20 Fabrice Fontaine
  2021-07-27  7:43 ` Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2021-07-27  7:20 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine, Marcin Bis

Build of hid without hog is broken since commit
fb9fc969d91f69851b4c70dba512b607e52bda7b:

/home/buildroot/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/i586-buildroot-linux-musl/9.3.0/../../../../i586-buildroot-linux-musl/bin/ld: profiles/input/bluetoothd-manager.o: in function `input_init':
manager.c:(.text+0x2fd): undefined reference to `input_set_auto_sec'

Fixes:
 - http://autobuild.buildroot.org/results/9222879c9fe958e01e33f69531270355ea016d17

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/bluez5_utils/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/bluez5_utils/Config.in b/package/bluez5_utils/Config.in
index 9f20bf83ac..f2b63b0a1c 100644
--- a/package/bluez5_utils/Config.in
+++ b/package/bluez5_utils/Config.in
@@ -78,6 +78,7 @@ config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
 config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HID
 	bool "build hid plugin"
 	default y
+	select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HOG
 	help
 	  Build plugin for HID (input) profiles.
 
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog
  2021-07-27  7:20 [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog Fabrice Fontaine
@ 2021-07-27  7:43 ` Thomas Petazzoni
  2021-07-27  7:57 ` Michael Nosthoff via buildroot
  2021-07-28 19:18 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2021-07-27  7:43 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Michael Nosthoff, Marcin Bis, buildroot

On Tue, 27 Jul 2021 09:20:11 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Build of hid without hog is broken since commit
> fb9fc969d91f69851b4c70dba512b607e52bda7b:
> 
> /home/buildroot/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/i586-buildroot-linux-musl/9.3.0/../../../../i586-buildroot-linux-musl/bin/ld: profiles/input/bluetoothd-manager.o: in function `input_init':
> manager.c:(.text+0x2fd): undefined reference to `input_set_auto_sec'
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/9222879c9fe958e01e33f69531270355ea016d17
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

This should also be probably be reported as a bug to upstream bluez, it
is not normal that a combination of ./configure options leads to a
build that fails.

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog
  2021-07-27  7:20 [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog Fabrice Fontaine
  2021-07-27  7:43 ` Thomas Petazzoni
@ 2021-07-27  7:57 ` Michael Nosthoff via buildroot
  2021-07-28 19:18 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Nosthoff via buildroot @ 2021-07-27  7:57 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot; +Cc: Marcin Bis


On 27.07.21 09:20, Fabrice Fontaine wrote:
> Build of hid without hog is broken since commit
> fb9fc969d91f69851b4c70dba512b607e52bda7b:
>
> /home/buildroot/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/i586-buildroot-linux-musl/9.3.0/../../../../i586-buildroot-linux-musl/bin/ld: profiles/input/bluetoothd-manager.o: in function `input_init':
> manager.c:(.text+0x2fd): undefined reference to `input_set_auto_sec'
>
> Fixes:
>   - http://autobuild.buildroot.org/results/9222879c9fe958e01e33f69531270355ea016d17
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>   package/bluez5_utils/Config.in | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/package/bluez5_utils/Config.in b/package/bluez5_utils/Config.in
> index 9f20bf83ac..f2b63b0a1c 100644
> --- a/package/bluez5_utils/Config.in
> +++ b/package/bluez5_utils/Config.in
> @@ -78,6 +78,7 @@ config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
>   config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HID
>   	bool "build hid plugin"
>   	default y
> +	select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HOG
>   	help
>   	  Build plugin for HID (input) profiles.
>   

argh, missed that... thanks for fixing!

Reviewed-by: Michael Nosthoff <buildroot@heine.tech>

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog
  2021-07-27  7:20 [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog Fabrice Fontaine
  2021-07-27  7:43 ` Thomas Petazzoni
  2021-07-27  7:57 ` Michael Nosthoff via buildroot
@ 2021-07-28 19:18 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2021-07-28 19:18 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Michael Nosthoff, Marcin Bis, buildroot

On Tue, 27 Jul 2021 09:20:11 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Build of hid without hog is broken since commit
> fb9fc969d91f69851b4c70dba512b607e52bda7b:
> 
> /home/buildroot/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/i586-buildroot-linux-musl/9.3.0/../../../../i586-buildroot-linux-musl/bin/ld: profiles/input/bluetoothd-manager.o: in function `input_init':
> manager.c:(.text+0x2fd): undefined reference to `input_set_auto_sec'
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/9222879c9fe958e01e33f69531270355ea016d17
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/bluez5_utils/Config.in | 1 +
>  1 file changed, 1 insertion(+)

I have applied, but as I said earlier, I think this should be fixed
upstream, and depending on the upstream fix, perhaps this needs to be
reverted in Buildroot, or changed.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-07-28 19:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-27  7:20 [Buildroot] [PATCH 1/1] package/bluez5_utils: hid needs hog Fabrice Fontaine
2021-07-27  7:43 ` Thomas Petazzoni
2021-07-27  7:57 ` Michael Nosthoff via buildroot
2021-07-28 19:18 ` Thomas Petazzoni

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.