aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJanne Grunau2024-04-18 21:00:26 +0200
committerTom Rini2024-04-22 11:02:08 -0600
commit9d189ab3f94080839c014829b8087de028d5c3b4 (patch)
treee226867015508887b91aa1519682c863a05cd8ba /include
parent35361d8b4556cc0b6d4b4299412b41f074caa4db (diff)
configs: apple: Use "vidconsole,serial" as stdout/stderr
The display size querying in efi_console relies on this order. The display should be the primary output device and should be used to display more than 80x25 chars. Reviewed-by: Mark Kettenis <kettenis@openbsd.org> Reviewed-by: Neal Gompa <neal@gompa.dev> Signed-off-by: Janne Grunau <j@jannau.net>
Diffstat (limited to 'include')
-rw-r--r--include/configs/apple.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/apple.h b/include/configs/apple.h
index 0576bc04c94..a70440b3adc 100644
--- a/include/configs/apple.h
+++ b/include/configs/apple.h
@@ -6,8 +6,8 @@
/* Environment */
#define ENV_DEVICE_SETTINGS \
"stdin=serial,usbkbd,spikbd\0" \
- "stdout=serial,vidconsole\0" \
- "stderr=serial,vidconsole\0"
+ "stdout=vidconsole,serial\0" \
+ "stderr=vidconsole,serial\0"
#if IS_ENABLED(CONFIG_CMD_NVME)
#define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)