diff options
author | 2017-07-12 21:29:03 +0200 | |
---|---|---|
committer | 2017-07-21 22:43:36 +0200 | |
commit | 14b1b5b54e7bfa4eb60a04ed3c88483595a14dcb (patch) | |
tree | 70ef60685b5d3edc6fc988f450646ba241688409 /boot/uboot/uboot.mk | |
parent | 6b2804f396ad27e1d99079a8d1fbe1f51cb4cf5d (diff) | |
download | buildroot-14b1b5b54e7bfa4eb60a04ed3c88483595a14dcb.tar.gz buildroot-14b1b5b54e7bfa4eb60a04ed3c88483595a14dcb.tar.bz2 |
uboot: bump to version 2017.07
Add a new config option BR2_TARGET_UBOOT_NEEDS_PYLIBFDT for U-Boot
targets, like sunxi, needing the Python libfdt library.
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
[Thomas: drop bogus selects on BR2_PACKAGE_HOST_{PYTHON,SWIG}.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'boot/uboot/uboot.mk')
-rw-r--r-- | boot/uboot/uboot.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index 73d72630b2..14a8cc949a 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -138,6 +138,10 @@ ifeq ($(BR2_TARGET_UBOOT_NEEDS_DTC),y) UBOOT_DEPENDENCIES += host-dtc endif +ifeq ($(BR2_TARGET_UBOOT_NEEDS_PYLIBFDT),y) +UBOOT_DEPENDENCIES += host-python host-swig +endif + ifeq ($(BR2_TARGET_UBOOT_NEEDS_OPENSSL),y) UBOOT_DEPENDENCIES += host-openssl endif |