All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/20] udev-cache related changes
@ 2014-08-04 18:40 Ben Shelton
  2014-08-04 18:40 ` [PATCH 01/20] udev-cache: Compress the cache Ben Shelton
                   ` (19 more replies)
  0 siblings, 20 replies; 55+ messages in thread
From: Ben Shelton @ 2014-08-04 18:40 UTC (permalink / raw)
  To: openembedded-core

This patchset contains changes to the udev-cache scripts to reduce size on
disk, to improve error reporting, and to fix bugs, and a few fixes and tweaks
to udev overall.

The following changes since commit 5a09acef73b5cfc59bbcd3e93603c99a8c078bd8:

  local.conf.sample.extended: fix example for EXTRA_USERS_PARAMS (2014-08-04 17:38:17 +0100)

are available in the git repository at:

  git://github.com/ni/openembedded-core dev/bshelton/udev_cache
  https://github.com/ni/openembedded-core/tree/dev/bshelton/udev_cache

Ben Shelton (2):
  busybox: tar: enable CONFIG_FEATURE_TAR_LONG_OPTIONS
  udev-cache: fix udev-cache changes to work with busybox tar

Richard Tollerton (18):
  udev-cache: Compress the cache
  udev-cache: choose a more descriptive cache filename
  udev-cache: Honor VERBOSE for bootup message
  udev-cache: Don't ignore errors from cache extract
  udev-cache: Remove superfluous subshell on extract
  udev-cache: Update cache tarball atomically
  udev-cache: Create cache asynchronously
  udev-cache.default: documentation update
  udev-cache: parametrize sysconf file paths
  udev-cache: parametrize tar options
  udev-cache: fix timestamp errors on systems lacking an RTC
  udev-cache: Avoid caching udev.cache or non-devfs filesystems
  udev-cache: refactor; improve verbosity and error handling
  udev-cache: don't attempt to extract cache if it doesn't exist
  udev-cache: invalidate on rules.d changes
  udev: Make build MACHINE-specific
  udev: Disable keymap support on machines lacking keyboard support
  udev: don't halt if devtmpfs can't be mounted

 meta/recipes-core/busybox/busybox/defconfig    |  2 +-
 meta/recipes-core/udev/udev.inc                |  7 ++++++
 meta/recipes-core/udev/udev/init               | 30 +++++++++++++++-----------
 meta/recipes-core/udev/udev/udev-cache         | 21 ++++++++++++++----
 meta/recipes-core/udev/udev/udev-cache.default | 18 ++++++++++++++--
 5 files changed, 58 insertions(+), 20 deletions(-)

-- 
2.0.4



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

end of thread, other threads:[~2014-08-25  1:15 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-04 18:40 [PATCH 00/20] udev-cache related changes Ben Shelton
2014-08-04 18:40 ` [PATCH 01/20] udev-cache: Compress the cache Ben Shelton
2014-08-04 19:29   ` Otavio Salvador
2014-08-04 22:44   ` Khem Raj
2014-08-04 23:45     ` Ben Shelton
2014-08-05  0:06       ` Khem Raj
2014-08-05 19:00   ` Randy MacLeod
2014-08-05 20:09     ` Otavio Salvador
2014-08-05 20:35       ` Randy MacLeod
2014-08-06  2:08         ` Ben Shelton
2014-08-22 15:24         ` Patch message guidelines and internal/corporate fields Richard Tollerton
2014-08-23  8:40           ` Richard Purdie
2014-08-24 15:33             ` Paul Eggleton
2014-08-25  1:19               ` Khem Raj
2014-08-04 18:40 ` [PATCH 02/20] udev-cache: choose a more descriptive cache filename Ben Shelton
2014-08-04 19:30   ` Otavio Salvador
2014-08-04 18:40 ` [PATCH 03/20] udev-cache: Honor VERBOSE for bootup message Ben Shelton
2014-08-04 19:30   ` Otavio Salvador
2014-08-04 18:40 ` [PATCH 04/20] udev-cache: Don't ignore errors from cache extract Ben Shelton
2014-08-04 19:32   ` Otavio Salvador
2014-08-04 18:40 ` [PATCH 05/20] busybox: tar: enable CONFIG_FEATURE_TAR_LONG_OPTIONS Ben Shelton
2014-08-04 19:33   ` Otavio Salvador
2014-08-04 18:40 ` [PATCH 06/20] udev-cache: Remove superfluous subshell on extract Ben Shelton
2014-08-04 19:33   ` Otavio Salvador
2014-08-04 18:40 ` [PATCH 07/20] udev-cache: Update cache tarball atomically Ben Shelton
2014-08-04 19:35   ` Otavio Salvador
2014-08-04 18:41 ` [PATCH 08/20] udev-cache: Create cache asynchronously Ben Shelton
2014-08-04 19:41   ` Otavio Salvador
2014-08-04 21:18     ` Richard Tollerton
2014-08-04 21:22       ` Otavio Salvador
2014-08-04 21:37         ` Richard Tollerton
2014-08-04 21:41           ` Otavio Salvador
2014-08-04 22:07             ` Richard Tollerton
2014-08-04 18:41 ` [PATCH 09/20] udev-cache.default: documentation update Ben Shelton
2014-08-04 19:42   ` Otavio Salvador
2014-08-04 18:41 ` [PATCH 10/20] udev-cache: parametrize sysconf file paths Ben Shelton
2014-08-04 19:44   ` Otavio Salvador
2014-08-04 21:38     ` Ben Shelton
2014-08-04 21:42       ` Otavio Salvador
2014-08-04 21:48         ` Ben Shelton
2014-08-04 18:41 ` [PATCH 11/20] udev-cache: parametrize tar options Ben Shelton
2014-08-04 19:44   ` Otavio Salvador
2014-08-04 21:40     ` Ben Shelton
2014-08-04 18:41 ` [PATCH 12/20] udev-cache: fix timestamp errors on systems lacking an RTC Ben Shelton
2014-08-04 18:41 ` [PATCH 13/20] udev-cache: Avoid caching udev.cache or non-devfs filesystems Ben Shelton
2014-08-04 18:41 ` [PATCH 14/20] udev-cache: refactor; improve verbosity and error handling Ben Shelton
2014-08-04 18:41 ` [PATCH 15/20] udev-cache: don't attempt to extract cache if it doesn't exist Ben Shelton
2014-08-04 18:41 ` [PATCH 16/20] udev-cache: invalidate on rules.d changes Ben Shelton
2014-08-04 18:41 ` [PATCH 17/20] udev-cache: fix udev-cache changes to work with busybox tar Ben Shelton
2014-08-04 18:41 ` [PATCH 18/20] udev: Make build MACHINE-specific Ben Shelton
2014-08-04 19:43   ` Martin Jansa
2014-08-04 18:41 ` [PATCH 19/20] udev: Disable keymap support on machines lacking keyboard support Ben Shelton
2014-08-04 19:41   ` Martin Jansa
2014-08-04 18:41 ` [PATCH 20/20] udev: don't halt if devtmpfs can't be mounted Ben Shelton
2014-08-04 19:40   ` Martin Jansa

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.