Skip to content
Snippets Groups Projects
Commit 65bf1d39 authored by Simon Glass's avatar Simon Glass Committed by Wolfgang Denk
Browse files

sandbox: Add architecture image support


We won't actually load an image with this architecture, but we still need to
define it.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 0ec2ce4a
No related merge requests found
......@@ -58,4 +58,7 @@ typedef struct bd_info {
} bi_dram[CONFIG_NR_DRAM_BANKS];
} bd_t;
/* For image.h:image_check_target_arch() */
#define IH_ARCH_DEFAULT IH_ARCH_SANDBOX
#endif /* _U_BOOT_H_ */
......@@ -106,6 +106,7 @@
#define IH_ARCH_BLACKFIN 16 /* Blackfin */
#define IH_ARCH_AVR32 17 /* AVR32 */
#define IH_ARCH_ST200 18 /* STMicroelectronics ST200 */
#define IH_ARCH_SANDBOX 19 /* Sandbox architecture (test only) */
/*
* Image Types
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment