crownbay.h 510 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
  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_SMSC_LPC47M
  13. #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd,usbkbd\0" \
  14. "stdout=serial,vidconsole\0" \
  15. "stderr=serial,vidconsole\0"
  16. /* Environment configuration */
  17. #endif /* __CONFIG_H */