All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/6] Add support for udisks package.
@ 2012-12-21 21:51 Marek Belisko
  2012-12-21 21:51 ` [Buildroot] [PATCH 1/6] sg3_utils: new package Marek Belisko
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Marek Belisko @ 2012-12-21 21:51 UTC (permalink / raw)
  To: buildroot

This patches add support for udisks and dependencies + fixes.

Patches for sg3_utils, polkit and udisks was done by
Thomas Petazzoni and overtaken from
http://free-electrons.com/~thomas/pub/udisks-buildroot/.
They were fixed to work with latest buildroot.

udisks with lvm2 support (default n) have dependency on devmapper
and lvm2 application library. There are two fixes:

- correctly install devmapper.pc to staging/target
- add support for application library

Marek Belisko (6):
  sg3_utils: new package
  polkit: new package
  libatasmart: new package.
  lvm2: Install devmapper.pc to staging/target pkgconfig directory.
  lvm2: Compile and install application library.
  udisks: new package

 package/Config.in                  |    4 ++++
 package/libatasmart/Config.in      |   11 +++++++++++
 package/libatasmart/libatasmart.mk |   14 ++++++++++++++
 package/lvm2/Config.in             |    6 ++++++
 package/lvm2/lvm2.mk               |    8 +++++++-
 package/polkit/Config.in           |    8 ++++++++
 package/polkit/polkit.mk           |   18 ++++++++++++++++++
 package/sg3_utils/Config.in        |   15 +++++++++++++++
 package/sg3_utils/sg3_utils.mk     |   33 +++++++++++++++++++++++++++++++++
 package/udisks/Config.in           |   32 ++++++++++++++++++++++++++++++++
 package/udisks/udisks.mk           |   26 ++++++++++++++++++++++++++
 11 files changed, 174 insertions(+), 1 deletion(-)
 create mode 100644 package/libatasmart/Config.in
 create mode 100644 package/libatasmart/libatasmart.mk
 create mode 100644 package/polkit/Config.in
 create mode 100644 package/polkit/polkit.mk
 create mode 100644 package/sg3_utils/Config.in
 create mode 100644 package/sg3_utils/sg3_utils.mk
 create mode 100644 package/udisks/Config.in
 create mode 100644 package/udisks/udisks.mk

-- 
1.7.10.4

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Buildroot] [PATCH 0/6] Add support for udisks package.
@ 2012-12-21 21:44 Marek Belisko
  2012-12-21 21:44 ` [Buildroot] [PATCH 1/6] sg3_utils: new package Marek Belisko
  0 siblings, 1 reply; 14+ messages in thread
From: Marek Belisko @ 2012-12-21 21:44 UTC (permalink / raw)
  To: buildroot

This patches add support for udisks and dependencies + fixes.

Patches for sg3_utils, polkit and udisks was done by
Thomas Petazzoni and overtaken from
http://free-electrons.com/~thomas/pub/udisks-buildroot/.
They were fixed to work with latest buildroot.

udisks with lvm2 support (default n) have dependency on devmapper
and lvm2 application library. There are two fixes:

- correctly install devmapper.pc to staging/target
- add support for application library

Marek Belisko (6):
  sg3_utils: new package
  polkit: new package
  libatasmart: new package.
  lvm2: Install devmapper.pc to staging/target pkgconfig directory.
  lvm2: Compile and install application library.
  udisks: new package

 package/Config.in                  |    4 ++++
 package/libatasmart/Config.in      |   11 +++++++++++
 package/libatasmart/libatasmart.mk |   14 ++++++++++++++
 package/lvm2/Config.in             |    6 ++++++
 package/lvm2/lvm2.mk               |    8 +++++++-
 package/polkit/Config.in           |    8 ++++++++
 package/polkit/polkit.mk           |   18 ++++++++++++++++++
 package/sg3_utils/Config.in        |   15 +++++++++++++++
 package/sg3_utils/sg3_utils.mk     |   33 +++++++++++++++++++++++++++++++++
 package/udisks/Config.in           |   32 ++++++++++++++++++++++++++++++++
 package/udisks/udisks.mk           |   26 ++++++++++++++++++++++++++
 11 files changed, 174 insertions(+), 1 deletion(-)
 create mode 100644 package/libatasmart/Config.in
 create mode 100644 package/libatasmart/libatasmart.mk
 create mode 100644 package/polkit/Config.in
 create mode 100644 package/polkit/polkit.mk
 create mode 100644 package/sg3_utils/Config.in
 create mode 100644 package/sg3_utils/sg3_utils.mk
 create mode 100644 package/udisks/Config.in
 create mode 100644 package/udisks/udisks.mk

-- 
1.7.10.4

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

end of thread, other threads:[~2012-12-22 23:27 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-21 21:51 [Buildroot] [PATCH 0/6] Add support for udisks package Marek Belisko
2012-12-21 21:51 ` [Buildroot] [PATCH 1/6] sg3_utils: new package Marek Belisko
2012-12-22 15:14   ` Thomas Petazzoni
2012-12-21 21:51 ` [Buildroot] [PATCH 2/6] polkit: " Marek Belisko
2012-12-22 15:18   ` Thomas Petazzoni
2012-12-22 21:54     ` Belisko Marek
2012-12-22 23:27       ` Thomas Petazzoni
2012-12-22 15:19   ` Thomas Petazzoni
2012-12-22 22:10     ` Belisko Marek
2012-12-21 21:51 ` [Buildroot] [PATCH 3/6] libatasmart: " Marek Belisko
2012-12-21 21:51 ` [Buildroot] [PATCH 4/6] lvm2: Install devmapper.pc to staging/target pkgconfig directory Marek Belisko
2012-12-21 21:51 ` [Buildroot] [PATCH 5/6] lvm2: Compile and install application library Marek Belisko
2012-12-21 21:51 ` [Buildroot] [PATCH 6/6] udisks: new package Marek Belisko
  -- strict thread matches above, loose matches on Subject: below --
2012-12-21 21:44 [Buildroot] [PATCH 0/6] Add support for udisks package Marek Belisko
2012-12-21 21:44 ` [Buildroot] [PATCH 1/6] sg3_utils: new package Marek Belisko

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.