Mark Kettenis | 003b657 | 2021-10-23 16:58:03 +0200 | [diff] [blame] | 1 | #ifndef __CONFIG_H |
2 | #define __CONFIG_H | ||||
3 | |||||
4 | #include <linux/sizes.h> | ||||
5 | |||||
Mark Kettenis | 003b657 | 2021-10-23 16:58:03 +0200 | [diff] [blame] | 6 | /* Environment */ |
7 | #define ENV_DEVICE_SETTINGS \ | ||||
Mark Kettenis | d42f107 | 2022-01-23 16:48:13 +0100 | [diff] [blame] | 8 | "stdin=serial,usbkbd,spikbd\0" \ |
Janne Grunau | 9d189ab | 2024-04-18 21:00:26 +0200 | [diff] [blame] | 9 | "stdout=vidconsole,serial\0" \ |
10 | "stderr=vidconsole,serial\0" | ||||
Mark Kettenis | 003b657 | 2021-10-23 16:58:03 +0200 | [diff] [blame] | 11 | |
Janne Grunau | f1972dd | 2024-04-18 21:00:28 +0200 | [diff] [blame] | 12 | #define BOOT_TARGETS "nvme usb" |
Mark Kettenis | 003b657 | 2021-10-23 16:58:03 +0200 | [diff] [blame] | 13 | |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 14 | #define CFG_EXTRA_ENV_SETTINGS \ |
Mark Kettenis | 003b657 | 2021-10-23 16:58:03 +0200 | [diff] [blame] | 15 | ENV_DEVICE_SETTINGS \ |
Janne Grunau | f1972dd | 2024-04-18 21:00:28 +0200 | [diff] [blame] | 16 | "boot_targets=" BOOT_TARGETS "\0" |
Mark Kettenis | 003b657 | 2021-10-23 16:58:03 +0200 | [diff] [blame] | 17 | |
18 | #endif |