u-boot/include/configs/xenguest_arm64.h
Tom Rini 6889412ad5 Convert CONFIG_SYS_BARGSIZE to Kconfig
This converts the following to Kconfig:
   CONFIG_SYS_BARGSIZE

Signed-off-by: Tom Rini <trini@konsulko.com>
2022-06-06 12:09:00 -04:00

22 lines
489 B
C

/* SPDX-License-Identifier: GPL-2.0+
*
* (C) Copyright 2020 EPAM Systemc Inc.
*/
#ifndef __XENGUEST_ARM64_H
#define __XENGUEST_ARM64_H
#ifndef __ASSEMBLY__
#include <linux/types.h>
#endif
#define CONFIG_EXTRA_ENV_SETTINGS
#undef CONFIG_SYS_SDRAM_BASE
#undef CONFIG_EXTRA_ENV_SETTINGS
#define CONFIG_EXTRA_ENV_SETTINGS \
"loadimage=ext4load pvblock 0 0x90000000 /boot/Image;\0" \
"pvblockboot=run loadimage;" \
"booti 0x90000000 - 0x88000000;\0"
#endif /* __XENGUEST_ARM64_H */