bayleybay.h 472 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015, 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_STD_DEVICES_SETTINGS "stdin=serial,usbkbd\0" \
  13. "stdout=serial,vidconsole\0" \
  14. "stderr=serial,vidconsole\0"
  15. /* Environment configuration */
  16. #endif /* __CONFIG_H */