All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH 0/7 v2] dhcp: update to globalvar
Date: Thu, 13 Sep 2012 17:55:32 +0200	[thread overview]
Message-ID: <20120913155532.GA9153@game.jcrosoft.org> (raw)

HI,

	v2:
	fix missing hostname switch
	set default retry to 20
	fix comment

	this pull is a split of the bootp work as I may have not time to
	finish it those days

please pull
The following changes since commit 8b3bf5971afbdf1acc5becabb6f15ba4b2a5559d:

  tap: fix missing parent setting on eth_device (2012-09-12 17:26:26 +0200)

are available in the git repository at:

  git://git.jcrosoft.org/barebox.git tags/dhcp

for you to fetch changes up to dec0a10529c9504afecb8f97d56f0e110ef5b6a5:

  defaultenv-2: eth0 add default global.dhcp.vendor_id (2012-09-13 23:55:19 +0800)

----------------------------------------------------------------
dhcp: update to globalvar

So we can specify vendor_id, user_class, etc... in defaultenv-2

defaultenv: enable glovalvar support
This will allow to do not have 2 set of var for defaultenv and the new
defaultenv-2.

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (7):
      globalvar: add inline when not enabled
      defaultenv: enable glovalvar support
      defaultenv: switch hostname to global.hostname
      dhcp: switch to global var support
      dhcp: add copy_only_if_valid support
      dhcp: add retries limit support
      defaultenv-2: eth0 add default global.dhcp.vendor_id

 arch/arm/boards/at91rm9200ek/env/config           |    2 +-
 arch/arm/boards/at91sam9260ek/env/config          |    4 ++--
 arch/arm/boards/at91sam9261ek/env/config          |    4 ++--
 arch/arm/boards/at91sam9263ek/env/config          |    2 +-
 arch/arm/boards/at91sam9m10g45ek/env/config       |    2 +-
 arch/arm/boards/at91sam9x5ek/env/config           |    2 +-
 arch/arm/boards/chumby_falconwing/env/config      |    2 +-
 arch/arm/boards/eukrea_cpuimx25/env/config        |   14 ++++++------
 arch/arm/boards/eukrea_cpuimx35/env/config        |   14 ++++++------
 arch/arm/boards/eukrea_cpuimx51/env/config        |   14 ++++++------
 arch/arm/boards/freescale-mx28-evk/env/config     |   12 +++++------
 arch/arm/boards/freescale-mx35-3-stack/env/config |   14 ++++++------
 arch/arm/boards/freescale-mx53-loco/env/config    |   16 +++++++-------
 arch/arm/boards/freescale-mx53-smd/env/config     |   14 ++++++------
 arch/arm/boards/friendlyarm-mini2440/env/config   |   14 ++++++------
 arch/arm/boards/guf-cupid/env/config              |   14 ++++++------
 arch/arm/boards/guf-neso/env/config               |   14 ++++++------
 arch/arm/boards/karo-tx25/env/config              |   14 ++++++------
 arch/arm/boards/karo-tx28/env/config              |   14 ++++++------
 arch/arm/boards/panda/env/config                  |   12 +++++------
 arch/arm/boards/pcm027/env/config                 |   14 ++++++------
 arch/arm/boards/pcm037/env/config                 |   14 ++++++------
 arch/arm/boards/pcm043/env/config                 |   14 ++++++------
 arch/arm/boards/pcm049/env/config                 |   14 ++++++------
 arch/arm/boards/phycard-a-l1/env/config           |   18 ++++++++--------
 arch/arm/boards/phycard-a-xl2/env/config          |   14 ++++++------
 arch/arm/boards/phycard-i.MX27/env/config         |   14 ++++++------
 arch/arm/boards/qil-a9260/env/config              |    2 +-
 arch/arm/boards/scb9328/env/config                |   14 ++++++------
 arch/arm/boards/tny-a926x/env/config              |    6 +++---
 arch/arm/boards/usb-a926x/env/config              |    6 +++---
 common/Kconfig                                    |    1 +
 defaultenv-2/base/network/eth0                    |    1 +
 defaultenv/bin/boot                               |   12 +++++------
 defaultenv/bin/init                               |    2 ++
 defaultenv/config                                 |   18 ++++++++--------
 include/globalvar.h                               |   20 +++++++++++++++++
 net/dhcp.c                                        |  167 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------
 38 files changed, 345 insertions(+), 204 deletions(-)

Best Regrards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2012-09-13 16:04 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-13 15:55 Jean-Christophe PLAGNIOL-VILLARD [this message]
2012-09-13 16:29 ` [PATCH 1/7] globalvar: add inline when not enabled Jean-Christophe PLAGNIOL-VILLARD
2012-09-13 16:29   ` [PATCH 2/7] defaultenv: enable glovalvar support Jean-Christophe PLAGNIOL-VILLARD
2012-09-13 16:29   ` [PATCH 3/7] defaultenv: switch hostname to global.hostname Jean-Christophe PLAGNIOL-VILLARD
2012-09-13 16:29   ` [PATCH 4/7] dhcp: switch to global var support Jean-Christophe PLAGNIOL-VILLARD
2012-09-13 16:29   ` [PATCH 5/7] dhcp: add copy_only_if_valid support Jean-Christophe PLAGNIOL-VILLARD
2012-09-13 16:29   ` [PATCH 6/7] dhcp: add retries limit support Jean-Christophe PLAGNIOL-VILLARD
2012-09-13 16:29   ` [PATCH 7/7] defaultenv-2: eth0 add default global.dhcp.vendor_id Jean-Christophe PLAGNIOL-VILLARD
2012-09-14  7:07 ` [PATCH 0/7 v2] dhcp: update to globalvar Sascha Hauer

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=20120913155532.GA9153@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=barebox@lists.infradead.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 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.