diff options
author | Anand Moon <linux.amoon@gmail.com> | 2024-06-26 20:45:22 +0530 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2024-07-15 19:25:55 +0900 |
commit | eebfbe1be72941b67e36d8a870cf636ecfbacb37 (patch) | |
tree | 425ec7ef54c1a13855b04cf30757363d1972cfec /board/samsung | |
parent | dd6fff3d83ed13da811a8cbabb876b912e505a7a (diff) | |
download | u-boot-eebfbe1be72941b67e36d8a870cf636ecfbacb37.tar.gz u-boot-eebfbe1be72941b67e36d8a870cf636ecfbacb37.tar.bz2 u-boot-eebfbe1be72941b67e36d8a870cf636ecfbacb37.zip |
odroid: Fix target platform compilation issue on Odroid-XU3
Resolved a compilation issue where the build system attempted
to compile for the Odroid-XU3 platform instead of the specified
Exynos4412 platform due to an incorrect CONFIG_SYS_BOARD setting.
Updated the Makefile to ensure that compilation only occurs for
the Odroid-XU3 specified target platform.
Now, object files will be generated only when building for the
TARGET_ODROID platform.
Signed-off-by: Anand Moon <linux.amoon@gmail.com>
Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung')
-rw-r--r-- | board/samsung/odroid/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samsung/odroid/Makefile b/board/samsung/odroid/Makefile index 5bf48313de..615c99f501 100644 --- a/board/samsung/odroid/Makefile +++ b/board/samsung/odroid/Makefile @@ -3,4 +3,4 @@ # Copyright (c) 2014 Samsung Electronics Co., Ltd. All rights reserved. # Przemyslaw Marczak <p.marczak@samsung.com> -obj-y := odroid.o +obj-$(CONFIG_TARGET_ODROID) := odroid.o |