From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 01/11] ARM: atmel: Rename MA5D4EVK
Date: Tue, 2 May 2017 20:27:40 +0200 [thread overview]
Message-ID: <20170502182750.8907-1-marex@denx.de> (raw)
The board is now manufactured by Aries Embedded GmbH , rename it.
Signed-off-by: Marek Vasut <marex@denx.de>
---
arch/arm/mach-at91/Kconfig | 4 ++--
board/{denx => aries}/ma5d4evk/Kconfig | 2 +-
board/{denx => aries}/ma5d4evk/MAINTAINERS | 4 ++--
board/{denx => aries}/ma5d4evk/Makefile | 0
board/{denx => aries}/ma5d4evk/ma5d4evk.c | 0
include/configs/ma5d4evk.h | 4 ++--
6 files changed, 7 insertions(+), 7 deletions(-)
rename board/{denx => aries}/ma5d4evk/Kconfig (88%)
rename board/{denx => aries}/ma5d4evk/MAINTAINERS (71%)
rename board/{denx => aries}/ma5d4evk/Makefile (100%)
rename board/{denx => aries}/ma5d4evk/ma5d4evk.c (100%)
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index 99b88d1785..033c1efd2b 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -124,7 +124,7 @@ config TARGET_SAMA5D4EK
select BOARD_EARLY_INIT_F
config TARGET_MA5D4EVK
- bool "DENX MA5D4EVK Evaluation Kit"
+ bool "Aries MA5D4EVK Evaluation Kit"
select CPU_V7
select SUPPORT_SPL
@@ -169,6 +169,7 @@ endchoice
config SYS_SOC
default "at91"
+source "board/aries/ma5d4evk/Kconfig"
source "board/atmel/at91rm9200ek/Kconfig"
source "board/atmel/at91sam9260ek/Kconfig"
source "board/atmel/at91sam9261ek/Kconfig"
@@ -186,7 +187,6 @@ source "board/atmel/sama5d4ek/Kconfig"
source "board/bluewater/gurnard/Kconfig"
source "board/bluewater/snapper9260/Kconfig"
source "board/calao/usb_a9263/Kconfig"
-source "board/denx/ma5d4evk/Kconfig"
source "board/egnite/ethernut5/Kconfig"
source "board/esd/meesc/Kconfig"
source "board/l+g/vinco/Kconfig"
diff --git a/board/denx/ma5d4evk/Kconfig b/board/aries/ma5d4evk/Kconfig
similarity index 88%
rename from board/denx/ma5d4evk/Kconfig
rename to board/aries/ma5d4evk/Kconfig
index b4ef106532..56b4f4a1a8 100644
--- a/board/denx/ma5d4evk/Kconfig
+++ b/board/aries/ma5d4evk/Kconfig
@@ -4,7 +4,7 @@ config SYS_BOARD
default "ma5d4evk"
config SYS_VENDOR
- default "denx"
+ default "aries"
config SYS_CONFIG_NAME
default "ma5d4evk"
diff --git a/board/denx/ma5d4evk/MAINTAINERS b/board/aries/ma5d4evk/MAINTAINERS
similarity index 71%
rename from board/denx/ma5d4evk/MAINTAINERS
rename to board/aries/ma5d4evk/MAINTAINERS
index bb25a9ca94..664a29a0df 100644
--- a/board/denx/ma5d4evk/MAINTAINERS
+++ b/board/aries/ma5d4evk/MAINTAINERS
@@ -1,6 +1,6 @@
-DENX MA5D4EVK BOARD
+Aries MA5D4EVK BOARD
M: Marek Vasut <marek.vasut@gmail.com>
S: Maintained
-F: board/denx/ma5d4evk/
+F: board/aries/ma5d4evk/
F: include/configs/ma5d4evk.h
F: configs/ma5d4evk_defconfig
diff --git a/board/denx/ma5d4evk/Makefile b/board/aries/ma5d4evk/Makefile
similarity index 100%
rename from board/denx/ma5d4evk/Makefile
rename to board/aries/ma5d4evk/Makefile
diff --git a/board/denx/ma5d4evk/ma5d4evk.c b/board/aries/ma5d4evk/ma5d4evk.c
similarity index 100%
rename from board/denx/ma5d4evk/ma5d4evk.c
rename to board/aries/ma5d4evk/ma5d4evk.c
diff --git a/include/configs/ma5d4evk.h b/include/configs/ma5d4evk.h
index db58f735bc..24c73bccd1 100644
--- a/include/configs/ma5d4evk.h
+++ b/include/configs/ma5d4evk.h
@@ -1,5 +1,5 @@
/*
- * DENX MA5D4 configuration
+ * Aries MA5D4 configuration
* Copyright (C) 2015 Marek Vasut <marex@denx.de>
*
* SPDX-License-Identifier: GPL-2.0+
@@ -109,7 +109,7 @@
/* USB device */
#define CONFIG_USB_ETHER
#define CONFIG_USB_ETH_RNDIS
-#define CONFIG_USBNET_MANUFACTURER "DENX"
+#define CONFIG_USBNET_MANUFACTURER "AriesEmbedded"
#endif
/*
--
2.11.0
next reply other threads:[~2017-05-02 18:27 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-02 18:27 Marek Vasut [this message]
2017-05-02 18:27 ` [U-Boot] [PATCH 02/11] ARM: at91: ma5d4: Switch DDR2 controller to sequencial address decoding Marek Vasut
2017-06-30 1:26 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 03/11] ARM: at91: ma5d4: Reset CAN controllers late Marek Vasut
2017-06-30 1:26 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 04/11] ARM: at91: ma5d4: Enable DFU and UMS Marek Vasut
2017-06-30 1:26 ` [U-Boot] [U-Boot,04/11] " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 05/11] ARM: at91: ma5d4: Init SD/MMC controller in SPL Marek Vasut
2017-06-30 1:27 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 06/11] ARM: at91: ma5d4: Swap SD/MMC controller order Marek Vasut
2017-06-30 1:27 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 07/11] ARM: at91: ma5d4: Enable support for booting from eMMC Marek Vasut
2017-06-30 1:27 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 08/11] ARM: at91: ma5d4: Boot from MMC2 when using SAM-BA Marek Vasut
2017-06-30 1:27 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 09/11] ARM: at91: ma5d4: Switch environment start to eMMC Marek Vasut
2017-06-30 1:27 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 10/11] ARM: at91: ma5d4: Enable random ethaddr Marek Vasut
2017-06-30 1:27 ` [U-Boot] [U-Boot, " Tom Rini
2017-05-02 18:27 ` [U-Boot] [PATCH 11/11] ARM: at91: ma5d4: Support both SF and eMMC SoMs Marek Vasut
2017-06-30 1:27 ` [U-Boot] [U-Boot, " Tom Rini
2017-06-30 1:26 ` [U-Boot] [U-Boot,01/11] ARM: atmel: Rename MA5D4EVK Tom Rini
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=20170502182750.8907-1-marex@denx.de \
--to=marex@denx.de \
--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