|
@@ -34,6 +34,7 @@ find-cross-gcc = $(firstword $(wildcard $(patsubst %ld,%gcc,$(call find-cross-ld
|
|
# finally strip off path + toolname so we get the prefix
|
|
# finally strip off path + toolname so we get the prefix
|
|
find-cross-prefix = $(subst gcc,,$(notdir $(call find-cross-gcc,$(1))))
|
|
find-cross-prefix = $(subst gcc,,$(notdir $(call find-cross-gcc,$(1))))
|
|
|
|
|
|
|
|
+aarch64_cross_prefix := $(call find-cross-prefix,aarch64)
|
|
arm_cross_prefix := $(call find-cross-prefix,arm)
|
|
arm_cross_prefix := $(call find-cross-prefix,arm)
|
|
powerpc64_cross_prefix := $(call find-cross-prefix,powerpc64)
|
|
powerpc64_cross_prefix := $(call find-cross-prefix,powerpc64)
|
|
powerpc_cross_prefix := $(call find-cross-prefix,powerpc)
|
|
powerpc_cross_prefix := $(call find-cross-prefix,powerpc)
|
|
@@ -66,6 +67,7 @@ default help:
|
|
@echo " u-boot.e500 -- update u-boot.e500"
|
|
@echo " u-boot.e500 -- update u-boot.e500"
|
|
@echo " u-boot.sam460 -- update u-boot.sam460"
|
|
@echo " u-boot.sam460 -- update u-boot.sam460"
|
|
@echo " npcm7xx_bootrom -- update vbootrom for npcm7xx"
|
|
@echo " npcm7xx_bootrom -- update vbootrom for npcm7xx"
|
|
|
|
+ @echo " npcm8xx_bootrom -- update vbootrom for npcm8xx"
|
|
@echo " efi -- update UEFI (edk2) platform firmware"
|
|
@echo " efi -- update UEFI (edk2) platform firmware"
|
|
@echo " opensbi32-generic -- update OpenSBI for 32-bit generic machine"
|
|
@echo " opensbi32-generic -- update OpenSBI for 32-bit generic machine"
|
|
@echo " opensbi64-generic -- update OpenSBI for 64-bit generic machine"
|
|
@echo " opensbi64-generic -- update OpenSBI for 64-bit generic machine"
|
|
@@ -194,6 +196,10 @@ npcm7xx_bootrom:
|
|
$(MAKE) -C vbootrom CROSS_COMPILE=$(arm_cross_prefix)
|
|
$(MAKE) -C vbootrom CROSS_COMPILE=$(arm_cross_prefix)
|
|
cp vbootrom/npcm7xx_bootrom.bin ../pc-bios/npcm7xx_bootrom.bin
|
|
cp vbootrom/npcm7xx_bootrom.bin ../pc-bios/npcm7xx_bootrom.bin
|
|
|
|
|
|
|
|
+npcm8xx_bootrom:
|
|
|
|
+ $(MAKE) -C vbootrom CROSS_COMPILE=$(aarch64_cross_prefix)
|
|
|
|
+ cp vbootrom/npcm8xx_bootrom.bin ../pc-bios/npcm8xx_bootrom.bin
|
|
|
|
+
|
|
hppa-firmware:
|
|
hppa-firmware:
|
|
$(MAKE) -C seabios-hppa parisc
|
|
$(MAKE) -C seabios-hppa parisc
|
|
cp seabios-hppa/out/hppa-firmware.img ../pc-bios/
|
|
cp seabios-hppa/out/hppa-firmware.img ../pc-bios/
|