diff options
| author | Tom Rini <[email protected]> | 2024-04-12 12:50:57 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-04-12 12:50:57 -0600 |
| commit | ef8ef5f77c9a998f76a48277a883af1645b54117 (patch) | |
| tree | 52fdcdbbf87dfa777fa87e8ac9e27577003f5d0a /cmd | |
| parent | d5e6401011a269328d3ea69468532b4125fd2bb9 (diff) | |
| parent | 4341fb73326907faecfc9e3b711bbfcd3937b525 (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 'cmd')
| -rw-r--r-- | cmd/booti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/booti.c b/cmd/booti.c index 898df0f8896..b9637b3ec3d 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -74,7 +74,7 @@ static int booti_start(struct bootm_info *bmi) unmap_sysmem((void *)ld); ret = booti_setup(ld, &relocated_addr, &image_size, false); - if (ret || IS_ENABLED(CONFIG_SANDBOX)) + if (ret) return 1; /* Handle BOOTM_STATE_LOADOS */ |
