sandbox.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. * See file CREDITS for list of people who contributed to this
  4. * project.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  19. * MA 02111-1307 USA
  20. */
  21. #ifndef __CONFIG_H
  22. #define __CONFIG_H
  23. #define CONFIG_NR_DRAM_BANKS 1
  24. #define CONFIG_DRAM_SIZE (128 << 20)
  25. /* Number of bits in a C 'long' on this architecture */
  26. #define CONFIG_SANDBOX_BITS_PER_LONG 64
  27. /*
  28. * Size of malloc() pool, although we don't actually use this yet.
  29. */
  30. #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
  31. #define CONFIG_SYS_PROMPT "=>" /* Command Prompt */
  32. #define CONFIG_SYS_HUSH_PARSER
  33. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  34. #define CONFIG_SYS_LONGHELP /* #undef to save memory */
  35. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  36. /* Print Buffer Size */
  37. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  38. #define CONFIG_SYS_MAXARGS 16
  39. /* turn on command-line edit/c/auto */
  40. #define CONFIG_CMDLINE_EDITING
  41. #define CONFIG_COMMAND_HISTORY
  42. #define CONFIG_AUTO_COMPLETE
  43. #define CONFIG_ENV_SIZE 8192
  44. #define CONFIG_ENV_IS_NOWHERE
  45. #define CONFIG_SYS_HZ 1000
  46. /* Memory things - we don't really want a memory test */
  47. #define CONFIG_SYS_LOAD_ADDR 0x10000000
  48. #define CONFIG_SYS_MEMTEST_START 0x10000000
  49. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000)
  50. #define CONFIG_PHYS_64BIT
  51. /* Size of our emulated memory */
  52. #define CONFIG_SYS_SDRAM_SIZE (128 << 20)
  53. #define CONFIG_BAUDRATE 115200
  54. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  55. 115200}
  56. #define CONFIG_SANDBOX_SERIAL
  57. #define CONFIG_SYS_NO_FLASH
  58. /* include default commands */
  59. #include <config_cmd_default.h>
  60. /* We don't have networking support yet */
  61. #undef CONFIG_CMD_NET
  62. #undef CONFIG_CMD_NFS
  63. #define CONFIG_BOOTARGS ""
  64. #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \
  65. "stdout=serial\0" \
  66. "stderr=serial\0"
  67. #endif