diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-10 08:21:57 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-28 20:44:04 -0600 |
commit | 5bda35cffafe4955bbbae820dd17cb6e3cbca8d8 (patch) | |
tree | ee1846a1036f4eea67ec561fe6ef3f18f11e82b8 /common/image.c | |
parent | 76539383ea0288985dc6216a92e3d7961df958b3 (diff) |
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>
Diffstat (limited to 'common/image.c')
-rw-r--r-- | common/image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c index eb92e6323c0..b75a5ce29a6 100644 --- a/common/image.c +++ b/common/image.c @@ -85,6 +85,7 @@ static const table_entry_t uimage_arch[] = { { IH_ARCH_SANDBOX, "sandbox", "Sandbox", }, { IH_ARCH_ARM64, "arm64", "AArch64", }, { IH_ARCH_ARC, "arc", "ARC", }, + { IH_ARCH_X86_64, "x86_64", "AMD x86_64", }, { -1, "", "", }, }; |