aboutsummaryrefslogtreecommitdiff
path: root/arch/sandbox
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-05-18 11:59:45 -0600
committerSimon Glass <sjg@chromium.org>2019-07-10 16:52:58 -0600
commit3f2f5cf62a45656c78b5317a5cbfbb077a95fc19 (patch)
tree59fa8ad6cb56db7b867ae9444a0077061573c482 /arch/sandbox
parentf2980ece06363e584541829bf40d46ad9760d535 (diff)
downloadu-boot-3f2f5cf62a45656c78b5317a5cbfbb077a95fc19.zip
u-boot-3f2f5cf62a45656c78b5317a5cbfbb077a95fc19.tar.gz
u-boot-3f2f5cf62a45656c78b5317a5cbfbb077a95fc19.tar.bz2
sandbox: spl: Lower priority of standard loader
We normally want to load U-Boot from SPL, but if a board wants to do something else, it is currently not possible since the standard loader has the top priority. Lower it to allow other SPL_LOAD_IMAGE_METHOD() declarations to override it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox')
-rw-r--r--arch/sandbox/cpu/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/cpu/spl.c b/arch/sandbox/cpu/spl.c
index 2ca4cd6..106a78a 100644
--- a/arch/sandbox/cpu/spl.c
+++ b/arch/sandbox/cpu/spl.c
@@ -44,7 +44,7 @@ static int spl_board_load_image(struct spl_image_info *spl_image,
return 0;
}
-SPL_LOAD_IMAGE_METHOD("sandbox", 0, BOOT_DEVICE_BOARD, spl_board_load_image);
+SPL_LOAD_IMAGE_METHOD("sandbox", 9, BOOT_DEVICE_BOARD, spl_board_load_image);
void spl_board_init(void)
{