mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
x86: image: Add new image type for x64_64
This is a bit odd in that we are permitted to boot images for either, even though they are separate architectures. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -167,7 +167,8 @@ static int bootm_find_os(cmd_tbl_t *cmdtp, int flag, int argc,
|
||||
}
|
||||
|
||||
/* If we have a valid setup.bin, we will use that for entry (x86) */
|
||||
if (images.os.arch == IH_ARCH_I386) {
|
||||
if (images.os.arch == IH_ARCH_I386 ||
|
||||
images.os.arch == IH_ARCH_X86_64) {
|
||||
ulong len;
|
||||
|
||||
ret = boot_get_setup(&images, IH_ARCH_I386, &images.ep, &len);
|
||||
|
Reference in New Issue
Block a user