All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/15 v5] Introduce libudev (branch yem/libudev2)
@ 2014-09-01 13:38 Yann E. MORIN
  2014-09-01 13:38 ` [Buildroot] [PATCH 01/15 v5] support/gen-manual-lists.py: rework generating the virtual package list Yann E. MORIN
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Yann E. MORIN @ 2014-09-01 13:38 UTC (permalink / raw)
  To: buildroot

Hello All!

This series introduces the possibility to just build and install libudev,
without requiring that the /dev management be handled by eudev or systemd.

A lot of packages that have a dependency on udev, in fact only require a
libudev, not a udev daemon. That's the case for e.g. libinput, libcec,
mesa3d...

The series contains:

  - a patch to fix generating the list of virtual packages for the manual

  - three patches to introduce the libudev virtual package, and its
    providers: eudev and systemd

  - a patch to make eudev only build libudev if /dev management is
    handled by neither eudev nor systemd

  - four patches to convert packages to depend on libusb instead of a
    udev daemon; those packages have been confirmed by Bernd to indeed
    only need libudev and not a udev daemon

  - five RFC patches to convert packages we are not sure whether they
    would be happy with only a libudev, and which would need run-time
    testing to check

Not all packages that reference udev have been switched over to depend
on libudev, though, since it is unclear to me whether they require a
udev daemon, or would be happy with just libudev.

On your keyboards, get set, ready... Comment! :-)

Changes v4 -> v5:
  - bump to eudev 1.10  (Bernd)

Changes v3 -> v4:
  - do not remove the prompts for eudev and systemd  (Thomas P.)
  - patch to convert xserver_xorg-server dropped  (Bernd)

Changes RFCv2 -> v3:
  - some typoes  (Samuel)
  - misc fixes in gen-manual-lists.py  (Samuel)

Changes RFCv1 -> RFCv2:
  - have eudev and systemd be providers for libudev, instead of having
    udev be the provider  (Thomas, on IRC)
  - fix the manual lists after bugs were uncovered with the removal of
    the eudev and systemd prompts
  - convert some packages


Regards,
Yann E. MORIN.


The following changes since commit fcd720dfcf702d796fbc625b9abc4c06cb848d84:

  Update for 2014.08 (2014-09-01 13:20:56 +0200)

are available in the git repository at:

  git://ymorin.is-a-geek.org/buildroot yem/libudev2

for you to fetch changes up to 3b319ddea8c364db04b3553fa6433c3d843fe5a0:

  [RFC] package/weston: needs libudev, not a udev daemon (2014-09-01 15:31:17 +0200)

----------------------------------------------------------------
Yann E. MORIN (15):
      support/gen-manual-lists.py: rework generating the virtual package list
      package/libudev: new virtual package
      package/eudev: is a provider for libudev
      package/systemd: is a provider for libudev
      package/eudev: bump to 1.10
      package/eudev: split udev/libudev
      package/mesa3d: depends on libudev, not udev
      package/libcec: needs libudev, not a udev daemon
      package/libdrm: can also use only libudev
      package/xdriver_xf86-input-evdev: needs libudev, not a udev daemon
      [RFC] package/libatasmart: needs libudev, not a udev daemon
      [RFC] package/libinput: needs libudev, not a udev daemon
      [RFC] package/libusb: needs libudev, not a udev daemon
      [RFC] package/vlc: needs libudev, not a udev daemon
      [RFC] package/weston: needs libudev, not a udev daemon

 package/Config.in                                  |  1 +
 package/eudev/Config.in                            | 36 +++++++--
 ...y-use-pragma-for-ignoring-diagnostics-if-.patch |  8 +-
 package/eudev/eudev.mk                             | 55 +++++++++++--
 package/libatasmart/Config.in                      |  4 +-
 package/libcec/libcec.mk                           |  4 +-
 package/libdrm/libdrm.mk                           |  4 +-
 package/libinput/Config.in                         |  6 +-
 package/libinput/libinput.mk                       |  2 +-
 package/libudev/Config.in                          |  6 ++
 package/libudev/libudev.mk                         |  7 ++
 package/libusb/libusb.mk                           |  5 +-
 package/mesa3d/Config.in                           |  6 +-
 package/mesa3d/mesa3d.mk                           |  4 +-
 package/systemd/Config.in                          |  4 +
 package/systemd/systemd.mk                         |  2 +-
 package/vlc/vlc.mk                                 |  4 +-
 package/weston/Config.in                           |  6 +-
 package/weston/weston.mk                           |  2 +-
 package/x11r7/xdriver_xf86-input-evdev/Config.in   |  5 +-
 .../xdriver_xf86-input-evdev.mk                    |  3 +-
 package/xbmc/Config.in                             |  6 +-
 support/scripts/gen-manual-lists.py                | 93 ++++++++++++++++++----
 system/Config.in                                   | 26 ++++--
 24 files changed, 232 insertions(+), 67 deletions(-)
 create mode 100644 package/libudev/Config.in
 create mode 100644 package/libudev/libudev.mk

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2014-10-12  7:53 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-01 13:38 [Buildroot] [PATCH 0/15 v5] Introduce libudev (branch yem/libudev2) Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 01/15 v5] support/gen-manual-lists.py: rework generating the virtual package list Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 02/15 v5] package/libudev: new virtual package Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 03/15 v5] package/eudev: is a provider for libudev Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 04/15 v5] package/systemd: " Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 05/15 v5] package/eudev: bump to 1.10 Yann E. MORIN
2014-10-12  7:53   ` Peter Korsgaard
2014-09-01 13:38 ` [Buildroot] [PATCH 06/15 v5] package/eudev: split udev/libudev Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 07/15 v5] package/mesa3d: depends on libudev, not udev Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 08/15 v5] package/libcec: needs libudev, not a udev daemon Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 09/15 v5] package/libdrm: can also use only libudev Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 10/15 v5] package/xdriver_xf86-input-evdev: needs libudev, not a udev daemon Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 11/15 v5] [RFC] package/libatasmart: " Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 12/15 v5] [RFC] package/libinput: " Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 13/15 v5] [RFC] package/libusb: " Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 14/15 v5] [RFC] package/vlc: " Yann E. MORIN
2014-09-01 13:38 ` [Buildroot] [PATCH 15/15 v5] [RFC] package/weston: " Yann E. MORIN
2014-09-06 16:07 ` [Buildroot] [PATCH 0/15 v5] Introduce libudev (branch yem/libudev2) Bernd Kuhls

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.