From: Phil Sutter Date: Thu, 12 Feb 2026 22:31:10 +0000 (+0100) Subject: board: Synology: common: Fix typo in Makefile X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b2306246ddb461db0ff18d638ab54bd675533748;p=thirdparty%2Fu-boot.git board: Synology: common: Fix typo in Makefile Due to this, legacy.c was neither compiled nor linked into the binary and thus booting legacy DS414 firmware failed. Missing atag setup led to no console output (and probably stalled boot) after: | Uncompressing Linux... done, booting the kernel. Fixes: 9774462e34faa ("arm: Disable ATAGs support") Signed-off-by: Phil Sutter --- diff --git a/board/Synology/common/Makefile b/board/Synology/common/Makefile index f688b549063..87be53321ee 100644 --- a/board/Synology/common/Makefile +++ b/board/Synology/common/Makefile @@ -2,4 +2,4 @@ # # Copyright (C) 2021 Phil Sutter -obj-$(SUPPORT_PASSING_ATAGS) += legacy.o +obj-$(CONFIG_SUPPORT_PASSING_ATAGS) += legacy.o