minnowmax.h 509 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015 Google, Inc
  4. */
  5. /*
  6. * board/config.h - configuration options, board specific
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. #include <configs/x86-common.h>
  11. #define CONFIG_SYS_MONITOR_LEN (1 << 20)
  12. #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,serial\0" \
  13. "stdout=vidconsole,serial\0" \
  14. "stderr=vidconsole,serial\0" \
  15. "usb_pgood_delay=40\0"
  16. #define VIDEO_IO_OFFSET 0
  17. #define CONFIG_X86EMU_RAW_IO
  18. #endif /* __CONFIG_H */