mirror of
https://github.com/u-boot/u-boot.git
synced 2025-01-22 10:44:08 +08:00
vexpress_aemv8a.h: Clean up the config
- Drop DEBUG - Drop defines we can use the default of. - Provide a larger malloc pool. - Correct default locations for kernel / initrd / device tree Signed-off-by: Tom Rini <trini@ti.com>
This commit is contained in:
parent
d2b2ffe310
commit
5bcae13ee4
@ -8,8 +8,6 @@
|
|||||||
#ifndef __VEXPRESS_AEMV8A_H
|
#ifndef __VEXPRESS_AEMV8A_H
|
||||||
#define __VEXPRESS_AEMV8A_H
|
#define __VEXPRESS_AEMV8A_H
|
||||||
|
|
||||||
#define DEBUG
|
|
||||||
|
|
||||||
#ifdef CONFIG_BASE_FVP
|
#ifdef CONFIG_BASE_FVP
|
||||||
#ifndef CONFIG_SEMIHOSTING
|
#ifndef CONFIG_SEMIHOSTING
|
||||||
#error CONFIG_BASE_FVP requires CONFIG_SEMIHOSTING
|
#error CONFIG_BASE_FVP requires CONFIG_SEMIHOSTING
|
||||||
@ -134,7 +132,7 @@
|
|||||||
#define CONFIG_SYS_MEMTEST_END (V2M_BASE + 0x80000000)
|
#define CONFIG_SYS_MEMTEST_END (V2M_BASE + 0x80000000)
|
||||||
|
|
||||||
/* Size of malloc() pool */
|
/* Size of malloc() pool */
|
||||||
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024)
|
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (8 << 20))
|
||||||
|
|
||||||
/* SMSC91C111 Ethernet Configuration */
|
/* SMSC91C111 Ethernet Configuration */
|
||||||
#define CONFIG_SMC91111 1
|
#define CONFIG_SMC91111 1
|
||||||
@ -215,10 +213,9 @@
|
|||||||
#else
|
#else
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
"kernel_addr_r=0x200000\0" \
|
"kernel_addr_r=0x80000000\0" \
|
||||||
"initrd_addr_r=0xa00000\0" \
|
"initrd_addr_r=0x88000000\0" \
|
||||||
"initrd_size=0x2000000\0" \
|
"fdt_addr_r=0x83000000\0" \
|
||||||
"fdt_addr_r=0x100000\0" \
|
|
||||||
"fdt_high=0xa0000000\0"
|
"fdt_high=0xa0000000\0"
|
||||||
|
|
||||||
#define CONFIG_BOOTARGS "console=ttyAMA0 root=/dev/ram0"
|
#define CONFIG_BOOTARGS "console=ttyAMA0 root=/dev/ram0"
|
||||||
@ -239,7 +236,7 @@
|
|||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
#define CONFIG_SYS_LONGHELP
|
#define CONFIG_SYS_LONGHELP
|
||||||
#define CONFIG_CMDLINE_EDITING 1
|
#define CONFIG_CMDLINE_EDITING
|
||||||
#define CONFIG_SYS_MAXARGS 64 /* max command args */
|
#define CONFIG_SYS_MAXARGS 64 /* max command args */
|
||||||
|
|
||||||
#endif /* __VEXPRESS_AEMV8A_H */
|
#endif /* __VEXPRESS_AEMV8A_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user