colibri_imx6: fix video stdout in default environment
[oweals/u-boot.git] / lib / hang.c
index c5a78694be6f8217c45cb8cef8d2d081b2e433f0..578ac78d45306f949d9ee237c27b17e164c5d317 100644 (file)
@@ -9,6 +9,8 @@
 
 #include <common.h>
 #include <bootstage.h>
+#include <hang.h>
+#include <os.h>
 
 /**
  * hang - stop processing by staying in an endless loop
@@ -26,6 +28,8 @@ void hang(void)
        puts("### ERROR ### Please RESET the board ###\n");
 #endif
        bootstage_error(BOOTSTAGE_ID_NEED_RESET);
+       if (IS_ENABLED(CONFIG_SANDBOX))
+               os_exit(1);
        for (;;)
                ;
 }