public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stelian Pop <stelian@popies.net>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH ARM] AT91CAP9 support : move board files to Atmel vendor	directory.
Date: Mon, 04 Feb 2008 10:42:57 +0100	[thread overview]
Message-ID: <1202118177.6202.6.camel@galileo> (raw)
In-Reply-To: <20080203135435.46004d53@siona>


Le dimanche 03 f?vrier 2008 ? 13:54 +0100, Haavard Skinnemoen a ?crit :

> I think they should be collected according to board manufacturer or
> brand, not cpu type. So boards/atmel is for boards manufactured by
> Atmel, not all boards that happen to have an Atmel cpu on them.
> 
> Or at least that's what appears to be the current practice.

Ok, so everybody seem to agree that it is good practice to use the
vendor directories.

The (incremental) patch below moves the AT91CAP9ADK board files into the
vendor directory.

Stelian.

---
AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.

Signed-off-by: Stelian Pop <stelian@popies.net>
---
 Makefile                                    |    2 +-
 board/{ => atmel}/at91cap9adk/Makefile      |    0 
 board/{ => atmel}/at91cap9adk/at91cap9adk.c |    0 
 board/{ => atmel}/at91cap9adk/config.mk     |    0 
 board/{ => atmel}/at91cap9adk/led.c         |    0 
 board/{ => atmel}/at91cap9adk/nand.c        |    0 
 board/{ => atmel}/at91cap9adk/u-boot.lds    |    0 
 7 files changed, 1 insertions(+), 1 deletions(-)
 rename board/{ => atmel}/at91cap9adk/Makefile (100%)
 rename board/{ => atmel}/at91cap9adk/at91cap9adk.c (100%)
 rename board/{ => atmel}/at91cap9adk/config.mk (100%)
 rename board/{ => atmel}/at91cap9adk/led.c (100%)
 rename board/{ => atmel}/at91cap9adk/nand.c (100%)
 rename board/{ => atmel}/at91cap9adk/u-boot.lds (100%)

diff --git a/Makefile b/Makefile
index 743c61f..d5c8b2a 100644
--- a/Makefile
+++ b/Makefile
@@ -2302,7 +2302,7 @@ xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$
 xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
 
 at91cap9adk_config	:	unconfig
-	@$(MKCONFIG) $(@:_config=) arm arm926ejs at91cap9adk NULL at91cap9
+	@$(MKCONFIG) $(@:_config=) arm arm926ejs at91cap9adk atmel at91cap9
 
 at91rm9200dk_config	:	unconfig
 	@$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
diff --git a/board/at91cap9adk/Makefile b/board/atmel/at91cap9adk/Makefile
similarity index 100%
rename from board/at91cap9adk/Makefile
rename to board/atmel/at91cap9adk/Makefile
diff --git a/board/at91cap9adk/at91cap9adk.c b/board/atmel/at91cap9adk/at91cap9adk.c
similarity index 100%
rename from board/at91cap9adk/at91cap9adk.c
rename to board/atmel/at91cap9adk/at91cap9adk.c
diff --git a/board/at91cap9adk/config.mk b/board/atmel/at91cap9adk/config.mk
similarity index 100%
rename from board/at91cap9adk/config.mk
rename to board/atmel/at91cap9adk/config.mk
diff --git a/board/at91cap9adk/led.c b/board/atmel/at91cap9adk/led.c
similarity index 100%
rename from board/at91cap9adk/led.c
rename to board/atmel/at91cap9adk/led.c
diff --git a/board/at91cap9adk/nand.c b/board/atmel/at91cap9adk/nand.c
similarity index 100%
rename from board/at91cap9adk/nand.c
rename to board/atmel/at91cap9adk/nand.c
diff --git a/board/at91cap9adk/u-boot.lds b/board/atmel/at91cap9adk/u-boot.lds
similarity index 100%
rename from board/at91cap9adk/u-boot.lds
rename to board/atmel/at91cap9adk/u-boot.lds
-- 
1.5.3.3


-- 
Stelian Pop <stelian@popies.net>

  parent reply	other threads:[~2008-02-04  9:42 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-31 21:15 [U-Boot-Users] [PATCH ARM 0/5] AT91CAP9 support Stelian Pop
2008-01-31 21:15 ` [U-Boot-Users] [PATCH 1/5] AT91CAP9 support : build integration Stelian Pop
2008-01-31 21:15 ` [U-Boot-Users] [PATCH 2/5] AT91CAP9 support : include/ files Stelian Pop
2008-01-31 21:15 ` [U-Boot-Users] [PATCH 3/5] AT91CAP9 support : cpu/ files Stelian Pop
2008-01-31 23:24   ` Ulf Samuelsson
2008-02-01 20:48     ` Stelian Pop
2008-01-31 21:15 ` [U-Boot-Users] [PATCH 4/5] AT91CAP9 support : board/ files Stelian Pop
2008-01-31 22:59   ` Ulf Samuelsson
2008-02-01 20:52     ` Stelian Pop
2008-02-02  5:59       ` Stefan Roese
2008-02-02 21:25         ` Stelian Pop
2008-02-03  6:44           ` Ulf Samuelsson
2008-02-03 15:49             ` Wolfgang Denk
2008-02-03 12:54           ` Haavard Skinnemoen
2008-02-03 20:58             ` Jean-Christophe PLAGNIOL-VILLARD
2008-02-04  9:42             ` Stelian Pop [this message]
2008-02-04  9:54               ` [U-Boot-Users] [PATCH ARM] AT91CAP9 support : move board files to Atmel vendor directory Stefan Roese
2008-02-04 10:26               ` [U-Boot-Users] [PATCH ARM] AT91CAP9 support : move board files to Atmel vendordirectory Peter Pearse
2008-02-02 11:40       ` [U-Boot-Users] [PATCH] Move AT91RM9200DK board support under board/atmel Haavard Skinnemoen
2008-02-02 12:37         ` Haavard Skinnemoen
2008-02-14 14:20           ` Peter Pearse
2008-02-02 12:47         ` Stefan Roese
2008-01-31 21:15 ` [U-Boot-Users] [PATCH 5/5] AT91CAP9 support : MACB changes Stelian Pop

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=1202118177.6202.6.camel@galileo \
    --to=stelian@popies.net \
    --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