mirror of
https://github.com/frank-w/u-boot.git
synced 2026-01-09 18:12:57 +08:00
efi_loader: text output for device path end node
Without the patch a device path consisting only of an end node is displayed as '/UNKNOWN(007f,00ff)'. It should be displayed as '/'. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
committed by
Alexander Graf
parent
bc0bd77ed4
commit
3c950b3178
@@ -245,6 +245,8 @@ static char *efi_convert_single_device_node_to_text(
|
||||
case DEVICE_PATH_TYPE_MEDIA_DEVICE:
|
||||
str = dp_media(str, dp);
|
||||
break;
|
||||
case DEVICE_PATH_TYPE_END:
|
||||
break;
|
||||
default:
|
||||
str = dp_unknown(str, dp);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user