From: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 5/8] mips: dbau1x00: move CONFIG_SYS_TEXT_BASE away from config.mk
Date: Fri, 11 Dec 2015 14:46:04 +0100 [thread overview]
Message-ID: <566AD39C.2060105@gmail.com> (raw)
In-Reply-To: <1449804151-12707-6-git-send-email-yamada.masahiro@socionext.com>
Am 11.12.2015 um 04:22 schrieb Masahiro Yamada:
> We can delete board/dbau1x00/config.mk by moving the define of
> CONFIG_SYS_TEXT_BASE to somewhere else. Other MIPS boards are
> still defining it in include/config/${BOARD}.h, so I am following
> that way here.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
> board/dbau1x00/config.mk | 16 ----------------
> include/configs/dbau1x00.h | 5 +++++
> 2 files changed, 5 insertions(+), 16 deletions(-)
> delete mode 100644 board/dbau1x00/config.mk
>
> diff --git a/board/dbau1x00/config.mk b/board/dbau1x00/config.mk
> deleted file mode 100644
> index b378ac8..0000000
> --- a/board/dbau1x00/config.mk
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -#
> -# (C) Copyright 2003
> -# Wolfgang Denk, DENX Software Engineering, wd at denx.de.
> -#
> -# SPDX-License-Identifier: GPL-2.0+
> -#
> -
> -#
> -# AMD development board AMD Alchemy DbAu1x00, MIPS32 core
> -#
> -
> -# ROM version
> -CONFIG_SYS_TEXT_BASE = 0xbfc00000
> -
> -# RAM version
> -#CONFIG_SYS_TEXT_BASE = 0x80100000
> diff --git a/include/configs/dbau1x00.h b/include/configs/dbau1x00.h
> index 3be44d4..817676f 100644
> --- a/include/configs/dbau1x00.h
> +++ b/include/configs/dbau1x00.h
> @@ -147,6 +147,11 @@
> #define CONFIG_FLASH_CFI_DRIVER 1
>
> /* The following #defines are needed to get flash environment right */
> +/* ROM version */
> +#define CONFIG_SYS_TEXT_BASE 0xbfc00000
> +/* RAM version */
> +/* #define CONFIG_SYS_TEXT_BASE 0x80100000 */
> +
> #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
> #define CONFIG_SYS_MONITOR_LEN (192 << 10)
>
>
Acked-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
--
- Daniel
next prev parent reply other threads:[~2015-12-11 13:46 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-11 3:22 [U-Boot] [PATCH 0/8] m68k, mips, powerpc, kbuild: move CONFIG_SYS_TEXT_BASE Masahiro Yamada
2015-12-11 3:22 ` [U-Boot] [PATCH 1/8] m68k: move CONFIG_SYS_TEXT_BASE to defconfig files Masahiro Yamada
2015-12-13 19:55 ` Angelo Dureghello
2016-01-06 0:24 ` Simon Glass
2016-01-20 21:00 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-11 3:22 ` [U-Boot] [PATCH 2/8] m68k: M54418TWR: drop board/freescale/m54418twr/config.mk Masahiro Yamada
2015-12-13 19:55 ` Angelo Dureghello
2016-01-20 21:00 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-11 3:22 ` [U-Boot] [PATCH 3/8] microblaze: move CONFIG_SYS_TEXT_BASE to defconfig Masahiro Yamada
2015-12-11 7:32 ` Michal Simek
2016-01-20 21:00 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-11 3:22 ` [U-Boot] [PATCH 4/8] mips: vct: move CONFIG_SYS_TEXT_BASE away from config.mk Masahiro Yamada
2015-12-11 13:45 ` Daniel Schwierzeck
2016-01-20 21:00 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-11 3:22 ` [U-Boot] [PATCH 5/8] mips: dbau1x00: " Masahiro Yamada
2015-12-11 13:46 ` Daniel Schwierzeck [this message]
2016-01-20 21:00 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-11 3:22 ` [U-Boot] [PATCH 6/8] mips: pb1x00: " Masahiro Yamada
2015-12-11 13:46 ` Daniel Schwierzeck
2016-01-20 21:01 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-11 3:22 ` [U-Boot] [PATCH 7/8] powerpc: yucca: drop redundant CONFIG_SYS_TEXT_BASE " Masahiro Yamada
2015-12-11 4:04 ` Stefan Roese
2016-01-20 21:01 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-11 3:22 ` [U-Boot] [PATCH 8/8] kbuild: drop workaround for old style CONFIG_SYS_TEXT_BASE defines Masahiro Yamada
2015-12-11 4:05 ` Stefan Roese
2016-01-20 21:01 ` [U-Boot] [U-Boot, " Tom Rini
2015-12-13 19:54 ` [U-Boot] [PATCH 0/8] m68k, mips, powerpc, kbuild: move CONFIG_SYS_TEXT_BASE Angelo Dureghello
2015-12-14 9:52 ` Angelo Dureghello
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=566AD39C.2060105@gmail.com \
--to=daniel.schwierzeck@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 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.