From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: Re: Patches for -next
Date: Mon, 25 Jan 2010 08:39:13 +0100 [thread overview]
Message-ID: <20100125073912.GB10139@pengutronix.de> (raw)
In-Reply-To: <1264404750-11596-1-git-send-email-s.hauer@pengutronix.de>
On Mon, Jan 25, 2010 at 08:32:18AM +0100, Sascha Hauer wrote:
> Hi all,
>
> Here are some patches to review for -next
>
> Sascha
And here's a changelog for these patches. Damn, it's too early for me :)
Sascha
The following changes since commit 0dde20da20411bf4dcd5593601d2f36e9ba04f66:
Peter Korsgaard (1):
documentation: It's U-Boot that doesn't have getopt, not Barebox
are available in the git repository at:
git://git.pengutronix.de/git/barebox.git pu
Sascha Hauer (12):
remove unused cdp code
remove obsolete comment
cache functions from kernel
remove unused NETCONSOLE stuff
remove unused file common/flash.c
Move tftp/nfs specific code to net/*
remove typedef cmd_tbl_t and replace it with struct command
pcm043: initialize cpufreq to 532MHz
replace ET_DEBUG with pr_debug
put only once used function inline
add armv6 support to the konfig system
i.MX: select armv6 for i.MX31/35
arch/arm/cpu/Kconfig | 8 ++
arch/arm/cpu/Makefile | 6 +-
arch/arm/cpu/cache-armv4.S | 137 ++++++++++++++++++++++++++
arch/arm/cpu/cache-armv6.S | 131 +++++++++++++++++++++++++
arch/arm/cpu/cache-armv7.S | 185 ++++++++++++++++++++++++++++++++++++
arch/arm/cpu/cpu.c | 2 +-
arch/arm/cpu/cpuinfo.c | 2 +-
arch/arm/cpu/mmu.c | 29 +-----
arch/arm/lib/armlinux.c | 4 +-
arch/arm/mach-imx/Kconfig | 2 +
arch/arm/mach-imx/clko.c | 2 +-
arch/arm/mach-imx/speed.c | 2 +-
arch/arm/mach-netx/generic.c | 2 +-
arch/ppc/mach-mpc5xxx/interrupts.c | 2 +-
board/ipe337/cmd_alternate.c | 2 +-
board/pcm043/lowlevel_init.S | 2 +-
board/pcm043/pcm043.c | 2 +-
commands/bmp.c | 2 +-
commands/bootm.c | 6 +-
commands/cat.c | 2 +-
commands/cd.c | 2 +-
commands/clear.c | 2 +-
commands/cp.c | 2 +-
commands/crc.c | 2 +-
commands/dfu.c | 2 +-
commands/echo.c | 2 +-
commands/edit.c | 2 +-
commands/exec.c | 2 +-
commands/export.c | 2 +-
commands/false.c | 2 +-
commands/flash.c | 4 +-
commands/go.c | 2 +-
commands/gpio.c | 8 +-
commands/help.c | 2 +-
commands/insmod.c | 2 +-
commands/loadb.c | 2 +-
commands/loadenv.c | 2 +-
commands/loads.c | 4 +-
commands/ls.c | 2 +-
commands/lsmod.c | 2 +-
commands/mem.c | 10 +-
commands/meminfo.c | 2 +-
commands/memtest.c | 2 +-
commands/mkdir.c | 2 +-
commands/mount.c | 2 +-
commands/nand.c | 2 +-
commands/net.c | 160 +------------------------------
commands/partition.c | 4 +-
commands/printenv.c | 2 +-
commands/pwd.c | 2 +-
commands/readline.c | 2 +-
commands/reginfo.c | 2 +-
commands/reset.c | 2 +-
commands/rm.c | 2 +-
commands/rmdir.c | 2 +-
commands/saveenv.c | 2 +-
commands/setenv.c | 2 +-
commands/sleep.c | 2 +-
commands/test.c | 2 +-
commands/timeout.c | 2 +-
commands/true.c | 2 +-
commands/umount.c | 2 +-
commands/version.c | 2 +-
common/command.c | 26 +++---
common/complete.c | 2 +-
common/flash.c | 73 --------------
common/hush.c | 6 +-
common/module.c | 4 +-
drivers/nand/nand_imx.c | 2 +-
drivers/nand/nand_s3c2410.c | 2 +-
drivers/usb/gadget/u_serial.c | 2 +-
drivers/usb/usb.c | 2 +-
include/command.h | 25 ++----
include/net.h | 8 --
lib/driver.c | 2 +-
net/dhcp.c | 2 +-
net/net.c | 98 ++++++-------------
net/nfs.c | 56 +++++++++++-
net/ping.c | 6 +-
net/tftp.c | 74 ++++++++++++++-
80 files changed, 734 insertions(+), 450 deletions(-)
create mode 100644 arch/arm/cpu/cache-armv4.S
create mode 100644 arch/arm/cpu/cache-armv6.S
create mode 100644 arch/arm/cpu/cache-armv7.S
delete mode 100644 common/flash.c
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2010-01-25 7:39 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-25 7:32 Sascha Hauer
2010-01-25 7:32 ` [PATCH 01/12] remove unused cdp code Sascha Hauer
2010-01-25 7:32 ` [PATCH 02/12] remove obsolete comment Sascha Hauer
2010-01-25 7:32 ` [PATCH 03/12] cache functions from kernel Sascha Hauer
2010-01-25 7:32 ` [PATCH 04/12] remove unused NETCONSOLE stuff Sascha Hauer
2010-01-25 7:32 ` [PATCH 05/12] remove unused file common/flash.c Sascha Hauer
2010-01-25 7:32 ` [PATCH 06/12] Move tftp/nfs specific code to net/* Sascha Hauer
2010-01-25 7:32 ` [PATCH 07/12] remove typedef cmd_tbl_t and replace it with struct command Sascha Hauer
2010-01-25 7:32 ` [PATCH 08/12] pcm043: initialize cpufreq to 532MHz Sascha Hauer
2010-01-25 7:32 ` [PATCH 09/12] replace ET_DEBUG with pr_debug Sascha Hauer
2010-01-25 7:32 ` [PATCH 10/12] put only once used function inline Sascha Hauer
2010-01-25 7:32 ` [PATCH 11/12] add armv6 support to the konfig system Sascha Hauer
2010-01-25 7:32 ` [PATCH 12/12] i.MX: select armv6 for i.MX31/35 Sascha Hauer
2010-01-25 8:57 ` [PATCH 03/12] cache functions from kernel Uwe Kleine-König
2010-01-25 7:39 ` Sascha Hauer [this message]
2010-10-11 11:28 Patches for -next 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=20100125073912.GB10139@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