On Tue, Feb 22, 2011 at 4:38 PM, Amit Kucheria <amit.kucheria(a)linaro.org> wrote:
> Hi,
>
> We're required to cc patches(a)linaro.org for all patches that we send
> upstream. bzr/launchpad users are already covered or will be shortly.
>
> For those using git-send-email to send patches (and you really should
> be), it might make sense to use the following command so you don't
> forget
>
> $ git config --global --add sendemail.bcc "patches(a)linaro.org"
>
> Check $HOME/.gitconfig to make sure you see "bcc = patches(a)linaro.org"
> under the [sendemail] section.
> WARNING - this will bcc patches(a)linaro.org on all patches from that
> machine sent using git-send-email.
>
> If you want more control, and your linaro work happens in a single git
> tree, you could do the following:
>
> $ cd <your linaro git tree>
> $ git config --add sendemail.bcc "patches(a)linaro.org"
>
> Check <your linaro git tree>/.git/config for the bcc entry as above.
> Now patches send from that tree will be bcc'ed to patches@linaro.
>
> /Amit
> p.s. There is also a sendemail.cc instead of sendemail.bcc in case you
> want to use that.
>
Do we need a policy on whether or not to use Bcc here?
One argument for using Bcc is that it avoids replies from subscribers
to the destination mailing lists from also being CC'd to
patches(a)linaro.org. Can your analysis cope with patches(a)linaro.org
receiving a whole thread, or do we need to be careful about this?
Cheers
---Dave
Hi Nicolas,
Here's the branch implementing basic device tree support based on the
linaro-2.6.38 tree. Should be good to go.
g.
The following changes since commit f60e8ccbfce6b40a112bddef5b4926b7416b4f92:
ARM: fix build failure (2011-02-22 15:49:23 -0500)
are available in the git repository at:
git://git.secretlab.ca/git/linux-2.6 devicetree/arm-linaro-2.6.38
Grant Likely (5):
arm/dt: Make __vet_atags also accept a dtb image
arm/dt: consolidate atags setup into setup_machine_atags
arm/dt: probe for platforms via the device tree
arm/dt: Basic versatile devicetree support
arm/dt: Basic tegra devicetree support
Jeremy Kerr (1):
arm/dt: Allow CONFIG_OF on ARM
arch/arm/Kconfig | 7 ++
arch/arm/include/asm/mach/arch.h | 9 ++
arch/arm/include/asm/prom.h | 37 ++++++++
arch/arm/include/asm/setup.h | 5 +
arch/arm/kernel/Makefile | 1 +
arch/arm/kernel/devtree.c | 147 ++++++++++++++++++++++++++++++++
arch/arm/kernel/head-common.S | 24 ++++--
arch/arm/kernel/head.S | 8 +-
arch/arm/kernel/setup.c | 90 ++++++++++++--------
arch/arm/mach-tegra/board-harmony.c | 6 ++
arch/arm/mach-versatile/versatile_ab.c | 6 ++
arch/arm/mach-versatile/versatile_pb.c | 6 ++
arch/arm/mm/init.c | 11 +++
13 files changed, 312 insertions(+), 45 deletions(-)
create mode 100644 arch/arm/include/asm/prom.h
create mode 100644 arch/arm/kernel/devtree.c
--
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
change log:
1. move code to arch/arm/mach-mx5/, since it is cpu-type specific
2. provide a interface for various board to register board-specific params.
Hi,
The notes and actions for this weeks Android Platform Team meeting along
with team activity reports are now available at:
https://wiki.linaro.org/Platform/Android/Meetings/2011-02-23
= Actions Recorded =
* kjnabe to contribute framebuffer support back to jstultz'
git.linaro.org tree
* kjnabe to contribute beagle defconfig to jstultz git.linaro.org tree
* JamieBennett to prod people for framebuffer and defconfig changes to
go to jstultz' tree
* jserv-- and jeremychang to test John's tree for battery support and
report back
* JamieBennett to investigate certificates on android-build.linaro.org
* jeremychang to confirm
https://android-build.linaro.org/job/android-panda/ tarballs work and
fix if necessary
* patrikryd to confirm
https://android-build.linaro.org/job/android-u8500href/ tarballs work
and fix if necessary
* jserv-- to confirm
https://android-build.linaro.org/job/android-beagle/ tarballs work and
fix if necessary
* jserv-- jeremychang and patrikryd to improve their weekly report
before JamieBennett submits a team report to linaro-dev tomorrow
* asac to produce a better standing agenda for the meetings
Regards,
Jamie.
--
Linaro Release Manager | Platform Project Manager
Hi,
I've been trying to boot Linaro on Panda board following the
instructions given in https://wiki.linaro.org/Boards/Panda. I've used
linaro-natty-headless-tar-20110216-0.tar.gz and
hwpack_linaro-panda_20110217-0_armel_supported.tar.gz. After writing the
image successfully on an SD card I tried booting the board from it and
got a kernel panic: http://paste.ubuntu.com/569954
Please let me know how to get out of this problem.
Regards,
Avik
As the next Linaro release (11.05) will include the 2.6.38 kernel, it
was decided that the linaro-2.6.38 branch would open early i.e. before
the final 2.6.38 kernel is released. So there it is.
All the extra patches that were available in linaro-2.6.37 should be
included in linaro-2.6.38 at this point. Some notable exceptions at the
moment are some Thumb2 support patches, and some ARMv6k compatibility
patches. I expect to get a fresh set from Dave Martin soon for the
former, and I'll eventually merge RMK's devel branch which would bring
in the later.
But as you should know already, the feature freeze is due this Thursday
February 24th. So now is the time to consider the linaro-2.6.38 tree,
put on top all the patches you want to see in the upcoming Linaro
release, and ask me to merge them in. If you need some subsystem tree
such as MMC to be included as well then now is the time to say so as
well.
Nicolas