| 0f4060eb | 04-Mar-2016 |
Alexander Graf <agraf@suse.de> |
efi_loader: Pass proper device path in on boot
EFI payloads can query for the device they were booted from. Because we have a disconnect between loading binaries and running binaries, we passed in a
efi_loader: Pass proper device path in on boot
EFI payloads can query for the device they were booted from. Because we have a disconnect between loading binaries and running binaries, we passed in a dummy device path so far.
Unfortunately that breaks grub2's logic to find its configuration file from the same device it was booted from.
This patch adds logic to have the "load" command call into our efi code to set the device path to the one we last loaded a binary from.
With this grub2 properly detects where we got booted from and can find its configuration file, even when searching by-partition.
Signed-off-by: Alexander Graf <agraf@suse.de>
show more ...
|
| a696d768 | 29-Feb-2016 |
Simon Glass <sjg@chromium.org> |
dm: cbfs: Fix handling of invalid type
The comment for file_cbfs_type() says that it returns 0 for an invalid type. The code appears to check for -1, except that it uses an unsigned variable to stor
dm: cbfs: Fix handling of invalid type
The comment for file_cbfs_type() says that it returns 0 for an invalid type. The code appears to check for -1, except that it uses an unsigned variable to store the type. This results in a warning on 64-bit machines.
Adjust it to make the meaning clearer. Continue to handle the -1 case since it may be needed.
Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Stephen Warren <swarren@nvidia.com>
show more ...
|