Просмотр исходного кода

brcm2708: fix image generation with imagebuilder

COPYING is not present in $(LINUX_DIR) on imagebuilder and prevents a
successful image creation.

Signed-off-by: Álvaro Fernández Rojas <[email protected]>
Álvaro Fernández Rojas 9 лет назад
Родитель
Сommit
611399f1f8
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      target/linux/brcm2708/image/Makefile

+ 5 - 1
target/linux/brcm2708/image/Makefile

@@ -12,6 +12,10 @@ include $(INCLUDE_DIR)/host.mk
 FAT32_BLOCK_SIZE=1024
 FAT32_BLOCKS=$(shell echo $$(($(CONFIG_BRCM2708_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
 
+define Build/Compile
+	$(CP) $(LINUX_DIR)/COPYING $(KDIR)/COPYING.linux
+endef
+
 ### Image scripts ###
 define Build/kernel-img
 	perl $(LINUX_DIR)/scripts/mkknlimg $@ [email protected]
@@ -21,7 +25,7 @@ endef
 define Build/boot-img
 	rm -f [email protected]
 	mkfs.fat -C [email protected] $(FAT32_BLOCKS)
-	mcopy -i [email protected] $(LINUX_DIR)/COPYING ::COPYING.linux
+	mcopy -i [email protected] $(KDIR)/COPYING.linux ::
 	mcopy -i [email protected] $(KDIR)/bootcode.bin ::
 	mcopy -i [email protected] $(KDIR)/LICENCE.broadcom ::
 	mcopy -i [email protected] $(KDIR)/start.elf ::