Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCHv3 0/9] SystemV init without busybox series
@ 2014-11-18 17:01 Gustavo Zacarias
  2014-11-18 17:01 ` [Buildroot] [PATCH 1/9] skeleton/S40network: tweak for debian ifupdown Gustavo Zacarias
                   ` (8 more replies)
  0 siblings, 9 replies; 25+ messages in thread
From: Gustavo Zacarias @ 2014-11-18 17:01 UTC (permalink / raw)
  To: buildroot

This is a patch series that enables busybox-less systemV-init targets
to be built.
It contains fixes that enable it to work seamlessly, some new packages
and a couple of non essential/related bumps.

It's missing documentation on the recommended packages for a normal
boot to take place without any errors or warnings for a default busybox
skeleton.

* debianutils provides run-parts for ifupdown
* ifupdown provides ifup/ifdown
* start-stop-daemon provides start-stop-daemon (sic)

Changes for v2:
 * Drop uclibc wordexp enablement and disable ifupdown for it
 * Add start-stop-daemon package
 * Add useful dhclient-script for ISC dhcp
 * Install dhclient (ISC dhcp) to /sbin for debian ifupdown
 * dhcpcd: install dhcpcd-hooks for PnP simplicity
 * sysvinit: drop tty1/2 for consistency
 * Misc style fixes

Changes for v3:
 * Adjust start-stop-daemon license (Karoly)
 * Fix pathspecs for dhcp clients in network-manager (Arnout)
 * Drop symlink check in S40network (Arnout)
 * Use make install in ifupdown (Arnout)
 * Update dhcpcd to version 6.6.2
 * Ditch dash 0.5.8-2 bump, it's pointless (Peter)

Gustavo Zacarias (9):
  skeleton/S40network: tweak for debian ifupdown
  debianutils: new package
  ifupdown: new package
  start-stop-daemon: new package
  dhcp: install dhclient to /sbin
  dhcp: update dhclient-script
  dhcpcd: bump to version 6.6.2
  dhcpcd: use standard installation
  network-manager: adjust dhclient and dhcpcd directories

 package/Config.in                                  |   7 +
 package/debianutils/Config.in                      |   7 +
 package/debianutils/debianutils.hash               |   2 +
 package/debianutils/debianutils.mk                 |  14 +
 package/dhcp/dhclient-script                       | 284 ++++++++++++++++++++-
 package/dhcp/dhcp.mk                               |   2 +-
 package/dhcpcd/dhcpcd.hash                         |   2 +
 package/dhcpcd/dhcpcd.mk                           |   9 +-
 package/ifupdown/Config.in                         |  17 ++
 package/ifupdown/ifupdown.hash                     |   2 +
 package/ifupdown/ifupdown.mk                       |  24 ++
 package/network-manager/network-manager.mk         |   4 +-
 .../0001-add-uclibc-alias-and-musl.patch           |  42 +++
 package/start-stop-daemon/Config.in                |   8 +
 package/start-stop-daemon/start-stop-daemon.hash   |   2 +
 package/start-stop-daemon/start-stop-daemon.mk     |  27 ++
 system/skeleton/etc/init.d/S40network              |   3 +
 17 files changed, 445 insertions(+), 11 deletions(-)
 create mode 100644 package/debianutils/Config.in
 create mode 100644 package/debianutils/debianutils.hash
 create mode 100644 package/debianutils/debianutils.mk
 create mode 100644 package/dhcpcd/dhcpcd.hash
 create mode 100644 package/ifupdown/Config.in
 create mode 100644 package/ifupdown/ifupdown.hash
 create mode 100644 package/ifupdown/ifupdown.mk
 create mode 100644 package/start-stop-daemon/0001-add-uclibc-alias-and-musl.patch
 create mode 100644 package/start-stop-daemon/Config.in
 create mode 100644 package/start-stop-daemon/start-stop-daemon.hash
 create mode 100644 package/start-stop-daemon/start-stop-daemon.mk

-- 
2.0.4

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

end of thread, other threads:[~2014-11-19 22:23 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-18 17:01 [Buildroot] [PATCHv3 0/9] SystemV init without busybox series Gustavo Zacarias
2014-11-18 17:01 ` [Buildroot] [PATCH 1/9] skeleton/S40network: tweak for debian ifupdown Gustavo Zacarias
2014-11-18 19:24   ` Arnout Vandecappelle
2014-11-18 17:01 ` [Buildroot] [PATCH 2/9] debianutils: new package Gustavo Zacarias
2014-11-18 19:37   ` Arnout Vandecappelle
2014-11-18 22:31   ` Thomas Petazzoni
2014-11-18 17:01 ` [Buildroot] [PATCH 3/9] ifupdown: " Gustavo Zacarias
2014-11-18 19:30   ` Károly Kasza
2014-11-18 19:42     ` Károly Kasza
2014-11-18 19:46       ` Gustavo Zacarias
2014-11-18 19:53       ` Arnout Vandecappelle
2014-11-18 19:56   ` Arnout Vandecappelle
2014-11-18 19:59     ` Gustavo Zacarias
2014-11-18 17:01 ` [Buildroot] [PATCH 4/9] start-stop-daemon: " Gustavo Zacarias
2014-11-18 20:23   ` Arnout Vandecappelle
2014-11-18 17:01 ` [Buildroot] [PATCH 5/9] dhcp: install dhclient to /sbin Gustavo Zacarias
2014-11-18 20:24   ` Arnout Vandecappelle
2014-11-18 22:57   ` Thomas Petazzoni
2014-11-18 17:01 ` [Buildroot] [PATCH 6/9] dhcp: update dhclient-script Gustavo Zacarias
2014-11-18 17:01 ` [Buildroot] [PATCH 7/9] dhcpcd: bump to version 6.6.2 Gustavo Zacarias
2014-11-19 22:23   ` Thomas Petazzoni
2014-11-18 17:01 ` [Buildroot] [PATCH 8/9] dhcpcd: use standard installation Gustavo Zacarias
2014-11-19 22:20   ` Thomas Petazzoni
2014-11-18 17:01 ` [Buildroot] [PATCH 9/9] network-manager: adjust dhclient and dhcpcd directories Gustavo Zacarias
2014-11-19 22:21   ` Thomas Petazzoni

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