mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
10f6e4dc3a
This converts the following to Kconfig: CONFIG_SYS_SPL_MALLOC_SIZE CONFIG_SYS_SPL_MALLOC_START We introduce a default value here as well, and CONFIG_SYS_SPL_MALLOC to control if we have a malloc pool or not. Signed-off-by: Tom Rini <trini@konsulko.com>
23 lines
436 B
C
23 lines
436 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2014 Gateworks Corporation
|
|
* Author: Tim Harvey <tharvey@gateworks.com>
|
|
*/
|
|
#ifndef __IMX6_SPL_CONFIG_H
|
|
#define __IMX6_SPL_CONFIG_H
|
|
|
|
#ifdef CONFIG_SPL
|
|
|
|
/* MMC support */
|
|
#if defined(CONFIG_SPL_MMC)
|
|
#define CONFIG_SYS_MONITOR_LEN 409600 /* 400 KB */
|
|
#endif
|
|
|
|
/* SATA support */
|
|
#if defined(CONFIG_SPL_SATA)
|
|
#define CONFIG_SYS_SATA_FAT_BOOT_PARTITION 1
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|