2 * Copyright 2012 Texas Instruments
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.
9 #ifndef __CONFIG_FALLBACKS_H
10 #define __CONFIG_FALLBACKS_H
12 #ifndef CONFIG_SYS_BAUDRATE_TABLE
13 #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
16 #if defined(CONFIG_CMD_FAT) && !defined(CONFIG_FS_FAT)
20 #if (defined(CONFIG_CMD_EXT4) || defined(CONFIG_CMD_EXT2)) && \
21 !defined(CONFIG_FS_EXT4)
22 #define CONFIG_FS_EXT4
25 #if defined(CONFIG_CMD_EXT4_WRITE) && !defined(CONFIG_EXT4_WRITE)
26 #define CONFIG_EXT4_WRITE
29 #endif /* __CONFIG_FALLBACKS_H */