public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Ben Warren <biggerbadderben@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 04/12 V2] miiphybb: move to drivers/net/phy
Date: Thu, 28 Aug 2008 22:23:14 -0700	[thread overview]
Message-ID: <48B787C2.4070309@gmail.com> (raw)
In-Reply-To: <1219967292-30645-1-git-send-email-plagnioj@jcrosoft.com>

Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>   
Acked-by: Ben Warren <biggerbadderben@gmail.com>
> ---
>  Makefile                               |    1 +
>  common/Makefile                        |    1 -
>  drivers/net/phy/Makefile               |   46 ++++++++++++++++++++++++++++++++
>  {common => drivers/net/phy}/miiphybb.c |    0 
>  4 files changed, 47 insertions(+), 1 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index 89fea72..9129300 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -227,6 +227,7 @@ LIBS += drivers/mtd/nand_legacy/libnand_legacy.a
>  LIBS += drivers/mtd/onenand/libonenand.a
>  LIBS += drivers/mtd/spi/libspi_flash.a
>  LIBS += drivers/net/libnet.a
> +LIBS += drivers/net/phy/libphy.a
>  LIBS += drivers/net/sk98lin/libsk98lin.a
>  LIBS += drivers/pci/libpci.a
>  LIBS += drivers/pcmcia/libpcmcia.a
> diff --git a/common/Makefile b/common/Makefile
> index 3e4829f..ff2e6c6 100644
> --- a/common/Makefile
> +++ b/common/Makefile
> @@ -133,7 +133,6 @@ COBJS-$(CONFIG_LCD) += lcd.o
>  COBJS-y += lists.o
>  COBJS-$(CONFIG_LYNXKDI) += lynxkdi.o
>  COBJS-y += memsize.o
> -COBJS-$(CONFIG_BITBANGMII) += miiphybb.o
>  COBJS-y += miiphyutil.o
>  COBJS-y += s_record.o
>  COBJS-y += serial.o
> diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile
> new file mode 100644
> index 0000000..10dc082
> --- /dev/null
> +++ b/drivers/net/phy/Makefile
> @@ -0,0 +1,46 @@
> +#
> +# (C) Copyright 2006
> +# Wolfgang Denk, DENX Software Engineering, wd at denx.de.
> +#
> +# See file CREDITS for list of people who contributed to this
> +# project.
> +#
> +# This program is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU General Public License as
> +# published by the Free Software Foundation; either version 2 of
> +# the License, or (at your option) any later version.
> +#
> +# This program is distributed in the hope that it will be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License
> +# along with this program; if not, write to the Free Software
> +# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> +# MA 02111-1307 USA
> +#
> +
> +include $(TOPDIR)/config.mk
> +
> +LIB	:= $(obj)libphy.a
> +
> +COBJS-$(CONFIG_BITBANGMII) += miiphybb.o
> +
> +COBJS	:= $(COBJS-y)
> +SRCS	:= $(COBJS:.o=.c)
> +OBJS	:= $(addprefix $(obj),$(COBJS))
> +
> +all:	$(LIB)
> +
> +$(LIB):	$(obj).depend $(OBJS)
> +	$(AR) $(ARFLAGS) $@ $(OBJS)
> +
> +#########################################################################
> +
> +# defines $(obj).depend target
> +include $(SRCTREE)/rules.mk
> +
> +sinclude $(obj).depend
> +
> +#########################################################################
> diff --git a/common/miiphybb.c b/drivers/net/phy/miiphybb.c
> similarity index 100%
> rename from common/miiphybb.c
> rename to drivers/net/phy/miiphybb.c
>   

  reply	other threads:[~2008-08-29  5:23 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 [this message]
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
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=48B787C2.4070309@gmail.com \
    --to=biggerbadderben@gmail.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