All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Ungerer <gerg@snapgear.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: gerg@uclinux.org, linux-kernel@vger.kernel.org,
	linux-m68k@vger.kernel.org, uclinux-dev@uclinux.org,
	geert@linux-m68k.org
Subject: Re: [git pull] m68knommu arch updates for 3.2
Date: Wed, 26 Oct 2011 00:15:36 +1000	[thread overview]
Message-ID: <4EA6C488.1030606@snapgear.com> (raw)
In-Reply-To: <CA+55aFzLBaLpBWA8tspNbCyzMYeruK-waRCpRwVnZEOGw9FhRQ@mail.gmail.com>

Hi Linus,

On 10/25/2011 05:42 PM, Linus Torvalds wrote:
> [ Another cut-and-paste reply, please replace "p9" with "m68knommu".
> Also note that signed emails aren't convenient (the tools that
> actually verify signed emails are unusuable in all other respects), so
> an extra signed tag that actually specifies both the top commit and
> the repository I'm supposed to pull is likely the best approach if you
> don't have access to a trusted host ]

I don't think I will get back onto kernel.org anytime soon, I am in
the "geographically-isolated developers" group :-(

But I have put a signed tag on the top commit now, with the top
commit and repository info. Is this what you are looking for?

So it was:

    git://github.com/gregungerer/m68knommu for-linus

with new for-linus top tag:

    m68knommu-for-linus-3.2-merge-window

and pull comments:

There is a big cleanup and reworking of the Kconfig files. They are no
longer splilt on the somewhat arbitary basis of MMU and non-MMU targets.
Also some other merging and cleaning up of arch Makefiles, and the trap
handling code. Of course a couple of bug fixes in there too.

Thanks
Greg




The following changes since commit 899e3ee404961a90b828ad527573aaaac39f0ab1:
   Linus Torvalds (1):
         Linux 3.1-rc10

are available in the git repository at:

   git://github.com/gregungerer/m68knommu for-linus

Greg Ungerer (11):
       m68k: fix memcpy to unmatched/unaligned source and dest on 68000
       m68k: reorganize Kconfig options to improve mmu/non-mmu selections
       m68k: merge mmu and non-mmu arch Makefiles
       m68k: merge the mmu and non-mmu kernel/Makefiles
       m68k: merge mmu and non-mmu include/asm/entry.h files
       m68k: move hardware vector setting from traps.c to its own file
       m68k: merge the mmu and non-mmu traps.c files
       m68knommu: use generic section names in setup code
       m68knommu: use generic section names in mm/init code
       m68knommu: remove extern declarations of memory_start/memory_end 
from mm/init
       m68knommu: create common externs for _ram* vars

Paul Bolle (2):
       m68k: drop unused Kconfig symbols
       m68k: drop unused Kconfig symbols

Peter Turczak (1):
       m68knommu: fix problems with SPI/GPIO on ColdFire 520x

  arch/m68k/Kconfig                            |  195 +----
  arch/m68k/Kconfig.bus                        |   55 ++
  arch/m68k/Kconfig.cpu                        |  429 +++++++++
  arch/m68k/Kconfig.devices                    |  123 +++
  arch/m68k/{Kconfig.nommu => Kconfig.machine} |  562 ++++--------
  arch/m68k/Kconfig.mmu                        |  411 ---------
  arch/m68k/Makefile                           |  168 ++++-
  arch/m68k/Makefile_mm                        |  121 ---
  arch/m68k/Makefile_no                        |  124 ---
  arch/m68k/include/asm/entry.h                |  255 ++++++-
  arch/m68k/include/asm/entry_mm.h             |  128 ---
  arch/m68k/include/asm/entry_no.h             |  181 ----
  arch/m68k/include/asm/m520xsim.h             |   26 +-
  arch/m68k/include/asm/mcfqspi.h              |    8 +-
  arch/m68k/include/asm/page_no.h              |    3 +
  arch/m68k/include/asm/processor.h            |    6 +
  arch/m68k/include/asm/sections.h             |    2 +
  arch/m68k/kernel/Makefile                    |   24 +-
  arch/m68k/kernel/Makefile_mm                 |   17 -
  arch/m68k/kernel/Makefile_no                 |   10 -
  arch/m68k/kernel/entry_no.S                  |    6 +-
  arch/m68k/kernel/setup_no.c                  |    4 +-
  arch/m68k/kernel/traps.c                     | 1108 
+++++++++++++++++++++++-
  arch/m68k/kernel/traps_mm.c                  | 1207 
--------------------------
  arch/m68k/kernel/traps_no.c                  |  361 --------
  arch/m68k/kernel/vectors.c                   |  145 +++
  arch/m68k/lib/memcpy.c                       |    9 +
  arch/m68k/mm/init_no.c                       |   21 +-
  arch/m68k/platform/520x/config.c             |    6 +-
  arch/m68k/platform/520x/gpio.c               |   50 +-
  arch/m68k/platform/68328/Makefile            |    5 +-
  arch/m68k/platform/68328/entry.S             |   18 +-
  arch/m68k/platform/68360/Makefile            |    6 +-
  arch/m68k/platform/68360/entry.S             |    4 +-
  arch/m68k/platform/coldfire/entry.S          |    6 +-
  35 files changed, 2596 insertions(+), 3208 deletions(-)
  create mode 100644 arch/m68k/Kconfig.bus
  create mode 100644 arch/m68k/Kconfig.cpu
  create mode 100644 arch/m68k/Kconfig.devices
  rename arch/m68k/{Kconfig.nommu => Kconfig.machine} (58%)
  delete mode 100644 arch/m68k/Kconfig.mmu
  delete mode 100644 arch/m68k/Makefile_mm
  delete mode 100644 arch/m68k/Makefile_no
  delete mode 100644 arch/m68k/include/asm/entry_mm.h
  delete mode 100644 arch/m68k/include/asm/entry_no.h
  delete mode 100644 arch/m68k/kernel/Makefile_mm
  delete mode 100644 arch/m68k/kernel/Makefile_no
  delete mode 100644 arch/m68k/kernel/traps_mm.c
  delete mode 100644 arch/m68k/kernel/traps_no.c
  create mode 100644 arch/m68k/kernel/vectors.c

WARNING: multiple messages have this Message-ID (diff)
From: Greg Ungerer <gerg@snapgear.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: <gerg@uclinux.org>, <linux-kernel@vger.kernel.org>,
	<linux-m68k@vger.kernel.org>, <uclinux-dev@uclinux.org>,
	<geert@linux-m68k.org>
Subject: Re: [git pull] m68knommu arch updates for 3.2
Date: Wed, 26 Oct 2011 00:15:36 +1000	[thread overview]
Message-ID: <4EA6C488.1030606@snapgear.com> (raw)
In-Reply-To: <CA+55aFzLBaLpBWA8tspNbCyzMYeruK-waRCpRwVnZEOGw9FhRQ@mail.gmail.com>

Hi Linus,

On 10/25/2011 05:42 PM, Linus Torvalds wrote:
> [ Another cut-and-paste reply, please replace "p9" with "m68knommu".
> Also note that signed emails aren't convenient (the tools that
> actually verify signed emails are unusuable in all other respects), so
> an extra signed tag that actually specifies both the top commit and
> the repository I'm supposed to pull is likely the best approach if you
> don't have access to a trusted host ]

I don't think I will get back onto kernel.org anytime soon, I am in
the "geographically-isolated developers" group :-(

But I have put a signed tag on the top commit now, with the top
commit and repository info. Is this what you are looking for?

So it was:

    git://github.com/gregungerer/m68knommu for-linus

with new for-linus top tag:

    m68knommu-for-linus-3.2-merge-window

and pull comments:

There is a big cleanup and reworking of the Kconfig files. They are no
longer splilt on the somewhat arbitary basis of MMU and non-MMU targets.
Also some other merging and cleaning up of arch Makefiles, and the trap
handling code. Of course a couple of bug fixes in there too.

Thanks
Greg




The following changes since commit 899e3ee404961a90b828ad527573aaaac39f0ab1:
   Linus Torvalds (1):
         Linux 3.1-rc10

are available in the git repository at:

   git://github.com/gregungerer/m68knommu for-linus

Greg Ungerer (11):
       m68k: fix memcpy to unmatched/unaligned source and dest on 68000
       m68k: reorganize Kconfig options to improve mmu/non-mmu selections
       m68k: merge mmu and non-mmu arch Makefiles
       m68k: merge the mmu and non-mmu kernel/Makefiles
       m68k: merge mmu and non-mmu include/asm/entry.h files
       m68k: move hardware vector setting from traps.c to its own file
       m68k: merge the mmu and non-mmu traps.c files
       m68knommu: use generic section names in setup code
       m68knommu: use generic section names in mm/init code
       m68knommu: remove extern declarations of memory_start/memory_end 
from mm/init
       m68knommu: create common externs for _ram* vars

Paul Bolle (2):
       m68k: drop unused Kconfig symbols
       m68k: drop unused Kconfig symbols

Peter Turczak (1):
       m68knommu: fix problems with SPI/GPIO on ColdFire 520x

  arch/m68k/Kconfig                            |  195 +----
  arch/m68k/Kconfig.bus                        |   55 ++
  arch/m68k/Kconfig.cpu                        |  429 +++++++++
  arch/m68k/Kconfig.devices                    |  123 +++
  arch/m68k/{Kconfig.nommu => Kconfig.machine} |  562 ++++--------
  arch/m68k/Kconfig.mmu                        |  411 ---------
  arch/m68k/Makefile                           |  168 ++++-
  arch/m68k/Makefile_mm                        |  121 ---
  arch/m68k/Makefile_no                        |  124 ---
  arch/m68k/include/asm/entry.h                |  255 ++++++-
  arch/m68k/include/asm/entry_mm.h             |  128 ---
  arch/m68k/include/asm/entry_no.h             |  181 ----
  arch/m68k/include/asm/m520xsim.h             |   26 +-
  arch/m68k/include/asm/mcfqspi.h              |    8 +-
  arch/m68k/include/asm/page_no.h              |    3 +
  arch/m68k/include/asm/processor.h            |    6 +
  arch/m68k/include/asm/sections.h             |    2 +
  arch/m68k/kernel/Makefile                    |   24 +-
  arch/m68k/kernel/Makefile_mm                 |   17 -
  arch/m68k/kernel/Makefile_no                 |   10 -
  arch/m68k/kernel/entry_no.S                  |    6 +-
  arch/m68k/kernel/setup_no.c                  |    4 +-
  arch/m68k/kernel/traps.c                     | 1108 
+++++++++++++++++++++++-
  arch/m68k/kernel/traps_mm.c                  | 1207 
--------------------------
  arch/m68k/kernel/traps_no.c                  |  361 --------
  arch/m68k/kernel/vectors.c                   |  145 +++
  arch/m68k/lib/memcpy.c                       |    9 +
  arch/m68k/mm/init_no.c                       |   21 +-
  arch/m68k/platform/520x/config.c             |    6 +-
  arch/m68k/platform/520x/gpio.c               |   50 +-
  arch/m68k/platform/68328/Makefile            |    5 +-
  arch/m68k/platform/68328/entry.S             |   18 +-
  arch/m68k/platform/68360/Makefile            |    6 +-
  arch/m68k/platform/68360/entry.S             |    4 +-
  arch/m68k/platform/coldfire/entry.S          |    6 +-
  35 files changed, 2596 insertions(+), 3208 deletions(-)
  create mode 100644 arch/m68k/Kconfig.bus
  create mode 100644 arch/m68k/Kconfig.cpu
  create mode 100644 arch/m68k/Kconfig.devices
  rename arch/m68k/{Kconfig.nommu => Kconfig.machine} (58%)
  delete mode 100644 arch/m68k/Kconfig.mmu
  delete mode 100644 arch/m68k/Makefile_mm
  delete mode 100644 arch/m68k/Makefile_no
  delete mode 100644 arch/m68k/include/asm/entry_mm.h
  delete mode 100644 arch/m68k/include/asm/entry_no.h
  delete mode 100644 arch/m68k/kernel/Makefile_mm
  delete mode 100644 arch/m68k/kernel/Makefile_no
  delete mode 100644 arch/m68k/kernel/traps_mm.c
  delete mode 100644 arch/m68k/kernel/traps_no.c
  create mode 100644 arch/m68k/kernel/vectors.c

  reply	other threads:[~2011-10-25 14:15 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-25  2:29 [git pull] m68knommu arch updates for 3.2 Greg Ungerer
2011-10-25  2:29 ` Greg Ungerer
2011-10-25  7:42 ` Linus Torvalds
2011-10-25 14:15   ` Greg Ungerer [this message]
2011-10-25 14:15     ` Greg Ungerer
2011-10-25 14:27     ` Linus Torvalds

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=4EA6C488.1030606@snapgear.com \
    --to=gerg@snapgear.com \
    --cc=geert@linux-m68k.org \
    --cc=gerg@uclinux.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-m68k@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=uclinux-dev@uclinux.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.