mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 19:04:38 +00:00

The boot command for Total Compute has many aspects and changes from time to time. So move it to an .env file where it can be a proper script. Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com> Signed-off-by: Leo Yan <leo.yan@arm.com>
16 lines
368 B
C
16 lines
368 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Configuration for Total Compute platform. Parts were derived from other ARM
|
|
* configurations.
|
|
* (C) Copyright 2020-2023 Arm Limited
|
|
* Usama Arif <usama.arif@arm.com>
|
|
*/
|
|
|
|
#ifndef __TOTAL_COMPUTE_H
|
|
#define __TOTAL_COMPUTE_H
|
|
|
|
/* Link Definitions */
|
|
|
|
#define CFG_SYS_FLASH_BASE 0x0C000000
|
|
|
|
#endif /* __TOTAL_COMPUTE_H */
|