public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Makefile Pull Request
Date: Fri, 29 Aug 2008 22:01:21 +0200	[thread overview]
Message-ID: <20080829200121.GA6190@game.jcrosoft.org> (raw)
In-Reply-To: <20080829132248.B765024899@gemini.denx.de>

On 15:22 Fri 29 Aug     , Wolfgang Denk wrote:
> Dear Jean-Christophe PLAGNIOL-VILLARD,
> 
> In message <20080829103205.GD30743@game.jcrosoft.org> you wrote:
> > Hi Wolfgang
> > Please pull
> > The following changes since commit 33aa4eac66b71c797bbc13b3afe432a2132947d4:
> >   Wolfgang Denk (1):
> >         Merge branch 'master' of /home/wd/git/u-boot/custodians
> > 
> > are available in the git repository at:
> 
> Please cleanup as requested first, then rebase your tree.
> 
> Thanks.

done as your comment in V3 reply to this mail

add please pull

The following changes since commit 33aa4eac66b71c797bbc13b3afe432a2132947d4:
  Wolfgang Denk (1):
        Merge branch 'master' of /home/wd/git/u-boot/custodians

are available in the git repository at:

  git://git.denx.de/u-boot-arm.git Makefile

Jean-Christophe PLAGNIOL-VILLARD (12):
      gunzip: move to lib_generic
      soft_i2c: move to drivers/i2c
      soft_spi: move to drivers/spi
      miiphybb: move to drivers/net/phy
      crc16: move to lib_generic
      autoscript: Move conditional compilation to Makefile
      miiphyutil: Move conditional compilation to Makefile
      common/Makefile: order by functionality
      cmd_terminal: remove no need ifdef
      update linux/list
      devices: merge to list_head
      fs: Move conditional compilation to Makefile

 Makefile                               |    1 +
 common/Makefile                        |   79 ++--
 common/cmd_autoscript.c                |    4 -
 common/cmd_console.c                   |    9 +-
 common/cmd_terminal.c                  |   14 +-
 common/console.c                       |   62 ++--
 common/devices.c                       |   79 ++--
 common/lists.c                         |  734 --------------------------------
 common/miiphyutil.c                    |    2 -
 common/usb_kbd.c                       |   14 +-
 drivers/i2c/Makefile                   |    1 +
 {common => drivers/i2c}/soft_i2c.c     |    0 
 drivers/net/phy/Makefile               |   46 ++
 {common => drivers/net/phy}/miiphybb.c |    0 
 drivers/spi/Makefile                   |    3 +-
 {common => drivers/spi}/soft_spi.c     |    0 
 fs/Makefile                            |   10 +-
 fs/cramfs/Makefile                     |    7 +-
 fs/cramfs/cramfs.c                     |    5 -
 fs/cramfs/uncompress.c                 |    4 -
 fs/ext2/Makefile                       |    6 +-
 fs/ext2/dev.c                          |    3 -
 fs/ext2/ext2fs.c                       |    4 -
 fs/fat/Makefile                        |    6 +-
 fs/fat/fat.c                           |    4 -
 fs/fat/file.c                          |    4 -
 fs/fdos/Makefile                       |    6 +-
 fs/fdos/dev.c                          |    5 -
 fs/fdos/fat.c                          |    4 -
 fs/fdos/fdos.c                         |    5 +-
 fs/fdos/fs.c                           |    4 -
 fs/fdos/subdir.c                       |    3 -
 fs/fdos/vfat.c                         |    5 -
 fs/jffs2/Makefile                      |    8 +-
 fs/jffs2/compr_lzari.c                 |    3 -
 fs/jffs2/compr_lzo.c                   |    4 -
 fs/jffs2/compr_rtime.c                 |    4 -
 fs/jffs2/compr_rubin.c                 |    4 -
 fs/jffs2/compr_zlib.c                  |    4 -
 fs/jffs2/jffs2_1pass.c                 |    5 -
 fs/jffs2/jffs2_nand_1pass.c            |    2 +-
 fs/jffs2/mini_inflate.c                |    5 -
 fs/reiserfs/Makefile                   |    6 +-
 fs/reiserfs/dev.c                      |    4 -
 fs/reiserfs/mode_string.c              |    3 -
 fs/reiserfs/reiserfs.c                 |    4 -
 include/devices.h                      |    8 +-
 include/linux/list.h                   |  506 ++++++++++++++++++++--
 include/linux/poison.h                 |   11 +
 include/lists.h                        |   77 ----
 lib_generic/Makefile                   |    2 +
 {common => lib_generic}/crc16.c        |    0 
 {common => lib_generic}/gunzip.c       |    0 
 53 files changed, 682 insertions(+), 1111 deletions(-)
 delete mode 100644 common/lists.c
 rename {common => drivers/i2c}/soft_i2c.c (100%)
 create mode 100644 drivers/net/phy/Makefile
 rename {common => drivers/net/phy}/miiphybb.c (100%)
 rename {common => drivers/spi}/soft_spi.c (100%)
 create mode 100644 include/linux/poison.h
 delete mode 100644 include/lists.h
 rename {common => lib_generic}/crc16.c (100%)
 rename {common => lib_generic}/gunzip.c (100%)

Best Regards,
J.

  reply	other threads:[~2008-08-29 20:01 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-28 10:26 [U-Boot] Makefile cleanup and u-boot size reduction Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27 ` [U-Boot] [PATCH 01/12] gunzip: move to lib_generic Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27   ` [U-Boot] [PATCH 02/12] soft_i2c: move to drivers/i2c Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27     ` [U-Boot] [PATCH 03/12] soft_spi: move to drivers/spi Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27       ` [U-Boot] [PATCH 04/12] miiphybb: move to drivers/net Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27         ` [U-Boot] [PATCH 05/12] crc16: move to lib_generic Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27           ` [U-Boot] [PATCH 06/12] autoscript: Move conditional compilation to Makefile Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27             ` [U-Boot] [PATCH 07/12] miiphyutil: " Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27               ` [U-Boot] [PATCH 08/12] common/Makefile: order by functionality Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27                 ` [U-Boot] [PATCH 09/12] cmd_terminal: remove no need ifdef Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27                   ` [U-Boot] [PATCH 10/12] update linux/list Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27                     ` [U-Boot] [PATCH 11/12] devices: merge to list_head Jean-Christophe PLAGNIOL-VILLARD
2008-08-28 10:27                       ` [U-Boot] [PATCH 12/12] fs: Move conditional compilation to Makefile Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 13:19                     ` [U-Boot] [PATCH 10/12] update linux/list Wolfgang Denk
2008-08-28 15:26             ` [U-Boot] [PATCH 06/12] autoscript: Move conditional compilation to Makefile Peter Tyser
2008-08-28 15:38               ` Peter Tyser
2008-08-28 23:47                 ` Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 10:22                   ` [U-Boot] [PATCH 06/12 V2] " Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 10:22                     ` [U-Boot] [PATCH 08/12 V2] common/Makefile: order by functionality Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 13:10                     ` [U-Boot] [PATCH 06/12 V2] autoscript: Move conditional compilation to Makefile Wolfgang Denk
2008-08-28 17:06         ` [U-Boot] [PATCH 04/12] miiphybb: move to drivers/net Ben Warren
2008-08-28 23:48           ` [U-Boot] [PATCH 04/12 V2] miiphybb: move to drivers/net/phy Jean-Christophe PLAGNIOL-VILLARD
2008-08-29  5:23             ` Ben Warren
2008-08-28 10:30 ` [U-Boot] Makefile cleanup and u-boot size reduction Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 10:32 ` [U-Boot] Makefile Pull Request Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 13:22   ` Wolfgang Denk
2008-08-29 20:01     ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2008-08-29 20:03       ` [U-Boot] [PATCH 01/12 V3] gunzip: move to lib_generic Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:03         ` [U-Boot] [PATCH 02/12 V3] soft_i2c: move to drivers/i2c Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:03           ` [U-Boot] [PATCH 03/12 V3] soft_spi: move to drivers/spi Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:03             ` [U-Boot] [PATCH 04/12 V3] miiphybb: move to drivers/net/phy Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:03               ` [U-Boot] [PATCH 05/12 V3] crc16: move to lib_generic Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:03                 ` [U-Boot] [PATCH 06/12 V3] autoscript: Move conditional compilation to Makefile Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:04                   ` [U-Boot] [PATCH 07/12 V3] miiphyutil: " Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:04                     ` [U-Boot] [PATCH 08/12 V3] common/Makefile: order by functionality Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:04                       ` [U-Boot] [PATCH 09/12 V3] cmd_terminal: remove no need ifdef Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:04                         ` [U-Boot] [PATCH 10/12 V3] update linux/list Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:04                           ` [U-Boot] [PATCH 11/12 V3] devices: merge to list_head Jean-Christophe PLAGNIOL-VILLARD
2008-08-29 20:04                             ` [U-Boot] [PATCH 12/12 V3] fs: Move conditional compilation to Makefile Jean-Christophe PLAGNIOL-VILLARD
2008-08-31  2:36                             ` [U-Boot] [PATCH 2/3] devices: merge to list_head Jean-Christophe PLAGNIOL-VILLARD
2008-08-31  2:36                           ` [U-Boot] [PATCH 1/3] update linux/list Jean-Christophe PLAGNIOL-VILLARD
2008-08-31 22:17       ` [U-Boot] Makefile Pull Request Wolfgang Denk

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=20080829200121.GA6190@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=u-boot@lists.denx.de \
    /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