Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 0/4] Replaces udev with eudev for compatibility when using sysvinit on newer kernels
Date: Thu, 3 Mar 2016 16:36:59 +0100	[thread overview]
Message-ID: <20160303153659.GG2569@jama> (raw)
In-Reply-To: <cover.1456442768.git.alejandro.hernandez@linux.intel.com>

[-- Attachment #1: Type: text/plain, Size: 5074 bytes --]

On Thu, Feb 25, 2016 at 11:34:10PM +0000, Alejandro Hernandez wrote:
> udev has started to fail on new kernels (4.4), due to being deprecated in favor
> of systemd's udev implementation. To maintain a sysvinit alternative we also
> need to provide an alternative to udev. Eudev is a fork of systemds udev,
> this new eudev recipe provides upstream udev 220 funcitonality.
> 
> - libgudev is not provided by eudev as it was with udev before
> - We can now drop usbutils_007 since usbutils_008 is now compatible
>   also with eudev, and not only with systemd's udev
> - Adds new eudev package to maintainers.inc

is it expected that old udev package was only 0.5MB, eudev is 6MB?

Most of it is probably caused by /etc/udev/hwdb.d

> The following changes since commit 23056103c949b498c23b47579e8dd57ce78e6ed9:
> 
>   uclibc: Do not use immediate expansion operator (2016-02-22 20:42:48 +0000)
> 
> are available in the git repository at:
> 
>   git://git.yoctoproject.org/poky-contrib hsalejandro/eudev
>   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=hsalejandro/eudev
> 
> Alejandro Hernandez (4):
>   eudev: Replaces udev with eudev for compatibility when sysvinit on
>     newer kernels
>   libgudev: Fix for new eudev implementation
>   usbutils: Fix for new eudev implementation
>   maintainers.inc: Add new eudev package and change maintainership for
>     udev
> 
>  meta-yocto/conf/distro/include/maintainers.inc     |   2 +-
>  meta/conf/distro/include/default-providers.inc     |   2 +-
>  meta/recipes-bsp/usbutils/usbutils-008/iconv.patch |  41 --------
>  meta/recipes-bsp/usbutils/usbutils/iconv.patch     |  29 +++---
>  meta/recipes-bsp/usbutils/usbutils_007.bb          |  31 ------
>  meta/recipes-bsp/usbutils/usbutils_008.bb          |   5 +-
>  .../udev/{udev => eudev}/devfs-udev.rules          |   0
>  meta/recipes-core/udev/{udev => eudev}/init        |   0
>  meta/recipes-core/udev/{udev => eudev}/links.conf  |   0
>  meta/recipes-core/udev/{udev => eudev}/local.rules |   0
>  .../udev/{udev => eudev}/permissions.rules         |   0
>  meta/recipes-core/udev/{udev => eudev}/run.rules   |   0
>  meta/recipes-core/udev/{udev => eudev}/udev-cache  |   0
>  .../udev/{udev => eudev}/udev-cache.default        |   0
>  meta/recipes-core/udev/{udev => eudev}/udev.rules  |   0
>  meta/recipes-core/udev/eudev_3.1.5.bb              |  83 +++++++++++++++
>  meta/recipes-core/udev/udev.inc                    | 112 ---------------------
>  ...yboard_force_release.sh-shell-script-path.patch |  35 -------
>  ...-Add-stdint.h-as-it-was-removed-from-mtd-.patch |  29 ------
>  ...c-Makefile.am-Check-for-input.h-and-input.patch |  52 ----------
>  .../recipes-core/udev/udev/add-install-ptest.patch |  86 ----------------
>  .../udev/udev/avoid-mouse-autosuspend.patch        |  25 -----
>  .../udev/udev/fix_rule-syntax-regex-ptest.patch    |  58 -----------
>  meta/recipes-core/udev/udev/run-ptest              |   5 -
>  meta/recipes-core/udev/udev_182.bb                 |   9 --
>  meta/recipes-gnome/libgudev/libgudev_230.bb        |   3 +-
>  26 files changed, 102 insertions(+), 505 deletions(-)
>  delete mode 100644 meta/recipes-bsp/usbutils/usbutils-008/iconv.patch
>  delete mode 100644 meta/recipes-bsp/usbutils/usbutils_007.bb
>  rename meta/recipes-core/udev/{udev => eudev}/devfs-udev.rules (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/init (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/links.conf (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/local.rules (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/permissions.rules (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/run.rules (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/udev-cache (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/udev-cache.default (100%)
>  rename meta/recipes-core/udev/{udev => eudev}/udev.rules (100%)
>  create mode 100644 meta/recipes-core/udev/eudev_3.1.5.bb
>  delete mode 100644 meta/recipes-core/udev/udev.inc
>  delete mode 100644 meta/recipes-core/udev/udev/0001-Fixing-keyboard_force_release.sh-shell-script-path.patch
>  delete mode 100644 meta/recipes-core/udev/udev/0001-mtd_probe.h-Add-stdint.h-as-it-was-removed-from-mtd-.patch
>  delete mode 100644 meta/recipes-core/udev/udev/0002-configure.ac-Makefile.am-Check-for-input.h-and-input.patch
>  delete mode 100644 meta/recipes-core/udev/udev/add-install-ptest.patch
>  delete mode 100644 meta/recipes-core/udev/udev/avoid-mouse-autosuspend.patch
>  delete mode 100644 meta/recipes-core/udev/udev/fix_rule-syntax-regex-ptest.patch
>  delete mode 100644 meta/recipes-core/udev/udev/run-ptest
>  delete mode 100644 meta/recipes-core/udev/udev_182.bb
> 
> -- 
> 2.6.2
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

  parent reply	other threads:[~2016-03-03 15:34 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-25 23:34 [PATCH 0/4] Replaces udev with eudev for compatibility when using sysvinit on newer kernels Alejandro Hernandez
2016-02-25 23:34 ` [PATCH 1/4] eudev: " Alejandro Hernandez
2016-02-25 23:34 ` [PATCH 2/4] libgudev: Fix for new eudev implementation Alejandro Hernandez
2016-02-25 23:34 ` [PATCH 3/4] usbutils: " Alejandro Hernandez
2016-02-25 23:34 ` [PATCH 4/4] maintainers.inc: Add new eudev package and change maintainership for udev Alejandro Hernandez
2016-02-26  8:24 ` [PATCH 0/4] Replaces udev with eudev for compatibility when using sysvinit on newer kernels Andre McCurdy
2016-02-26 15:40   ` Alejandro Hernandez
2016-02-26 15:45     ` Alejandro Hernandez
2016-02-26 15:45       ` Burton, Ross
2016-02-27  8:32 ` Richard Purdie
2016-02-29 14:40   ` Alejandro Hernandez
2016-03-03 15:36 ` Martin Jansa [this message]
2016-03-03 16:27   ` Burton, Ross
2016-03-03 19:25     ` Alejandro Hernandez

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=20160303153659.GG2569@jama \
    --to=martin.jansa@gmail.com \
    --cc=alejandro.hernandez@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox