veyron.h 485 B

123456789101112131415161718192021222324252627
  1. /*
  2. * (C) Copyright 2015 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __CONFIG_H
  7. #define __CONFIG_H
  8. #define ROCKCHIP_DEVICE_SETTINGS \
  9. "stdin=serial,cros-ec-keyb\0" \
  10. "stdout=serial,vidconsole\0" \
  11. "stderr=serial,vidconsole\0"
  12. #include <configs/rk3288_common.h>
  13. #define CONFIG_ENV_IS_NOWHERE
  14. #define CONFIG_SPL_SPI_LOAD
  15. #define CONFIG_SPI_FLASH_GIGADEVICE
  16. #define CONFIG_CMD_SF_TEST
  17. #define CONFIG_KEYBOARD
  18. #define CONFIG_SYS_WHITE_ON_BLACK
  19. #endif