Skip to content

Commit c2df9f3

Browse files
fixup modules/coreboot: Fix purism-blobs dependency for librem_l1um
Two := assignments were factored out together, the second overwrote the first. Fix to +=, and remove the nitrokey assignment since it came from a branch. Signed-off-by: Jonathon Hall <[email protected]>
1 parent d8a89e7 commit c2df9f3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

modules/coreboot

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ modules-y += $(coreboot_module)
9696
coreboot_dir := $($(coreboot_module)_dir)
9797
coreboot_base_dir := $($(coreboot_module)_base_dir)
9898

99-
$(coreboot_module)_depends := $(if $(CONFIG_PURISM_BLOBS), purism-blobs)
100-
$(coreboot_module)_depends := $(if $(CONFIG_NITROKEY_BLOBS), nitrokey-blobs)
99+
$(coreboot_module)_depends += $(if $(CONFIG_PURISM_BLOBS), purism-blobs)
101100

102101
# coreboot builds are specialized on a per-target basis.
103102
# The builds are done in a per-target subdirectory

0 commit comments

Comments
 (0)