mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-19 08:21:27 +01:00
While we continue to have some systems which support extremely legacy OS booting methods, we do not have use cases for supporting this in Falcon mode anymore. Remove this support and references from the documentation. Co-developed-by: Anshul Dalal <anshuld@ti.com> Signed-off-by: Tom Rini <trini@konsulko.com>
14 lines
314 B
C
14 lines
314 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/* Copyright (C) 2011
|
|
* Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
|
|
*/
|
|
#ifndef _NAND_SPL_H_
|
|
#define _NAND_SPL_H_
|
|
|
|
#define SPL_EXPORT (0x00000001)
|
|
|
|
#define SPL_EXPORT_FDT (0x00000001)
|
|
#define SPL_EXPORT_LAST SPL_EXPORT_FDT
|
|
|
|
#endif /* _NAND_SPL_H_ */
|