config_fallbacks.h 749 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright 2012 Texas Instruments
  3. *
  4. * This file is licensed under the terms of the GNU General Public
  5. * License Version 2. This file is licensed "as is" without any
  6. * warranty of any kind, whether express or implied.
  7. */
  8. #ifndef __CONFIG_FALLBACKS_H
  9. #define __CONFIG_FALLBACKS_H
  10. #ifndef CONFIG_SYS_BAUDRATE_TABLE
  11. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  12. #endif
  13. #if defined(CONFIG_CMD_FAT) && !defined(CONFIG_FS_FAT)
  14. #define CONFIG_FS_FAT
  15. #endif
  16. #if (defined(CONFIG_CMD_EXT4) || defined(CONFIG_CMD_EXT2)) && \
  17. !defined(CONFIG_FS_EXT4)
  18. #define CONFIG_FS_EXT4
  19. #endif
  20. #if defined(CONFIG_CMD_EXT4_WRITE) && !defined(CONFIG_EXT4_WRITE)
  21. #define CONFIG_EXT4_WRITE
  22. #endif
  23. #endif /* __CONFIG_FALLBACKS_H */