Chromium Code Reviews| Index: include/configs/chromeos/tegra2/seaboard/developer.h |
| diff --git a/include/configs/chromeos/tegra2/seaboard/developer.h b/include/configs/chromeos/tegra2/seaboard/developer.h |
| index 06c3fb089b740aa8525cf11137b2c668b28b2861..420cd27e968a3053945d23335f94122aedeb1384 100644 |
| --- a/include/configs/chromeos/tegra2/seaboard/developer.h |
| +++ b/include/configs/chromeos/tegra2/seaboard/developer.h |
| @@ -12,4 +12,17 @@ |
| #include <configs/chromeos/tegra2/seaboard/parts/usb.h> |
| +/* |
| + * Our developer-friendly boot process tries a number of things in sequence |
| + * until it finds a kernel. Network booting is tried first if we have Ethernet. |
| + */ |
| +#define CONFIG_BOOTCOMMAND \ |
| + "usb start; "\ |
| + "if test ${ethact} != \"\"; then "\ |
| + "run dhcp_boot ; " \ |
| + "fi ; " \ |
| + "run keynfs_boot ; " \ |
| + "run usb_boot ; " \ |
| + "run mmc_boot" |
|
robotboy
2011/02/17 17:51:45
Please add this for all of the boards?
sjg
2011/02/17 18:55:47
I will move it to tegra2/developer.h, as thinking
|
| + |
| #endif /*__configs_chromeos_tegra2_seaboard_developer_h__*/ |