OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #ifndef __configs_chromeos_developer_h__ | 7 #ifndef __configs_chromeos_developer_h__ |
8 #define __configs_chromeos_developer_h__ | 8 #define __configs_chromeos_developer_h__ |
9 | 9 |
10 #include <configs/chromeos/common.h> | 10 #include <configs/chromeos/common.h> |
(...skipping 13 matching lines...) Expand all Loading... |
24 #define CONFIG_CMD_LOADS | 24 #define CONFIG_CMD_LOADS |
25 #define CONFIG_CMD_READ | 25 #define CONFIG_CMD_READ |
26 #define CONFIG_CMD_MISC | 26 #define CONFIG_CMD_MISC |
27 #define CONFIG_CMD_SETGETDCR | 27 #define CONFIG_CMD_SETGETDCR |
28 #define CONFIG_CMD_XIMG | 28 #define CONFIG_CMD_XIMG |
29 | 29 |
30 #define CONFIG_MMC | 30 #define CONFIG_MMC |
31 #define CONFIG_EFI_PARTITION | 31 #define CONFIG_EFI_PARTITION |
32 #define CONFIG_DOS_PARTITION | 32 #define CONFIG_DOS_PARTITION |
33 | 33 |
| 34 #define CONFIG_CMD_CROS_REC |
| 35 |
34 #define CONFIG_CHROMEOS_BMPBLK | 36 #define CONFIG_CHROMEOS_BMPBLK |
35 #define CONFIG_CMD_BMP | 37 #define CONFIG_CMD_BMP |
36 #define CONFIG_LCD_BMP_RLE8 | 38 #define CONFIG_LCD_BMP_RLE8 |
37 #define CONFIG_LZMA | 39 #define CONFIG_LZMA |
38 | 40 |
39 #define CONFIG_CMD_READ | 41 #define CONFIG_CMD_READ |
40 #define CONFIG_CMD_MMC | 42 #define CONFIG_CMD_MMC |
41 #define CONFIG_CMD_EXT2 | 43 #define CONFIG_CMD_EXT2 |
42 #define CONFIG_CMD_FAT | 44 #define CONFIG_CMD_FAT |
43 | 45 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 * share an NFS server: | 96 * share an NFS server: |
95 * user - username, e.g. 'frank' | 97 * user - username, e.g. 'frank' |
96 * board - board, e.g. 'seaboard' | 98 * board - board, e.g. 'seaboard' |
97 * serial - serial number, e.g. '1234' | 99 * serial - serial number, e.g. '1234' |
98 */ | 100 */ |
99 #define CONFIG_ROOTPATH "/export/nfsroot-${user}-${board}-${serial#}" | 101 #define CONFIG_ROOTPATH "/export/nfsroot-${user}-${board}-${serial#}" |
100 | 102 |
101 | 103 |
102 | 104 |
103 #endif //__configs_chromeos_developer_h__ | 105 #endif //__configs_chromeos_developer_h__ |
OLD | NEW |