mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
54f80dd290
This converts the following to Kconfig: CONFIG_GATEWAYIP CONFIG_HOSTNAME CONFIG_IPADDR CONFIG_NETMASK CONFIG_ROOTPATH CONFIG_SERVERIP CONFIG_UBOOTPATH To do this, we introduce a CONFIG_USE_ form of each of the above and change include/env_default.h to test for that to be set before setting a value. Further, we don't want to stringify the IP address related values as they are now properly strings via Kconfig. Signed-off-by: Tom Rini <trini@konsulko.com>
22 lines
435 B
C
22 lines
435 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Configuration for MediaTek MT7629 SoC
|
|
*
|
|
* Copyright (C) 2019 MediaTek Inc.
|
|
* Author: Sam Shih <sam.shih@mediatek.com>
|
|
*/
|
|
|
|
#ifndef __MT7622_H
|
|
#define __MT7622_H
|
|
|
|
/* Uboot definition */
|
|
#define CFG_SYS_UBOOT_BASE CONFIG_TEXT_BASE
|
|
|
|
/* SPL -> Uboot */
|
|
#define CFG_SYS_UBOOT_START CONFIG_TEXT_BASE
|
|
/* DRAM */
|
|
#define CFG_SYS_SDRAM_BASE 0x40000000
|
|
|
|
/* Ethernet */
|
|
|
|
#endif
|