You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 'all' target unconditionally included $(BUILD_DTB) and $(BUILD_DTB2C),
causing device tree compilation to run even for user-space builds where
ENABLE_SYSTEM=0. This triggered dtc syntax errors because the required
macros (INITRD_START, INITRD_END, MEM_START, MEM_END) are only defined
for system mode.
Since DTB_DEPS is already conditionally set to include these targets when
needed (ENABLE_SYSTEM=1 and ENABLE_ELF_LOADER=0), the redundant explicit
dependencies are removed.
Fixes regression introduced in commit 2b06e85 where ELF_LOADER logic
was reordered.
0 commit comments