]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/env_callback.h
driver/mtd/IFC:Wait tWB time, poll R/B before command execution
[karo-tx-uboot.git] / include / env_callback.h
index 2f5048fa4968c4c58d3cd72b88304f9e7caa60b4..47fdc6fa9103e3dec208dc3311f45dde08ad8d8e 100644 (file)
@@ -24,6 +24,7 @@
 #ifndef __ENV_CALLBACK_H__
 #define __ENV_CALLBACK_H__
 
+#include <env_flags.h>
 #include <linker_lists.h>
 #include <search.h>
 
 #define CONFIG_ENV_CALLBACK_LIST_STATIC
 #endif
 
+#ifdef CONFIG_SILENT_CONSOLE
+#define SILENT_CALLBACK "silent:silent,"
+#else
+#define SILENT_CALLBACK
+#endif
+
 /*
  * This list of callback bindings is static, but may be overridden by defining
  * a new association in the ".callbacks" environment variable.
  */
 #define ENV_CALLBACK_LIST_STATIC ENV_CALLBACK_VAR ":callbacks," \
+       ENV_FLAGS_VAR ":flags," \
        "baudrate:baudrate," \
        "bootfile:bootfile," \
+       "loadaddr:loadaddr," \
+       SILENT_CALLBACK \
+       "stdin:console,stdout:console,stderr:console," \
        CONFIG_ENV_CALLBACK_LIST_STATIC
 
 struct env_clbk_tbl {