diff options
author | Jörg Krause <joerg.krause@embedded.rocks> | 2017-07-12 21:43:51 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-21 22:46:23 +0200 |
commit | b985e3455b1c906230cf42ed44a8b1f058f6ea36 (patch) | |
tree | 3811fe04ad328e34d01558f6940944c164e05887 /package/uboot-tools/0005-tools-conditionally-disable-python-libfdt-wrapper.patch | |
parent | 14b1b5b54e7bfa4eb60a04ed3c88483595a14dcb (diff) | |
download | buildroot-b985e3455b1c906230cf42ed44a8b1f058f6ea36.tar.gz buildroot-b985e3455b1c906230cf42ed44a8b1f058f6ea36.zip |
uboot-tools: bump to version 2017.07
Drop patch 0005 which has been fixed upstream in a different way [1] by only
building the Python libfdt library when needed [2].
[1] https://patchwork.ozlabs.org/patch/757380/
[2] https://www.mail-archive.com/u-boot@lists.denx.de/msg251051.html
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/uboot-tools/0005-tools-conditionally-disable-python-libfdt-wrapper.patch')
-rw-r--r-- | package/uboot-tools/0005-tools-conditionally-disable-python-libfdt-wrapper.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/package/uboot-tools/0005-tools-conditionally-disable-python-libfdt-wrapper.patch b/package/uboot-tools/0005-tools-conditionally-disable-python-libfdt-wrapper.patch deleted file mode 100644 index e48f72b7b9..0000000000 --- a/package/uboot-tools/0005-tools-conditionally-disable-python-libfdt-wrapper.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 4dc3139cc9fa12882792053bdce7b69aca9b91bf Mon Sep 17 00:00:00 2001 -From: Matt Weber <matthew.weber@rockwellcollins.com> -Date: Mon, 1 May 2017 22:19:57 -0500 -Subject: [PATCH] tools: conditionally disable python libfdt wrapper - -Not all host systems want the default swig to be -used when building the tools. Allow for the -disabling of the wrapper to enable cross-compiling -of the tools on a host system with swig. - -Upsteam submission for RFC: -https://lists.denx.de/pipermail/u-boot/2017-May/289520.html - -Workaround for: -http://autobuild.buildroot.net/results/6d5/6d52ac8bb71012aea6fc4c679691b31a3366728b - -Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> ---- - tools/Makefile | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/tools/Makefile b/tools/Makefile -index 2fc4a58..7f6c29d 100644 ---- a/tools/Makefile -+++ b/tools/Makefile -@@ -114,6 +114,7 @@ fit_check_sign-objs := $(dumpimage-mkimage-objs) fit_check_sign.o - - # Build a libfdt Python module if swig is available - # Use 'sudo apt-get install swig libpython-dev' to enable this -+ifndef CONFIG_TOOLS_PYTHON_WRAPPER_DISABLE - hostprogs-y += \ - $(if $(shell which swig 2> /dev/null),_libfdt.so) - _libfdt.so-sharedobjs += $(LIBFDT_OBJS) -@@ -126,6 +127,7 @@ tools/_libfdt.so: $(patsubst %.o,%.c,$(LIBFDT_OBJS)) tools/libfdt_wrap.c - - tools/libfdt_wrap.c: $(srctree)/lib/libfdt/libfdt.swig - swig -python -o $@ $< -+endif - - # TODO(sjg@chromium.org): Is this correct on Mac OS? - --- -1.9.1 - |