mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 04:36:13 +02:00
board: libre-computer: check interface before comparing it in set_dfu_alt_info()
When set_dfu_alt_info() is called, interface can be NULL when called for
the EFI capsule, so check it before calling it with strcmp().
Fixes: 12ea40d29dc ("ARM: meson: add support for Libre Computer aml-s905d3-cc")
Fixes: 9e6e6b034b1 ("ARM: meson: add support for Libre Computer aml-a311d-cc")
Fixes: 75c87c6cbc0 ("board: libre-computer: aml-s805x-cc: Enable capsule updates")
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Link: https://lore.kernel.org/r/20250403-u-boot-fix-set-dfu-alt-info-interface-v1-1-1fdd12463186@linaro.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
This commit is contained in:
parent
82b69fc422
commit
c5fd2c7ac7
@ -29,7 +29,7 @@ struct efi_capsule_update_info update_info = {
|
||||
#if IS_ENABLED(CONFIG_SET_DFU_ALT_INFO)
|
||||
void set_dfu_alt_info(char *interface, char *devstr)
|
||||
{
|
||||
if (strcmp(interface, "ram") == 0)
|
||||
if (interface && strcmp(interface, "ram") == 0)
|
||||
env_set("dfu_alt_info", "fitimage ram 0x08080000 0x4000000");
|
||||
else if (IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT))
|
||||
env_set("dfu_alt_info", update_info.dfu_string);
|
||||
|
||||
@ -36,7 +36,7 @@ struct efi_capsule_update_info update_info = {
|
||||
#if IS_ENABLED(CONFIG_SET_DFU_ALT_INFO)
|
||||
void set_dfu_alt_info(char *interface, char *devstr)
|
||||
{
|
||||
if (strcmp(interface, "ram") == 0)
|
||||
if (interface && strcmp(interface, "ram") == 0)
|
||||
env_set("dfu_alt_info", "fitimage ram 0x08080000 0x4000000");
|
||||
else if (IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT))
|
||||
env_set("dfu_alt_info", update_info.dfu_string);
|
||||
|
||||
@ -29,7 +29,7 @@ struct efi_capsule_update_info update_info = {
|
||||
#if IS_ENABLED(CONFIG_SET_DFU_ALT_INFO)
|
||||
void set_dfu_alt_info(char *interface, char *devstr)
|
||||
{
|
||||
if (strcmp(interface, "ram") == 0)
|
||||
if (interface && strcmp(interface, "ram") == 0)
|
||||
env_set("dfu_alt_info", "fitimage ram 0x08080000 0x4000000");
|
||||
else if (IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT))
|
||||
env_set("dfu_alt_info", update_info.dfu_string);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user