diff options
| author | Simon Glass <[email protected]> | 2021-09-25 07:03:15 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-10-08 15:53:26 -0400 |
| commit | 41506ff5a51fb95896683bc8def8dbf53ef93de1 (patch) | |
| tree | 9a59fa4678ae9b419f36be4da36d9bf1204d3778 /common/Makefile | |
| parent | 458b30af66cd41ca8e6f8a52ea4c09cb50d3413d (diff) | |
image: Split board code out into its own file
To avoid a large #ifdef in the image.c file, move the affected code into
a separate file.
Avoid any style fix-ups for easier review. Those are in the next patch.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'common/Makefile')
| -rw-r--r-- | common/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Makefile b/common/Makefile index fb8173a5b82..e7839027b6c 100644 --- a/common/Makefile +++ b/common/Makefile @@ -101,7 +101,7 @@ obj-y += malloc_simple.o endif endif -obj-y += image.o +obj-y += image.o image-board.o obj-$(CONFIG_$(SPL_TPL_)HASH) += hash.o obj-$(CONFIG_ANDROID_AB) += android_ab.o obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o image-android-dt.o |
