summaryrefslogtreecommitdiff
path: root/arch/sandbox/lib/bootm.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-04-12 12:50:57 -0600
committerTom Rini <trini@konsulko.com>2024-04-12 12:50:57 -0600
commitef8ef5f77c9a998f76a48277a883af1645b54117 (patch)
tree52fdcdbbf87dfa777fa87e8ac9e27577003f5d0a /arch/sandbox/lib/bootm.c
parentd5e6401011a269328d3ea69468532b4125fd2bb9 (diff)
parent4341fb73326907faecfc9e3b711bbfcd3937b525 (diff)
Merge branch '2024-04-12-assorted-updates'
- Assorted sandbox fixes, cleanup some of the partition table code and a few other fixes
Diffstat (limited to 'arch/sandbox/lib/bootm.c')
-rw-r--r--arch/sandbox/lib/bootm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/sandbox/lib/bootm.c b/arch/sandbox/lib/bootm.c
index 8dbcd9ff7dd..44ba8b52e13 100644
--- a/arch/sandbox/lib/bootm.c
+++ b/arch/sandbox/lib/bootm.c
@@ -85,5 +85,7 @@ int do_bootm_linux(int flag, struct bootm_info *bmi)
int booti_setup(ulong image, ulong *relocated_addr, ulong *size,
bool force_reloc)
{
- return 0;
+ log_err("Booting is not supported on the sandbox.\n");
+
+ return 1;
}