theadorable-x86-dfi-bt700.h 763 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2016 Stefan Roese <sr@denx.de>
  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. /* Use BayTrail internal HS UART which is memory-mapped */
  12. #undef CONFIG_SYS_NS16550_PORT_MAPPED
  13. /* Set the board specific parameters */
  14. #define DEF_ENV_TFTPDIR "theadorable-x86-dfi"
  15. #define DEF_ENV_ETH_INIT "usb reset"
  16. #define DEF_ENV_UBUNTU_PART 1
  17. #define DEF_ENV_UBUNTU_TTY 4 /* Use ttyS4 */
  18. #define DEF_ENV_YOCTO_PART 2
  19. #define DEF_ENV_YOCTO_TTY 1 /* Use ttyS1 */
  20. /*
  21. * Include the theadorable-x86 common options, macros and default
  22. * environment
  23. */
  24. #include <configs/theadorable-x86-common.h>
  25. #endif /* __CONFIG_H */