sandbox.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. /* Number of bits in a C 'long' on this architecture */
  24. #define CONFIG_SANDBOX_BITS_PER_LONG 64
  25. #define CONFIG_OF_CONTROL
  26. #define CONFIG_OF_HOSTFILE
  27. #define CONFIG_OF_LIBFDT
  28. #define CONFIG_LMB
  29. #define CONFIG_FIT
  30. #define CONFIG_CMD_FDT
  31. #define CONFIG_FS_FAT
  32. #define CONFIG_FS_EXT4
  33. #define CONFIG_EXT4_WRITE
  34. #define CONFIG_CMD_FAT
  35. #define CONFIG_CMD_EXT4
  36. #define CONFIG_CMD_EXT4_WRITE
  37. #define CONFIG_SYS_VSNPRINTF
  38. #define CONFIG_CMD_GPIO
  39. #define CONFIG_SANDBOX_GPIO
  40. #define CONFIG_SANDBOX_GPIO_COUNT 20
  41. /*
  42. * Size of malloc() pool, although we don't actually use this yet.
  43. */
  44. #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
  45. #define CONFIG_SYS_PROMPT "=>" /* Command Prompt */
  46. #define CONFIG_SYS_HUSH_PARSER
  47. #define CONFIG_SYS_LONGHELP /* #undef to save memory */
  48. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  49. /* Print Buffer Size */
  50. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  51. #define CONFIG_SYS_MAXARGS 16
  52. /* turn on command-line edit/c/auto */
  53. #define CONFIG_CMDLINE_EDITING
  54. #define CONFIG_COMMAND_HISTORY
  55. #define CONFIG_AUTO_COMPLETE
  56. #define CONFIG_ENV_SIZE 8192
  57. #define CONFIG_ENV_IS_NOWHERE
  58. #define CONFIG_SYS_HZ 1000
  59. /* Memory things - we don't really want a memory test */
  60. #define CONFIG_SYS_LOAD_ADDR 0x00000000
  61. #define CONFIG_SYS_MEMTEST_START 0x00100000
  62. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000)
  63. #define CONFIG_PHYS_64BIT
  64. #define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000
  65. /* Size of our emulated memory */
  66. #define CONFIG_SYS_SDRAM_BASE 0
  67. #define CONFIG_SYS_SDRAM_SIZE (128 << 20)
  68. #define CONFIG_SYS_TEXT_BASE 0
  69. #define CONFIG_SYS_MONITOR_BASE 0
  70. #define CONFIG_NR_DRAM_BANKS 1
  71. #define CONFIG_BAUDRATE 115200
  72. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  73. 115200}
  74. #define CONFIG_SANDBOX_SERIAL
  75. #define CONFIG_SYS_NO_FLASH
  76. /* include default commands */
  77. #include <config_cmd_default.h>
  78. /* We don't have networking support yet */
  79. #undef CONFIG_CMD_NET
  80. #undef CONFIG_CMD_NFS
  81. #define CONFIG_CMD_HASH
  82. #define CONFIG_HASH_VERIFY
  83. #define CONFIG_SHA1
  84. #define CONFIG_SHA256
  85. #define CONFIG_CMD_SANDBOX
  86. #define CONFIG_BOOTARGS ""
  87. #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \
  88. "stdout=serial\0" \
  89. "stderr=serial\0"
  90. #endif