diff options
author | 2017-07-09 05:22:01 -0700 | |
---|---|---|
committer | 2017-07-09 17:03:45 +0200 | |
commit | 3a0a020a2e50ab8e0eabc2575754108fba5e0876 (patch) | |
tree | d0a0c70acf70255e75b28bfdc6c252d98e42ee51 /boot/uboot/uboot.mk | |
parent | b7310c8d07a415f50c34a159bd93ddd0c4476ed7 (diff) | |
download | buildroot-3a0a020a2e50ab8e0eabc2575754108fba5e0876.tar.gz buildroot-3a0a020a2e50ab8e0eabc2575754108fba5e0876.tar.bz2 |
uboot: apply xtensa overlay
Xtensa core configuration must be added to U-Boot before it can be
built for that xtensa CPU variant. Extract configuration files from the
xtensa overlay as is done for other packages that need to be configured
for a specific xtensa core.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'boot/uboot/uboot.mk')
-rw-r--r-- | boot/uboot/uboot.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index 605859c90c..73d72630b2 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -153,6 +153,14 @@ endef UBOOT_POST_EXTRACT_HOOKS += UBOOT_COPY_OLD_LICENSE_FILE UBOOT_POST_RSYNC_HOOKS += UBOOT_COPY_OLD_LICENSE_FILE +ifneq ($(ARCH_XTENSA_OVERLAY_FILE),) +define UBOOT_XTENSA_OVERLAY_EXTRACT + $(call arch-xtensa-overlay-extract,$(@D),u-boot) +endef +UBOOT_POST_EXTRACT_HOOKS += UBOOT_XTENSA_OVERLAY_EXTRACT +UBOOT_EXTRA_DOWNLOADS += $(ARCH_XTENSA_OVERLAY_URL) +endif + # Analogous code exists in linux/linux.mk. Basically, the generic # package infrastructure handles downloading and applying remote # patches. Local patches are handled depending on whether they are |