fix dependency for bzImage, allowing make -jN to work (#306)

This commit is contained in:
Trammell hudson 2018-02-26 11:40:04 -05:00
parent 8ced05de15
commit b4bb4edb73
No known key found for this signature in database
GPG Key ID: 687A5005935B1533

View File

@ -124,8 +124,10 @@ $(build)/$(BOARD)/modules.cpio: linux.intermediate
@$(RM) -rf "$(module_initrd_dir)"
# hack for the coreboot to find the linux kernel
$(build)/$(BOARD)/bzImage: linux.intermediate
# The output of the linux.intermediate is the bzImage in the
# linus build directory. We need to copy it into our board
# specific directory for ease of locating it later.
$(linux_board_dir)/arch/x86/boot/bzImage: linux.intermediate
$(build)/$(BOARD)/bzImage: $(linux_board_dir)/arch/x86/boot/bzImage
$(call do-copy,$<,$@)