Please pull from 'for-2.6.24' branch

6 messages, 4 authors, 2007-08-20 · open the first message on its own page

Please pull from 'for-2.6.24' branch

From: Josh Boyer <hidden>
Date: 2007-08-17 13:46:31

Hi Paul,

Please pull from the 'for-2.6.24' branch of

	git://git.infradead.org/~jwboyer/powerpc.git for-2.6.24

It contains the patches sent in

http://ozlabs.org/pipermail/linuxppc-dev/2007-August/040512.html

rebased on top of your for-2.6.24 branch with the acks from David
included in the commits. Diffstat and shortlog below.

josh

 arch/powerpc/Makefile                          |    2 +-
 arch/powerpc/boot/44x.c                        |   85 ---
 arch/powerpc/boot/44x.h                        |    5 +-
 arch/powerpc/boot/4xx.c                        |  192 ++++++
 arch/powerpc/boot/4xx.h                        |   21 +
 arch/powerpc/boot/Makefile                     |    7 +-
 arch/powerpc/boot/bamboo.c                     |   45 ++
 arch/powerpc/boot/dcr.h                        |   13 +
 arch/powerpc/boot/dts/bamboo.dts               |  244 ++++++++
 arch/powerpc/boot/ebony.c                      |    3 +-
 arch/powerpc/boot/treeboot-bamboo.c            |   27 +
 arch/powerpc/configs/bamboo_defconfig          |  775 ++++++++++++++++++++++++
 arch/powerpc/kernel/Makefile                   |    2 +-
 arch/powerpc/kernel/{head_4xx.S => head_40x.S} |    3 +-
 arch/powerpc/kernel/ppc_ksyms.c                |    2 +-
 arch/powerpc/kernel/time.c                     |    2 +-
 arch/powerpc/mm/{4xx_mmu.c => 40x_mmu.c}       |    4 +-
 arch/powerpc/mm/Makefile                       |    2 +-
 arch/powerpc/platforms/{4xx => 40x}/Kconfig    |   77 ---
 arch/powerpc/platforms/{4xx => 40x}/Makefile   |    0 
 arch/powerpc/platforms/44x/Kconfig             |   15 +-
 arch/powerpc/platforms/44x/Makefile            |    1 +
 arch/powerpc/platforms/44x/bamboo.c            |   66 ++
 arch/powerpc/platforms/Kconfig.cputype         |    1 +
 include/asm-powerpc/mmu-40x.h                  |   65 ++
 include/asm-powerpc/mmu.h                      |    3 +
 include/asm-powerpc/time.h                     |    2 +-
 27 files changed, 1477 insertions(+), 187 deletions(-)
 delete mode 100644 arch/powerpc/boot/44x.c
 create mode 100644 arch/powerpc/boot/4xx.c
 create mode 100644 arch/powerpc/boot/4xx.h
 create mode 100644 arch/powerpc/boot/bamboo.c
 create mode 100644 arch/powerpc/boot/dts/bamboo.dts
 create mode 100644 arch/powerpc/boot/treeboot-bamboo.c
 create mode 100644 arch/powerpc/configs/bamboo_defconfig
 rename arch/powerpc/kernel/{head_4xx.S => head_40x.S} (100%)
 rename arch/powerpc/mm/{4xx_mmu.c => 40x_mmu.c} (97%)
 rename arch/powerpc/platforms/{4xx => 40x}/Kconfig (68%)
 rename arch/powerpc/platforms/{4xx => 40x}/Makefile (100%)
 create mode 100644 arch/powerpc/platforms/44x/bamboo.c
 create mode 100644 include/asm-powerpc/mmu-40x.h

Josh Boyer (10):
      Rename 4xx paths to 40x
      4xx Kconfig cleanup
      Rename 44x bootwrapper
      4xx bootwrapper reworks
      40x MMU
      40x decrementer fixes
      Fix 40x build
      Bamboo DTS
      Bamboo board support
      Bamboo zImage wrapper

Re: Please pull from 'for-2.6.24' branch

From: Paul Mackerras <hidden>
Date: 2007-08-20 04:45:25

Josh Boyer writes:
Josh Boyer (10):
      Rename 4xx paths to 40x
      4xx Kconfig cleanup
      Rename 44x bootwrapper
      4xx bootwrapper reworks
      40x MMU
      40x decrementer fixes
      Fix 40x build
      Bamboo DTS
      Bamboo board support
      Bamboo zImage wrapper
Could you re-do these with [POWERPC] at the start of the summary line?

Thanks,
Paul.

Re: Please pull from 'for-2.6.24' branch

From: Josh Boyer <hidden>
Date: 2007-08-20 12:33:35

On Mon, 20 Aug 2007 14:45:25 +1000
Paul Mackerras [off-list ref] wrote:
Josh Boyer writes:
quoted
Josh Boyer (10):
      Rename 4xx paths to 40x
      4xx Kconfig cleanup
      Rename 44x bootwrapper
      4xx bootwrapper reworks
      40x MMU
      40x decrementer fixes
      Fix 40x build
      Bamboo DTS
      Bamboo board support
      Bamboo zImage wrapper
Could you re-do these with [POWERPC] at the start of the summary line?
Yes, done.  Git tree is updated:

Josh Boyer (10):
      [POWERPC] Rename 4xx paths to 40x
      [POWERPC] 4xx Kconfig cleanup
      [POWERPC] Rename 44x bootwrapper
      [POWERPC] 4xx bootwrapper reworks
      [POWERPC] 40x MMU
      [POWERPC] 40x decrementer fixes
      [POWERPC] Fix 40x build
      [POWERPC] Bamboo DTS
      [POWERPC] Bamboo board support
      [POWERPC] Bamboo zImage wrapper

josh

Re: Please pull from 'for-2.6.24' branch

From: Timur Tabi <hidden>
Date: 2007-08-20 16:09:18

Paul Mackerras wrote:
Could you re-do these with [POWERPC] at the start of the summary line?
Is this something new that you want done for all patches from now on?

-- 
Timur Tabi
Linux Kernel Developer @ Freescale

Re: Please pull from 'for-2.6.24' branch

From: Kumar Gala <hidden>
Date: 2007-08-20 17:39:00

On Aug 20, 2007, at 11:09 AM, Timur Tabi wrote:
Paul Mackerras wrote:
quoted
Could you re-do these with [POWERPC] at the start of the summary  
line?
Is this something new that you want done for all patches from now on?
I think for git tree pull requests this is desired.  For patches it  
doesn't matter.

- k

Re: Please pull from 'for-2.6.24' branch

From: Paul Mackerras <hidden>
Date: 2007-08-20 22:55:24

Timur Tabi writes:
Is this something new that you want done for all patches from now on?
It's not necessary for patches posted to the mailing list, but people
putting commits into a git tree for me to pull need to do it.  I have
hacked versions of git-apply{mbox,patch} that do it automatically.

Paul.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help