tinker_rk3288.h 482 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2016 Rockchip Electronics Co., Ltd
  4. */
  5. #ifndef __CONFIG_H
  6. #define __CONFIG_H
  7. #define ROCKCHIP_DEVICE_SETTINGS \
  8. "stdin=serial,usbkbd\0" \
  9. "stdout=serial,vidconsole\0" \
  10. "stderr=serial,vidconsole\0"
  11. #include <configs/rk3288_common.h>
  12. #undef BOOT_TARGET_DEVICES
  13. #define BOOT_TARGET_DEVICES(func) \
  14. func(MMC, mmc, 0) \
  15. func(MMC, mmc, 1) \
  16. func(USB, usb, 0) \
  17. func(PXE, pxe, na) \
  18. func(DHCP, dchp, na)
  19. #endif