conga-qeval20-qa3-e3845.h 919 B

12345678910111213141516171819202122232425262728293031323334353637
  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. #define CONFIG_SYS_MONITOR_LEN (1 << 20)
  12. #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \
  13. "stdout=serial\0" \
  14. "stderr=serial\0"
  15. #define VIDEO_IO_OFFSET 0
  16. #define CONFIG_X86EMU_RAW_IO
  17. #undef CONFIG_BOOTCOMMAND
  18. #define CONFIG_BOOTCOMMAND \
  19. "load scsi 0:2 03000000 /boot/vmlinuz-${kernel-ver}-generic;" \
  20. "load scsi 0:2 04000000 /boot/initrd.img-${kernel-ver}-generic;" \
  21. "run boot"
  22. #undef CONFIG_EXTRA_ENV_SETTINGS
  23. #define CONFIG_EXTRA_ENV_SETTINGS \
  24. "kernel-ver=4.4.0-22\0" \
  25. "boot=zboot 03000000 0 04000000 ${filesize}\0" \
  26. "upd_uboot=tftp 100000 conga/u-boot.rom;" \
  27. "sf probe;sf update 100000 0 800000;saveenv\0"
  28. #endif /* __CONFIG_H */