All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Le Bihan <eric.le.bihan.dev@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [autobuild.buildroot.net] Build results for 2018-12-09
Date: Mon, 10 Dec 2018 23:47:40 +0100	[thread overview]
Message-ID: <20181210224740.GA32623@itchy> (raw)
In-Reply-To: <20181210070023.7542C207D4@mail.bootlin.com>

Hi!

On 2018-12-10 08:00, Thomas Petazzoni wrote:

>         i686 |                    eudev-3.2.7 | NOK | http://autobuild.buildroot.net/results/e9d94084be8ed3296ba63cffdb9d69ffcc3b7140 |

From the log:

```
udev-builtin-input_id.c:52:19: error: 'BTN_DPAD_UP' undeclared here (not
in a function)
         { KEY_OK, BTN_DPAD_UP },
```

It looks like this one (as well as the one for mips) is related to this
commit [1] in systemd's udev about Linux 3.11 compatibility:

- the i686 defconfig mentions BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_2=y
- the mips one has BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_9=y.

Adding the following in src/shared/missing.h solves the issue:

```
/* available as of kernel 3.11 */
#ifndef BTN_DPAD_UP
#define BTN_DPAD_UP 0x220
#define BTN_DPAD_RIGHT 0x223
#endif /* BTN_DPAD_UP */
```

I'll shortly send a proper patch.

[1] https://github.com/systemd/systemd/pull/6267

Regards,

--
ELB

      reply	other threads:[~2018-12-10 22:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-10  7:00 [Buildroot] [autobuild.buildroot.net] Build results for 2018-12-09 Thomas Petazzoni
2018-12-10 22:47 ` Eric Le Bihan [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181210224740.GA32623@itchy \
    --to=eric.le.bihan.dev@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.