JFFS2: fix jffs2 summary datacrc status uninitialized
[platform/kernel/u-boot.git] / lib / hang.c
index c5a7869..578ac78 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 (;;)
                ;
 }