blob: e4c41867351a2233bc623c753adc00eaf3919dd1 [file] [log] [blame]
wdenkcc1c8a12002-11-02 22:58:18 +00001/*
2 * (C) Copyright 2001
3 * Dave Ellis, SIXNET, dge@sixnetio.com
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk8b74bf32004-10-11 23:10:30 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkcc1c8a12002-11-02 22:58:18 +000016 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24Using autoboot configuration options
25====================================
26
27The basic autoboot configuration options are documented in the main
28U-Boot README. See it for details. They are:
29
30 bootdelay
31 bootcmd
32 CONFIG_BOOTDELAY
33 CONFIG_BOOTCOMMAND
34
35Some additional options that make autoboot safer in a production
36product are documented here.
37
38Why use them?
39-------------
40
41The basic autoboot feature allows a system to automatically boot to
42the real application (such as Linux) without a user having to enter
43any commands. If any key is pressed before the boot delay time
44expires, U-Boot stops the autoboot process, gives a U-Boot prompt
45and waits forever for a command. That's a good thing if you pressed a
46key because you wanted to get the prompt.
47
48It's not so good if the key press was a stray character on the
49console serial port, say because a user who knows nothing about
50U-Boot pressed a key before the system had time to boot. It's even
51worse on an embedded product that doesn't have a console during
52normal use. The modem plugged into that console port sends a
53character at the wrong time and the system hangs, with no clue as to
54why it isn't working.
55
56You might want the system to autoboot to recover after an external
57configuration program stops autoboot. If the configuration program
58dies or loses its connection (modems can disconnect at the worst
59time) U-Boot will patiently wait forever for it to finish.
60
61These additional configuration options can help provide a system that
62boots when it should, but still allows access to U-Boot.
63
64What they do
65------------
66
67 CONFIG_BOOT_RETRY_TIME
68 CONFIG_BOOT_RETRY_MIN
69
wdenke1599e82004-10-10 23:27:33 +000070 "bootretry" environment variable
wdenkcc1c8a12002-11-02 22:58:18 +000071
wdenk8bde7f72003-06-27 21:31:46 +000072 These options determine what happens after autoboot is
73 stopped and U-Boot is waiting for commands.
wdenkcc1c8a12002-11-02 22:58:18 +000074
wdenk8bde7f72003-06-27 21:31:46 +000075 CONFIG_BOOT_RETRY_TIME must be defined to enable the boot
wdenke1599e82004-10-10 23:27:33 +000076 retry feature. If the environment variable "bootretry" is
wdenk8bde7f72003-06-27 21:31:46 +000077 found then its value is used, otherwise the retry timeout is
78 CONFIG_BOOT_RETRY_TIME. CONFIG_BOOT_RETRY_MIN is optional and
79 defaults to CONFIG_BOOT_RETRY_TIME. All times are in seconds.
wdenkcc1c8a12002-11-02 22:58:18 +000080
wdenk8bde7f72003-06-27 21:31:46 +000081 If the retry timeout is negative, the U-Boot command prompt
82 never times out. Otherwise it is forced to be at least
83 CONFIG_BOOT_RETRY_MIN seconds. If no valid U-Boot command is
84 entered before the specified time the boot delay sequence is
85 restarted. Each command that U-Boot executes restarts the
86 timeout.
wdenkcc1c8a12002-11-02 22:58:18 +000087
wdenk8bde7f72003-06-27 21:31:46 +000088 If CONFIG_BOOT_RETRY_TIME < 0 the feature is there, but
89 doesn't do anything unless the environment variable
wdenke1599e82004-10-10 23:27:33 +000090 "bootretry" is >= 0.
wdenkcc1c8a12002-11-02 22:58:18 +000091
92 CONFIG_AUTOBOOT_KEYED
93 CONFIG_AUTOBOOT_PROMPT
94 CONFIG_AUTOBOOT_DELAY_STR
95 CONFIG_AUTOBOOT_STOP_STR
96 CONFIG_AUTOBOOT_DELAY_STR2
97 CONFIG_AUTOBOOT_STOP_STR2
98
wdenke1599e82004-10-10 23:27:33 +000099 "bootdelaykey" environment variable
wdenk8b74bf32004-10-11 23:10:30 +0000100 "bootstopkey" environment variable
wdenke1599e82004-10-10 23:27:33 +0000101 "bootdelaykey2" environment variable
102 "bootstopkey2" environment variable
wdenkcc1c8a12002-11-02 22:58:18 +0000103
wdenk8bde7f72003-06-27 21:31:46 +0000104 These options give more control over stopping autoboot. When
105 they are used a specific character or string is required to
106 stop or delay autoboot.
wdenkcc1c8a12002-11-02 22:58:18 +0000107
108 Define CONFIG_AUTOBOOT_KEYED (no value required) to enable
wdenk8b74bf32004-10-11 23:10:30 +0000109 this group of options. CONFIG_AUTOBOOT_DELAY_STR,
wdenkcc1c8a12002-11-02 22:58:18 +0000110 CONFIG_AUTOBOOT_STOP_STR or both should be specified (or
111 specified by the corresponding environment variable),
112 otherwise there is no way to stop autoboot.
113
wdenk8bde7f72003-06-27 21:31:46 +0000114 CONFIG_AUTOBOOT_PROMPT is displayed before the boot delay
115 selected by CONFIG_BOOTDELAY starts. If it is not defined
116 there is no output indicating that autoboot is in progress.
117 If "%d" is included, it is replaced by the number of seconds
118 remaining before autoboot will start, but it does not count
119 down the seconds. "autoboot in %d seconds\n" is a reasonable
120 prompt.
wdenkcc1c8a12002-11-02 22:58:18 +0000121
wdenk8b74bf32004-10-11 23:10:30 +0000122 If CONFIG_AUTOBOOT_DELAY_STR or "bootdelaykey" is specified
123 and this string is received from console input before
124 autoboot starts booting, U-Boot gives a command prompt. The
125 U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is
126 used, otherwise it never times out.
wdenkcc1c8a12002-11-02 22:58:18 +0000127
wdenk8b74bf32004-10-11 23:10:30 +0000128 If CONFIG_AUTOBOOT_STOP_STR or "bootstopkey" is specified and
129 this string is received from console input before autoboot
130 starts booting, U-Boot gives a command prompt. The U-Boot
131 prompt never times out, even if CONFIG_BOOT_RETRY_TIME is
132 used.
wdenkcc1c8a12002-11-02 22:58:18 +0000133
wdenk8bde7f72003-06-27 21:31:46 +0000134 The string recognition is not very sophisticated. If a
135 partial match is detected, the first non-matching character
136 is checked to see if starts a new match. There is no check
137 for a shorter partial match, so it's best if the first
138 character of a key string does not appear in the rest of the
139 string.
wdenkcc1c8a12002-11-02 22:58:18 +0000140
wdenk8b74bf32004-10-11 23:10:30 +0000141 Using the CONFIG_AUTOBOOT_DELAY_STR2 #define or the
142 "bootdelaykey2" environment variable and/or the
143 CONFIG_AUTOBOOT_STOP_STR2 #define or the "bootstopkey"
144 environment variable you can specify a second, alternate
145 string (which allows you to have two "password" strings).
wdenkcc1c8a12002-11-02 22:58:18 +0000146
147 CONFIG_ZERO_BOOTDELAY_CHECK
148
wdenk8bde7f72003-06-27 21:31:46 +0000149 If this option is defined, you can stop the autoboot process
150 by hitting a key even in that case when "bootdelay" has been
151 set to 0. You can set "bootdelay" to a negative value to
152 prevent the check for console input.
wdenkcc1c8a12002-11-02 22:58:18 +0000153
154 CONFIG_RESET_TO_RETRY
155
wdenk8bde7f72003-06-27 21:31:46 +0000156 (Only effective when CONFIG_BOOT_RETRY_TIME is also set)
157 After the countdown timed out, the board will be reset to restart
158 again.