| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #define CONFIG_CMD_PING | 82 #define CONFIG_CMD_PING |
| 83 #define CONFIG_CMD_DHCP | 83 #define CONFIG_CMD_DHCP |
| 84 | 84 |
| 85 /* | 85 /* |
| 86 * BOOTP options | 86 * BOOTP options |
| 87 */ | 87 */ |
| 88 #define CONFIG_BOOTP_SUBNETMASK | 88 #define CONFIG_BOOTP_SUBNETMASK |
| 89 #define CONFIG_BOOTP_GATEWAY | 89 #define CONFIG_BOOTP_GATEWAY |
| 90 #define CONFIG_BOOTP_HOSTNAME | 90 #define CONFIG_BOOTP_HOSTNAME |
| 91 #define CONFIG_BOOTP_BOOTPATH | 91 #define CONFIG_BOOTP_BOOTPATH |
| 92 #define CONFIG_TFTP_TSIZE |
| 92 | 93 |
| 93 #define CONFIG_IPADDR 10.0.0.2 | 94 #define CONFIG_IPADDR 10.0.0.2 |
| 94 #define CONFIG_SERVERIP 10.0.0.1 | 95 #define CONFIG_SERVERIP 10.0.0.1 |
| 95 #define CONFIG_BOOTFILE uImage | 96 #define CONFIG_BOOTFILE uImage |
| 96 | 97 |
| 97 /* | 98 /* |
| 98 * We decorate the nfsroot name so that multiple users / boards can easily | 99 * We decorate the nfsroot name so that multiple users / boards can easily |
| 99 * share an NFS server: | 100 * share an NFS server: |
| 100 * user - username, e.g. 'frank' | 101 * user - username, e.g. 'frank' |
| 101 * board - board, e.g. 'seaboard' | 102 * board - board, e.g. 'seaboard' |
| 102 * serial - serial number, e.g. '1234' | 103 * serial - serial number, e.g. '1234' |
| 103 */ | 104 */ |
| 104 #define CONFIG_ROOTPATH "/export/nfsroot-${user}-${board}-${serial#}" | 105 #define CONFIG_ROOTPATH "/export/nfsroot-${user}-${board}-${serial#}" |
| 105 | 106 |
| 106 | 107 |
| 107 | 108 |
| 108 #endif //__configs_chromeos_developer_h__ | 109 #endif //__configs_chromeos_developer_h__ |
| OLD | NEW |