From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: More patches
Date: Mon, 14 Jun 2010 11:48:30 +0200 [thread overview]
Message-ID: <1276508921-3264-1-git-send-email-s.hauer@pengutronix.de> (raw)
Hi all,
Here are some more patches, most notably the the possibility to merge
the default environment together from different directories. We can then
introduce a generic default environment which can be used from multiple
boards. Each board can make specific additions to this default environment.
Also, maybe this is controversal, the network stack now generates a random
MAC address if now valid address is found.
Sascha
The following changes since commit 52f760cd61e3f6ca6deb8e5c47eef168b598a674:
dhcp: do not call net_unregister if net_udp_new failed (2010-06-14 09:39:29 +0200)
are available in the git repository at:
git://git.pengutronix.de/git/barebox.git pu
Sascha Hauer (11):
pcm037: Add MMU support
bootu: Allow passing in devices as parameter
Allow to merge default environment from more than one directory
include support for a simple pseudo number generator
net: implement random_ether_addr
net: use a random mac address if the current device does not have one
add a generic default environment
pcm038: use generic default env
pcm043: use generic default env
pcm037: use generic default env
pca100: use generic default env
Makefile | 15 ---
arch/arm/configs/pca100_defconfig | 2 +-
arch/arm/configs/pcm037_defconfig | 2 +-
arch/arm/configs/pcm038_defconfig | 2 +-
arch/arm/configs/pcm043_defconfig | 2 +-
arch/arm/lib/armlinux.c | 10 ++-
arch/arm/mach-imx/Kconfig | 2 +
board/pcm037/env/bin/boot | 47 ---------
board/pcm037/env/bin/init | 37 -------
board/pcm037/env/bin/update_root | 16 ---
board/pcm037/env/config | 62 ++++++++---
board/pcm037/pcm037.c | 31 ++++++
board/pcm038/env/bin/_update | 36 -------
board/pcm038/env/bin/boot | 47 ---------
board/pcm038/env/bin/hush_hack | 1 -
board/pcm038/env/bin/init | 37 -------
board/pcm038/env/bin/update_kernel | 15 ---
board/pcm038/env/bin/update_root | 16 ---
board/pcm038/env/config | 62 ++++++++---
board/pcm043/env/bin/_update | 36 -------
board/pcm043/env/bin/boot | 47 ---------
board/pcm043/env/bin/hush_hack | 1 -
board/pcm043/env/bin/update_kernel | 15 ---
board/pcm043/env/config | 65 +++++++++---
board/phycard-i.MX27/env/bin/_update | 36 -------
board/phycard-i.MX27/env/bin/boot | 40 -------
board/phycard-i.MX27/env/bin/hush_hack | 1 -
board/phycard-i.MX27/env/bin/init | 37 -------
board/phycard-i.MX27/env/bin/update_kernel | 15 ---
board/phycard-i.MX27/env/bin/update_root | 16 ---
board/phycard-i.MX27/env/config | 57 ++++++++---
common/Kconfig | 4 +-
common/Makefile | 6 +-
{board/pcm037/env => defaultenv}/bin/_update | 5 +-
defaultenv/bin/boot | 110 ++++++++++++++++++++
{board/pcm037/env => defaultenv}/bin/hush_hack | 0
{board/pcm043/env => defaultenv}/bin/init | 11 +--
{board/pcm037/env => defaultenv}/bin/update_kernel | 2 +-
.../update_root => defaultenv/bin/update_rootfs | 4 +-
include/net.h | 17 +++
include/random.h | 7 ++
lib/Makefile | 1 +
lib/random.c | 22 ++++
net/net.c | 11 ++-
scripts/genenv | 17 +++
45 files changed, 424 insertions(+), 601 deletions(-)
delete mode 100644 board/pcm037/env/bin/boot
delete mode 100644 board/pcm037/env/bin/init
delete mode 100644 board/pcm037/env/bin/update_root
delete mode 100644 board/pcm038/env/bin/_update
delete mode 100644 board/pcm038/env/bin/boot
delete mode 100644 board/pcm038/env/bin/hush_hack
delete mode 100644 board/pcm038/env/bin/init
delete mode 100644 board/pcm038/env/bin/update_kernel
delete mode 100644 board/pcm038/env/bin/update_root
delete mode 100644 board/pcm043/env/bin/_update
delete mode 100644 board/pcm043/env/bin/boot
delete mode 100644 board/pcm043/env/bin/hush_hack
delete mode 100644 board/pcm043/env/bin/update_kernel
delete mode 100644 board/phycard-i.MX27/env/bin/_update
delete mode 100644 board/phycard-i.MX27/env/bin/boot
delete mode 100644 board/phycard-i.MX27/env/bin/hush_hack
delete mode 100644 board/phycard-i.MX27/env/bin/init
delete mode 100644 board/phycard-i.MX27/env/bin/update_kernel
delete mode 100644 board/phycard-i.MX27/env/bin/update_root
rename {board/pcm037/env => defaultenv}/bin/_update (86%)
create mode 100644 defaultenv/bin/boot
rename {board/pcm037/env => defaultenv}/bin/hush_hack (100%)
rename {board/pcm043/env => defaultenv}/bin/init (59%)
rename {board/pcm037/env => defaultenv}/bin/update_kernel (91%)
rename board/pcm043/env/bin/update_root => defaultenv/bin/update_rootfs (91%)
create mode 100644 include/random.h
create mode 100644 lib/random.c
create mode 100755 scripts/genenv
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2010-06-14 9:48 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-14 9:48 Sascha Hauer [this message]
2010-06-14 9:48 ` [PATCH 01/11] pcm037: Add MMU support Sascha Hauer
2010-06-14 9:48 ` [PATCH 02/11] bootu: Allow passing in devices as parameter Sascha Hauer
2010-06-14 9:48 ` [PATCH 03/11] Allow to merge default environment from more than one directory Sascha Hauer
2010-06-14 9:48 ` [PATCH 04/11] include support for a simple pseudo number generator Sascha Hauer
2010-06-15 9:39 ` Peter Korsgaard
2010-06-15 11:54 ` Sascha Hauer
2010-06-17 13:17 ` Sascha Hauer
2010-06-17 13:26 ` Andy Pont
2010-06-17 14:14 ` Peter Korsgaard
2010-06-14 9:48 ` [PATCH 05/11] net: implement random_ether_addr Sascha Hauer
2010-06-14 9:48 ` [PATCH 06/11] net: use a random mac address if the current device does not have one Sascha Hauer
2010-06-14 9:48 ` [PATCH 07/11] add a generic default environment Sascha Hauer
2010-06-15 9:13 ` Uwe Kleine-König
2010-06-17 13:20 ` Sascha Hauer
2010-06-19 20:14 ` Uwe Kleine-König
2010-06-14 9:48 ` [PATCH 08/11] pcm038: use generic default env Sascha Hauer
2010-06-14 9:48 ` [PATCH 09/11] pcm043: " Sascha Hauer
2010-06-14 9:48 ` [PATCH 10/11] pcm037: " Sascha Hauer
2010-06-14 9:48 ` [PATCH 11/11] pca100: " 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=1276508921-3264-1-git-send-email-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox