README.autoboot 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * (C) Copyright 2001
  3. * Dave Ellis, SIXNET, dge@sixnetio.com
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. Using autoboot configuration options
  8. ====================================
  9. The basic autoboot configuration options are documented in the main
  10. U-Boot README. See it for details. They are:
  11. bootdelay
  12. bootcmd
  13. CONFIG_BOOTDELAY
  14. CONFIG_BOOTCOMMAND
  15. Some additional options that make autoboot safer in a production
  16. product are documented here.
  17. Why use them?
  18. -------------
  19. The basic autoboot feature allows a system to automatically boot to
  20. the real application (such as Linux) without a user having to enter
  21. any commands. If any key is pressed before the boot delay time
  22. expires, U-Boot stops the autoboot process, gives a U-Boot prompt
  23. and waits forever for a command. That's a good thing if you pressed a
  24. key because you wanted to get the prompt.
  25. It's not so good if the key press was a stray character on the
  26. console serial port, say because a user who knows nothing about
  27. U-Boot pressed a key before the system had time to boot. It's even
  28. worse on an embedded product that doesn't have a console during
  29. normal use. The modem plugged into that console port sends a
  30. character at the wrong time and the system hangs, with no clue as to
  31. why it isn't working.
  32. You might want the system to autoboot to recover after an external
  33. configuration program stops autoboot. If the configuration program
  34. dies or loses its connection (modems can disconnect at the worst
  35. time) U-Boot will patiently wait forever for it to finish.
  36. These additional configuration options can help provide a system that
  37. boots when it should, but still allows access to U-Boot.
  38. What they do
  39. ------------
  40. CONFIG_BOOT_RETRY_TIME
  41. CONFIG_BOOT_RETRY_MIN
  42. "bootretry" environment variable
  43. These options determine what happens after autoboot is
  44. stopped and U-Boot is waiting for commands.
  45. CONFIG_BOOT_RETRY_TIME must be defined to enable the boot
  46. retry feature. If the environment variable "bootretry" is
  47. found then its value is used, otherwise the retry timeout is
  48. CONFIG_BOOT_RETRY_TIME. CONFIG_BOOT_RETRY_MIN is optional and
  49. defaults to CONFIG_BOOT_RETRY_TIME. All times are in seconds.
  50. If the retry timeout is negative, the U-Boot command prompt
  51. never times out. Otherwise it is forced to be at least
  52. CONFIG_BOOT_RETRY_MIN seconds. If no valid U-Boot command is
  53. entered before the specified time the boot delay sequence is
  54. restarted. Each command that U-Boot executes restarts the
  55. timeout.
  56. If CONFIG_BOOT_RETRY_TIME < 0 the feature is there, but
  57. doesn't do anything unless the environment variable
  58. "bootretry" is >= 0.
  59. CONFIG_AUTOBOOT_KEYED
  60. CONFIG_AUTOBOOT_KEYED_CTRLC
  61. CONFIG_AUTOBOOT_PROMPT
  62. CONFIG_AUTOBOOT_DELAY_STR
  63. CONFIG_AUTOBOOT_STOP_STR
  64. CONFIG_AUTOBOOT_DELAY_STR2
  65. CONFIG_AUTOBOOT_STOP_STR2
  66. "bootdelaykey" environment variable
  67. "bootstopkey" environment variable
  68. "bootdelaykey2" environment variable
  69. "bootstopkey2" environment variable
  70. These options give more control over stopping autoboot. When
  71. they are used a specific character or string is required to
  72. stop or delay autoboot.
  73. Define CONFIG_AUTOBOOT_KEYED (no value required) to enable
  74. this group of options. CONFIG_AUTOBOOT_DELAY_STR,
  75. CONFIG_AUTOBOOT_STOP_STR or both should be specified (or
  76. specified by the corresponding environment variable),
  77. otherwise there is no way to stop autoboot.
  78. CONFIG_AUTOBOOT_PROMPT is displayed before the boot delay
  79. selected by CONFIG_BOOTDELAY starts. If it is not defined
  80. there is no output indicating that autoboot is in progress.
  81. Note that CONFIG_AUTOBOOT_PROMPT is used as the (only)
  82. argument to a printf() call, so it may contain '%' format
  83. specifications, provided that it also includes, sepearated by
  84. commas exactly like in a printf statement, the required
  85. arguments. It is the responsibility of the user to select only
  86. such arguments that are valid in the given context. A
  87. reasonable prompt could be defined as
  88. #define CONFIG_AUTOBOOT_PROMPT \
  89. "autoboot in %d seconds\n",bootdelay
  90. If CONFIG_AUTOBOOT_DELAY_STR or "bootdelaykey" is specified
  91. and this string is received from console input before
  92. autoboot starts booting, U-Boot gives a command prompt. The
  93. U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is
  94. used, otherwise it never times out.
  95. If CONFIG_AUTOBOOT_STOP_STR or "bootstopkey" is specified and
  96. this string is received from console input before autoboot
  97. starts booting, U-Boot gives a command prompt. The U-Boot
  98. prompt never times out, even if CONFIG_BOOT_RETRY_TIME is
  99. used.
  100. The string recognition is not very sophisticated. If a
  101. partial match is detected, the first non-matching character
  102. is checked to see if starts a new match. There is no check
  103. for a shorter partial match, so it's best if the first
  104. character of a key string does not appear in the rest of the
  105. string.
  106. Using the CONFIG_AUTOBOOT_DELAY_STR2 #define or the
  107. "bootdelaykey2" environment variable and/or the
  108. CONFIG_AUTOBOOT_STOP_STR2 #define or the "bootstopkey"
  109. environment variable you can specify a second, alternate
  110. string (which allows you to have two "password" strings).
  111. The CONFIG_AUTOBOOT_KEYED_CTRLC #define allows for the boot
  112. sequence to be interrupted by ctrl-c, in addition to the
  113. "bootdelaykey" and "bootstopkey". Setting this variable
  114. provides an escape sequence from the limited "password"
  115. strings.
  116. CONFIG_ZERO_BOOTDELAY_CHECK
  117. If this option is defined, you can stop the autoboot process
  118. by hitting a key even in that case when "bootdelay" has been
  119. set to 0. You can set "bootdelay" to a negative value to
  120. prevent the check for console input.
  121. CONFIG_RESET_TO_RETRY
  122. (Only effective when CONFIG_BOOT_RETRY_TIME is also set)
  123. After the countdown timed out, the board will be reset to restart
  124. again.