diff options
author | Simon Glass <sjg@chromium.org> | 2024-01-04 08:11:49 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-04-11 08:32:04 -0600 |
commit | 8640d65547c15d5682d0f1f3ff248e5321515ccc (patch) | |
tree | 67e6828554127e8e2da683175d97bf59f10676da | |
parent | 1bcdf9946fcac89192823e4138364285c9559861 (diff) | |
download | u-boot-8640d65547c15d5682d0f1f3ff248e5321515ccc.zip u-boot-8640d65547c15d5682d0f1f3ff248e5321515ccc.tar.gz u-boot-8640d65547c15d5682d0f1f3ff248e5321515ccc.tar.bz2 |
x86: coreboot: Enable support for the configuration editor
Enable cedit support along with required options and a simple style.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/x86/dts/coreboot.dts | 7 | ||||
-rw-r--r-- | configs/coreboot64_defconfig | 2 | ||||
-rw-r--r-- | configs/coreboot_defconfig | 2 |
3 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/dts/coreboot.dts b/arch/x86/dts/coreboot.dts index b867468..39d1d32 100644 --- a/arch/x86/dts/coreboot.dts +++ b/arch/x86/dts/coreboot.dts @@ -54,6 +54,13 @@ menu-inset = <3>; menuitem-gap-y = <1>; }; + + cedit-theme { + font-size = <30>; + menu-inset = <3>; + menuitem-gap-y = <1>; + menu-title-margin-x = <30>; + }; }; sysinfo { diff --git a/configs/coreboot64_defconfig b/configs/coreboot64_defconfig index da42ad0..148c249 100644 --- a/configs/coreboot64_defconfig +++ b/configs/coreboot64_defconfig @@ -17,6 +17,7 @@ CONFIG_SHOW_BOOT_PROGRESS=y CONFIG_USE_BOOTARGS=y CONFIG_BOOTARGS="root=/dev/sdb3 init=/sbin/init rootwait ro" CONFIG_BOOTCOMMAND="bootflow scan -l; if bootflow menu; then cls; bootflow boot; fi" +CONFIG_CEDIT=y CONFIG_SYS_PBSIZE=532 CONFIG_PRE_CONSOLE_BUFFER=y CONFIG_SYS_CONSOLE_INFO_QUIET=y @@ -46,6 +47,7 @@ CONFIG_TFTP_TSIZE=y CONFIG_USE_ROOTPATH=y CONFIG_REGMAP=y CONFIG_SYSCON=y +CONFIG_OFNODE_MULTI_TREE=y # CONFIG_ACPIGEN is not set CONFIG_SYS_IDE_MAXDEVICE=4 CONFIG_SYS_ATA_DATA_OFFSET=0 diff --git a/configs/coreboot_defconfig b/configs/coreboot_defconfig index fdf978a..ed3de26 100644 --- a/configs/coreboot_defconfig +++ b/configs/coreboot_defconfig @@ -16,6 +16,7 @@ CONFIG_SHOW_BOOT_PROGRESS=y CONFIG_USE_BOOTARGS=y CONFIG_BOOTARGS="root=/dev/sdb3 init=/sbin/init rootwait ro" CONFIG_BOOTCOMMAND="bootflow scan -l; if bootflow menu; then cls; bootflow boot; fi" +CONFIG_CEDIT=y CONFIG_CONSOLE_RECORD=y CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000 CONFIG_PRE_CONSOLE_BUFFER=y @@ -43,6 +44,7 @@ CONFIG_TFTP_TSIZE=y CONFIG_USE_ROOTPATH=y CONFIG_REGMAP=y CONFIG_SYSCON=y +CONFIG_OFNODE_MULTI_TREE=y # CONFIG_ACPIGEN is not set CONFIG_SYS_IDE_MAXDEVICE=4 CONFIG_SYS_ATA_DATA_OFFSET=0 |