Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCHv3 00/74] Misc package improvements
@ 2014-11-30 14:17 Thomas Petazzoni
  2014-11-30 14:17 ` [Buildroot] [PATCHv3 01/74] vsftpd: use <pkg>_INSTALL_INIT_SYSV and rename init script Thomas Petazzoni
                   ` (74 more replies)
  0 siblings, 75 replies; 227+ messages in thread
From: Thomas Petazzoni @ 2014-11-30 14:17 UTC (permalink / raw)
  To: buildroot

Hello,

This series does miscellaneous improvements to packages, mainly:

 * Convert the remaining init script installation logic to
   <pkg>_INSTALL_INIT_SYSV.

 * Do not install or remove man pages in packages, since we don't care
   about documentation in the target.

 * Fixup a number of "for" loops to properly bail out if one iteration
   of the loop fails instead of silently ignoring the error. Not all
   for loops have been inspected yet, so it's only a partial work.

 * Install init scripts and configuration files unconditionally, even
   though the skeleton has installed its own version of the
   file. People are encouraged to use the rootfs overlay or the
   post-build script mechanisms.

 * Misc other small stuff.

Changes since v2:

 - Fix commit title of the commit making the dmraid init script
   installation unconditional, it was referring to busybox while the
   commit is about dmraid. Noticed by Baruch.

 - Fix commit messages of netatalk, gpsd, samba, input-event-daemon,
   which were missing some words. Noticed by Baruch.

Changes since v1:

 - Rebase on top of the next branch.
 - Add more patches to remove the conditional installations.

Best regards,

Thomas

Thomas Petazzoni (74):
  vsftpd: use <pkg>_INSTALL_INIT_SYSV and rename init script
  vsftpd: don't install manpages
  vsftpd: rename patches to the new naming convention
  radvd: use <pkg>_INSTALL_INIT_SYSV
  thttpd: use the <pkg>_INSTALL_INIT_SYSV mechanism
  busybox: use <pkg>_INSTALL_INIT_SYSV mechanism
  portmap: use <pkg>_INSTALL_INIT_SYSV mechanism
  portmap: don't install manpages
  portmap: improve installation of binaries
  stunnel: use the <pkg>_INSTALL_INIT_SYSV mechanism
  gdk-pixbuf: use <pkg>_INSTALL_INIT_SYSV mechanism
  proftpd: use <pkg>_INSTALL_INIT_SYSV mechanism
  samba: use <pkg>_INSTALL_INIT_SYSV mechanism
  input-event-daemon: use <pkg>_INSTALL_INIT_SYSV mechanism
  ifplugd: use <pkg>_INSTALL_INIT_SYSV mechanism
  nfs-utils: use <pkg>_INSTALL_INIT_SYSV mechanism
  netatalk: use <pkg>_INSTALL_INIT_SYSV mechanism
  mongoose: use <pkg>_INSTALL_INIT_SYSV mechanism
  gpsd: use <pkg>_INSTALL_INIT_SYSV mechanism
  olsr: use <pkg>_INSTALL_INIT_SYSV mechanism
  pango: use <pkg>_INSTALL_INIT_SYSV mechanism
  xapp_xdm: use <pkg>_INSTALL_INIT_SYSV mechanism
  tftpd: use <pkg>_INSTALL_INIT_SYSV mechanism
  openvpn: use <pkg>_INSTALL_INIT_SYSV mechanism
  tinyhttpd: use <pkg>_INSTALL_INIT_SYSV mechanism
  at: use <pkg>_INSTALL_INIT_SYSV mechanism
  mpd: use <pkg>_INSTALL_INIT_SYSV mechanism
  snowball-init: use <pkg>_INSTALL_INIT_SYSV mechanism
  wipe: don't install man pages
  ndisc6: remove man page related code
  tree: don't install man page
  iostat: don't install man page
  iostat: remove legacy code
  pptp-linux: don't install man page
  gnupg: don't both removing a man page
  rp-pppoe: don't install man pages
  rp-pppoe: bail out of installation fails
  alsa-utils: add error handling to for loop
  coreutils: add error handling to for loop
  ebtables: add error handling to for loop
  flot: add error handling to for loop
  googlefontdirectory: add error handling to for loop
  gptfdisk: add error handling to for loop
  irda-utils: add error handling to for loop
  jimtcl: add error handling to for loop
  live555: add error handling to for loop
  lockfile-progs: add error handling to for loop
  qt5base: add error handling to for loop
  qtuio: add error handling to for loop
  sound-theme-borealis: add error handling to for loop
  xenomai: add error handling to for loop
  aiccu: install init script and config file unconditionally
  busybox: install init script and config file unconditionally
  dmraid: install init script unconditionally
  iucode-tool: install init script unconditionally
  lighttpd: install init script and config file unconditionally
  rpcbind: install init script unconditionally
  rsyslog: install init script and config file unconditionally
  transmission: install init script unconditionally
  stunnel: install configuration file unconditionally
  input-event-daemon: install configuration file unconditionally
  fluxbox: install session file unconditionally
  proftpd: install configuration file unconditionally
  samba: install configuration file unconditionally
  logrotate: install configuration file unconditionally
  nss-mdns: install configuration file unconditionally
  ifplugd: install configuration files unconditionally
  sysklogd: install configuration file unconditionally
  screen: install configuration file unconditionally
  usbmount: install configuration file unconditionally
  php: install configuration file unconditionally
  inadyn: install configuration file unconditionally
  mpd: install configuration file unconditionally
  toolchain: install nssswitch.conf configuration file unconditionally

 package/aiccu/aiccu.mk                             |  6 +--
 package/alsa-utils/alsa-utils.mk                   |  2 +-
 package/at/at.mk                                   |  4 +-
 package/busybox/busybox.mk                         | 35 ++++++++--------
 package/coreutils/coreutils.mk                     |  2 +-
 package/dmraid/dmraid.mk                           |  5 +--
 package/ebtables/ebtables.mk                       |  2 +-
 package/flot/flot.mk                               |  2 +-
 package/fluxbox/fluxbox.mk                         |  4 +-
 package/gdk-pixbuf/gdk-pixbuf.mk                   |  4 +-
 package/gnupg/gnupg.mk                             |  3 +-
 package/googlefontdirectory/googlefontdirectory.mk |  2 +-
 package/gpsd/gpsd.mk                               |  9 +++--
 package/gptfdisk/gptfdisk.mk                       |  2 +-
 package/ifplugd/ifplugd.mk                         | 19 +++++----
 package/inadyn/inadyn.mk                           |  6 +--
 package/input-event-daemon/input-event-daemon.mk   | 13 +++---
 package/iostat/iostat.mk                           |  4 --
 package/irda-utils/irda-utils.mk                   |  2 +-
 package/iucode-tool/iucode-tool.mk                 |  5 +--
 package/jimtcl/jimtcl.mk                           |  2 +-
 package/lighttpd/lighttpd.mk                       | 46 ++++++++--------------
 package/live555/live555.mk                         |  2 +-
 package/lockfile-progs/lockfile-progs.mk           |  2 +-
 package/logrotate/logrotate.mk                     |  4 +-
 package/mongoose/mongoose.mk                       |  3 ++
 package/mpd/mpd.mk                                 | 12 +++---
 package/ndisc6/ndisc6.mk                           |  7 +---
 package/netatalk/netatalk.mk                       |  9 ++---
 package/nfs-utils/nfs-utils.mk                     |  9 +++--
 package/nss-mdns/nss-mdns.mk                       |  4 +-
 package/olsr/olsr.mk                               |  5 ++-
 package/openvpn/openvpn.mk                         |  3 ++
 package/pango/pango.mk                             |  4 +-
 package/php/php.mk                                 |  6 +--
 package/portmap/portmap.mk                         | 14 +++----
 package/pptp-linux/pptp-linux.mk                   |  1 -
 package/proftpd/proftpd.mk                         | 11 +++---
 package/qt5/qt5base/qt5base.mk                     |  2 +-
 package/qtuio/qtuio.mk                             |  6 +--
 package/radvd/radvd.mk                             |  6 +--
 package/rp-pppoe/rp-pppoe.mk                       |  5 +--
 package/rpcbind/rpcbind.mk                         |  5 +--
 package/rsyslog/rsyslog.mk                         | 14 +++----
 package/samba/samba.mk                             | 17 ++++----
 package/screen/screen.mk                           |  4 +-
 package/snowball-init/snowball-init.mk             |  2 +-
 .../sound-theme-borealis/sound-theme-borealis.mk   |  2 +-
 package/stunnel/stunnel.mk                         | 14 ++++---
 package/sysklogd/sysklogd.mk                       |  6 +--
 package/tftpd/tftpd.mk                             |  5 ++-
 package/thttpd/thttpd.mk                           |  7 +++-
 package/tinyhttpd/tinyhttpd.mk                     |  5 ++-
 package/transmission/transmission.mk               |  5 +--
 package/tree/tree.mk                               |  2 -
 package/usbmount/usbmount.mk                       |  4 +-
 ...px-builddef.patch => 0001-utmpx-builddef.patch} |  0
 ...efile.patch => 0002-dont-force-largefile.patch} |  0
 package/vsftpd/{vsftpd-init => S70vsftpd}          |  0
 package/vsftpd/vsftpd.mk                           | 11 ++----
 package/wipe/wipe.mk                               |  1 -
 package/x11r7/xapp_xdm/xapp_xdm.mk                 |  4 +-
 package/xenomai/xenomai.mk                         |  2 +-
 toolchain/toolchain.mk                             |  6 +--
 64 files changed, 177 insertions(+), 233 deletions(-)
 rename package/vsftpd/{vsftpd-0001-utmpx-builddef.patch => 0001-utmpx-builddef.patch} (100%)
 rename package/vsftpd/{vsftpd-dont-force-largefile.patch => 0002-dont-force-largefile.patch} (100%)
 rename package/vsftpd/{vsftpd-init => S70vsftpd} (100%)

-- 
2.1.0

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

end of thread, other threads:[~2014-12-01 23:43 UTC | newest]

Thread overview: 227+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-30 14:17 [Buildroot] [PATCHv3 00/74] Misc package improvements Thomas Petazzoni
2014-11-30 14:17 ` [Buildroot] [PATCHv3 01/74] vsftpd: use <pkg>_INSTALL_INIT_SYSV and rename init script Thomas Petazzoni
2014-11-30 14:45   ` Yann E. MORIN
2014-12-01 21:35   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 02/74] vsftpd: don't install manpages Thomas Petazzoni
2014-11-30 14:46   ` Yann E. MORIN
2014-12-01 21:35   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 03/74] vsftpd: rename patches to the new naming convention Thomas Petazzoni
2014-11-30 14:46   ` Yann E. MORIN
2014-12-01 21:35   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 04/74] radvd: use <pkg>_INSTALL_INIT_SYSV Thomas Petazzoni
2014-11-30 14:47   ` Yann E. MORIN
2014-12-01 21:36   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 05/74] thttpd: use the <pkg>_INSTALL_INIT_SYSV mechanism Thomas Petazzoni
2014-11-30 14:48   ` Yann E. MORIN
2014-12-01 21:37   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 06/74] busybox: use " Thomas Petazzoni
2014-11-30 14:55   ` Yann E. MORIN
2014-11-30 17:23     ` Yann E. MORIN
2014-12-01 21:38   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 07/74] portmap: " Thomas Petazzoni
2014-11-30 14:56   ` Yann E. MORIN
2014-12-01 21:42   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 08/74] portmap: don't install manpages Thomas Petazzoni
2014-11-30 14:57   ` Yann E. MORIN
2014-12-01 21:44   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 09/74] portmap: improve installation of binaries Thomas Petazzoni
2014-11-30 14:59   ` Yann E. MORIN
2014-12-01 21:45   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 10/74] stunnel: use the <pkg>_INSTALL_INIT_SYSV mechanism Thomas Petazzoni
2014-11-30 15:04   ` Yann E. MORIN
2014-11-30 17:25     ` Yann E. MORIN
2014-12-01 21:46   ` Peter Korsgaard
2014-11-30 14:17 ` [Buildroot] [PATCHv3 11/74] gdk-pixbuf: use " Thomas Petazzoni
2014-11-30 15:05   ` Yann E. MORIN
2014-12-01 21:48   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 12/74] proftpd: " Thomas Petazzoni
2014-11-30 15:06   ` Yann E. MORIN
2014-12-01 21:50   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 13/74] samba: " Thomas Petazzoni
2014-11-30 15:09   ` Yann E. MORIN
2014-12-01 21:50   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 14/74] input-event-daemon: " Thomas Petazzoni
2014-11-30 15:11   ` Yann E. MORIN
2014-12-01 21:51   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 15/74] ifplugd: " Thomas Petazzoni
2014-11-30 15:13   ` Yann E. MORIN
2014-12-01 21:52   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 16/74] nfs-utils: " Thomas Petazzoni
2014-11-30 15:28   ` Yann E. MORIN
2014-12-01 21:53   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 17/74] netatalk: " Thomas Petazzoni
2014-11-30 15:28   ` Yann E. MORIN
2014-12-01 21:54   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 18/74] mongoose: " Thomas Petazzoni
2014-11-30 15:29   ` Yann E. MORIN
2014-12-01 21:55   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 19/74] gpsd: " Thomas Petazzoni
2014-11-30 15:38   ` Yann E. MORIN
2014-12-01 21:59     ` Peter Korsgaard
2014-12-01 21:57   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 20/74] olsr: " Thomas Petazzoni
2014-11-30 15:39   ` Yann E. MORIN
2014-12-01 21:59   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 21/74] pango: " Thomas Petazzoni
2014-11-30 15:39   ` Yann E. MORIN
2014-12-01 22:00   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 22/74] xapp_xdm: " Thomas Petazzoni
2014-11-30 15:40   ` Yann E. MORIN
2014-12-01 22:00   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 23/74] tftpd: " Thomas Petazzoni
2014-11-30 15:41   ` Yann E. MORIN
2014-12-01 22:02   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 24/74] openvpn: " Thomas Petazzoni
2014-11-30 15:45   ` Yann E. MORIN
2014-12-01 22:05     ` Peter Korsgaard
2014-12-01 22:06   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 25/74] tinyhttpd: " Thomas Petazzoni
2014-11-30 15:46   ` Yann E. MORIN
2014-12-01 22:06   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 26/74] at: " Thomas Petazzoni
2014-11-30 16:57   ` Yann E. MORIN
2014-12-01 22:07   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 27/74] mpd: " Thomas Petazzoni
2014-11-30 16:58   ` Yann E. MORIN
2014-12-01 22:07   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 28/74] snowball-init: " Thomas Petazzoni
2014-11-30 16:59   ` Yann E. MORIN
2014-12-01 22:07   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 29/74] wipe: don't install man pages Thomas Petazzoni
2014-11-30 17:00   ` Yann E. MORIN
2014-12-01 22:10     ` Peter Korsgaard
2014-12-01 22:09   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 30/74] ndisc6: remove man page related code Thomas Petazzoni
2014-11-30 17:05   ` Yann E. MORIN
2014-12-01 22:14   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 31/74] tree: don't install man page Thomas Petazzoni
2014-11-30 17:05   ` Yann E. MORIN
2014-12-01 22:15   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 32/74] iostat: " Thomas Petazzoni
2014-11-30 17:06   ` Yann E. MORIN
2014-12-01 22:16   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 33/74] iostat: remove legacy code Thomas Petazzoni
2014-11-30 17:07   ` Yann E. MORIN
2014-12-01 22:17   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 34/74] pptp-linux: don't install man page Thomas Petazzoni
2014-11-30 17:07   ` Yann E. MORIN
2014-12-01 22:18   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 35/74] gnupg: don't both removing a " Thomas Petazzoni
2014-11-30 17:08   ` Yann E. MORIN
2014-12-01 22:22   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 36/74] rp-pppoe: don't install man pages Thomas Petazzoni
2014-11-30 17:09   ` Yann E. MORIN
2014-12-01 22:23   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 37/74] rp-pppoe: bail out of installation fails Thomas Petazzoni
2014-11-30 17:10   ` Yann E. MORIN
2014-12-01 22:24   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 38/74] alsa-utils: add error handling to for loop Thomas Petazzoni
2014-11-30 17:10   ` Yann E. MORIN
2014-12-01 22:25   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 39/74] coreutils: " Thomas Petazzoni
2014-11-30 17:11   ` Yann E. MORIN
2014-12-01 22:29   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 40/74] ebtables: " Thomas Petazzoni
2014-11-30 17:12   ` Yann E. MORIN
2014-12-01 22:30   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 41/74] flot: " Thomas Petazzoni
2014-11-30 17:12   ` Yann E. MORIN
2014-12-01 22:30   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 42/74] googlefontdirectory: " Thomas Petazzoni
2014-11-30 17:13   ` Yann E. MORIN
2014-12-01 22:31   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 43/74] gptfdisk: " Thomas Petazzoni
2014-11-30 17:13   ` Yann E. MORIN
2014-12-01 22:31   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 44/74] irda-utils: " Thomas Petazzoni
2014-11-30 17:14   ` Yann E. MORIN
2014-12-01 22:31   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 45/74] jimtcl: " Thomas Petazzoni
2014-11-30 17:14   ` Yann E. MORIN
2014-12-01 22:32   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 46/74] live555: " Thomas Petazzoni
2014-11-30 17:14   ` Yann E. MORIN
2014-12-01 22:32   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 47/74] lockfile-progs: " Thomas Petazzoni
2014-11-30 17:15   ` Yann E. MORIN
2014-12-01 22:32   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 48/74] qt5base: " Thomas Petazzoni
2014-11-30 17:15   ` Yann E. MORIN
2014-11-30 14:18 ` [Buildroot] [PATCHv3 49/74] qtuio: " Thomas Petazzoni
2014-11-30 17:17   ` Yann E. MORIN
2014-11-30 14:18 ` [Buildroot] [PATCHv3 50/74] sound-theme-borealis: " Thomas Petazzoni
2014-11-30 17:18   ` Yann E. MORIN
2014-12-01 23:14   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 51/74] xenomai: " Thomas Petazzoni
2014-11-30 17:18   ` Yann E. MORIN
2014-11-30 14:18 ` [Buildroot] [PATCHv3 52/74] aiccu: install init script and config file unconditionally Thomas Petazzoni
2014-11-30 17:30   ` Yann E. MORIN
2014-12-01 23:15   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 53/74] busybox: " Thomas Petazzoni
2014-11-30 17:33   ` Yann E. MORIN
2014-12-01 23:19   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 54/74] dmraid: install init script unconditionally Thomas Petazzoni
2014-11-30 17:35   ` Yann E. MORIN
2014-12-01 23:19   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 55/74] iucode-tool: " Thomas Petazzoni
2014-11-30 17:35   ` Yann E. MORIN
2014-12-01 23:20   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 56/74] lighttpd: install init script and config file unconditionally Thomas Petazzoni
2014-11-30 17:38   ` Yann E. MORIN
2014-12-01 23:24     ` Peter Korsgaard
2014-12-01 23:23   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 57/74] rpcbind: install init script unconditionally Thomas Petazzoni
2014-11-30 17:43   ` Yann E. MORIN
2014-12-01 23:24   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 58/74] rsyslog: install init script and config file unconditionally Thomas Petazzoni
2014-11-30 17:45   ` Yann E. MORIN
2014-12-01 23:25   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 59/74] transmission: install init script unconditionally Thomas Petazzoni
2014-11-30 17:46   ` Yann E. MORIN
2014-12-01 23:27     ` Peter Korsgaard
2014-12-01 23:33       ` Yann E. MORIN
2014-12-01 23:26   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 60/74] stunnel: install configuration file unconditionally Thomas Petazzoni
2014-11-30 17:47   ` Yann E. MORIN
2014-12-01 23:27   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 61/74] input-event-daemon: " Thomas Petazzoni
2014-11-30 17:48   ` Yann E. MORIN
2014-12-01 23:27   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 62/74] fluxbox: install session " Thomas Petazzoni
2014-11-30 17:49   ` Yann E. MORIN
2014-12-01 23:28   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 63/74] proftpd: install configuration " Thomas Petazzoni
2014-11-30 17:52   ` Yann E. MORIN
2014-12-01 23:28   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 64/74] samba: " Thomas Petazzoni
2014-11-30 17:53   ` Yann E. MORIN
2014-12-01 23:29   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 65/74] logrotate: " Thomas Petazzoni
2014-11-30 17:54   ` Yann E. MORIN
2014-12-01 23:32   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 66/74] nss-mdns: " Thomas Petazzoni
2014-11-30 18:04   ` Yann E. MORIN
2014-11-30 14:18 ` [Buildroot] [PATCHv3 67/74] ifplugd: install configuration files unconditionally Thomas Petazzoni
2014-11-30 18:06   ` Yann E. MORIN
2014-12-01 23:34   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 68/74] sysklogd: install configuration file unconditionally Thomas Petazzoni
2014-11-30 18:07   ` Yann E. MORIN
2014-12-01 23:35   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 69/74] screen: " Thomas Petazzoni
2014-11-30 18:08   ` Yann E. MORIN
2014-12-01 23:36   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 70/74] usbmount: " Thomas Petazzoni
2014-11-30 18:10   ` Yann E. MORIN
2014-12-01 23:38   ` Peter Korsgaard
2014-11-30 14:18 ` [Buildroot] [PATCHv3 71/74] php: " Thomas Petazzoni
2014-11-30 18:11   ` Yann E. MORIN
2014-12-01 23:40   ` Peter Korsgaard
2014-11-30 14:19 ` [Buildroot] [PATCHv3 72/74] inadyn: " Thomas Petazzoni
2014-11-30 18:16   ` Yann E. MORIN
2014-12-01 23:41   ` Peter Korsgaard
2014-11-30 14:19 ` [Buildroot] [PATCHv3 73/74] mpd: " Thomas Petazzoni
2014-11-30 18:18   ` Yann E. MORIN
2014-12-01 23:43   ` Peter Korsgaard
2014-11-30 14:19 ` [Buildroot] [PATCHv3 74/74] toolchain: install nssswitch.conf " Thomas Petazzoni
2014-11-30 18:19   ` Yann E. MORIN
2014-11-30 14:30 ` [Buildroot] [PATCHv3 00/74] Misc package improvements Baruch Siach

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox