From c88ba1c4c34dbe6bacb15d43ef55cf3f76948f44 Mon Sep 17 00:00:00 2001 From: Jason Zhu Date: Thu, 12 Mar 2020 15:35:13 +0800 Subject: [PATCH] spl: add next_stage to struct spl_image_info Add next_stage to indicate the next boot stage is uboot or kernel. Signed-off-by: Jason Zhu Change-Id: I9104ede143c5a9c7f0bff6869e67d5e605e596ca --- include/spl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/spl.h b/include/spl.h index 4033b12c08..c3b31c6e69 100644 --- a/include/spl.h +++ b/include/spl.h @@ -33,6 +33,7 @@ struct spl_image_info { void *fdt_addr; #endif u32 boot_device; + u32 next_stage; u32 size; u32 flags; void *arg;