chromebook_samus.h 578 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2011 The Chromium OS Authors.
  4. * (C) Copyright 2008
  5. * Graeme Russ, graeme.russ@gmail.com.
  6. */
  7. /*
  8. * board/config.h - configuration options, board specific
  9. */
  10. #ifndef __CONFIG_H
  11. #define __CONFIG_H
  12. #include <configs/x86-common.h>
  13. #include <configs/x86-chromebook.h>
  14. #undef CONFIG_STD_DEVICES_SETTINGS
  15. #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \
  16. "stdout=vidconsole,serial\0" \
  17. "stderr=vidconsole,serial\0"
  18. #define CONFIG_TPL_TEXT_BASE 0xfffd8000
  19. #endif /* __CONFIG_H */