diff options
| author | Wolfgang Denk <wd@denx.de> | 2010-10-04 19:58:00 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-10-18 22:01:21 +0200 | 
| commit | d24f2d321d8e78e990d100000d8efc4845c78b1c (patch) | |
| tree | 3aefa485709092302434dbf442959b468b38ea64 /include/configs/P1_P2_RDB.h | |
| parent | 9329cdfb3003a26bac1324fc05dbbbafc00dc37e (diff) | |
| download | olio-uboot-2014.01-d24f2d321d8e78e990d100000d8efc4845c78b1c.tar.xz olio-uboot-2014.01-d24f2d321d8e78e990d100000d8efc4845c78b1c.zip | |
mkconfig: change CONFIG_MK_ prefix into plain CONFIG_
When planning for more generalization and Makefile cleanup it became
obvious that the introduction of a separate CONFIG_MK_ name space for
config options that were set through scripting in the Makefile was
not a good idea.
Originally the idea was to provide a script-free approach to supply
configuration options - there was no real need for a separate name
space. But when we now convert the existing Makefile entries to make
use of this approach, it would mean that we have to touch a large
number of board config files and add #ifdef / #define sequences to
"convert" from the CONFIG_MK_ to the CONFIG_ name space.
It seems much cleaner to get rid of this somewhat arbitrary _MK
string now for the few boards that actually use it.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/configs/P1_P2_RDB.h')
| -rw-r--r-- | include/configs/P1_P2_RDB.h | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/include/configs/P1_P2_RDB.h b/include/configs/P1_P2_RDB.h index fa45b5be1..f97660c01 100644 --- a/include/configs/P1_P2_RDB.h +++ b/include/configs/P1_P2_RDB.h @@ -30,31 +30,31 @@  #ifndef __CONFIG_H  #define __CONFIG_H -#ifdef CONFIG_MK_P1011RDB +#ifdef CONFIG_P1011RDB  #define CONFIG_P1011  #endif -#ifdef CONFIG_MK_P1020RDB +#ifdef CONFIG_P1020RDB  #define CONFIG_P1020  #endif -#ifdef CONFIG_MK_P2010RDB +#ifdef CONFIG_P2010RDB  #define CONFIG_P2010  #endif -#ifdef CONFIG_MK_P2020RDB +#ifdef CONFIG_P2020RDB  #define CONFIG_P2020  #endif -#ifdef CONFIG_MK_NAND +#ifdef CONFIG_NAND  #define CONFIG_NAND_U_BOOT		1  #define CONFIG_RAMBOOT_NAND		1  #define CONFIG_RAMBOOT_TEXT_BASE	0xf8f82000  #endif -#ifdef CONFIG_MK_SDCARD +#ifdef CONFIG_SDCARD  #define CONFIG_RAMBOOT_SDCARD		1  #define CONFIG_RAMBOOT_TEXT_BASE	0xf8f80000  #endif -#ifdef CONFIG_MK_SPIFLASH +#ifdef CONFIG_SPIFLASH  #define CONFIG_RAMBOOT_SPIFLASH		1  #define CONFIG_RAMBOOT_TEXT_BASE	0xf8f80000  #endif |