diff options
| author | Tom Rini <[email protected]> | 2024-11-26 08:05:11 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-11-26 08:05:11 -0600 |
| commit | 9e66cb41ee78f5c1c872eaa2d8dcd95927a10311 (patch) | |
| tree | aef438dac40671b05d8c4e1a0df3614d78d6dd4a /drivers/fastboot | |
| parent | 6b96e01d70342a61586ea1153fb60989796fac22 (diff) | |
| parent | 35d967f5a8219adc47628247a98c302b1870313e (diff) | |
Merge tag 'u-boot-dfu-20241126' of https://source.denx.de/u-boot/custodians/u-boot-dfu
CI: https://source.denx.de/u-boot/custodians/u-boot-dfu/-/pipelines/23572
- Fastboot:
- handle unknown partition type as "raw"
- USB gadget:
- Fix ci_udc gadget driver for Tegra 2 devices by not using USBADRA
Diffstat (limited to 'drivers/fastboot')
| -rw-r--r-- | drivers/fastboot/fb_getvar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/fastboot/fb_getvar.c b/drivers/fastboot/fb_getvar.c index 93cbd598e02..9c2ce65a4e5 100644 --- a/drivers/fastboot/fb_getvar.c +++ b/drivers/fastboot/fb_getvar.c @@ -230,7 +230,8 @@ static void __maybe_unused getvar_partition_type(char *part_name, char *response if (r >= 0) { r = fs_set_blk_dev_with_part(dev_desc, r); if (r < 0) - fastboot_fail("failed to set partition", response); + /* If we don't know then just default to raw */ + fastboot_okay("raw", response); else fastboot_okay(fs_get_type_name(), response); } |
