From ffd1d3b949d2a165956d87c8e80107bdb4f6e1f0 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 11 Jan 2016 01:29:59 +0100 Subject: [PATCH 1/3] Pillow: update to Pillow-3.1.0 Signed-off-by: Stephan Raue --- packages/python/graphics/Pillow/package.mk | 2 +- .../Pillow-2.7.0-crosscompiling-0.1.patch | 38 -------- .../Pillow-3.1.0-crosscompiling-0.1.patch | 94 +++++++++++++++++++ 3 files changed, 95 insertions(+), 39 deletions(-) delete mode 100644 packages/python/graphics/Pillow/patches/Pillow-2.7.0-crosscompiling-0.1.patch create mode 100644 packages/python/graphics/Pillow/patches/Pillow-3.1.0-crosscompiling-0.1.patch diff --git a/packages/python/graphics/Pillow/package.mk b/packages/python/graphics/Pillow/package.mk index 41ec4c0c63..c1d3817217 100644 --- a/packages/python/graphics/Pillow/package.mk +++ b/packages/python/graphics/Pillow/package.mk @@ -17,7 +17,7 @@ ################################################################################ PKG_NAME="Pillow" -PKG_VERSION="3.0.0" +PKG_VERSION="3.1.0" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="BSD" diff --git a/packages/python/graphics/Pillow/patches/Pillow-2.7.0-crosscompiling-0.1.patch b/packages/python/graphics/Pillow/patches/Pillow-2.7.0-crosscompiling-0.1.patch deleted file mode 100644 index 061331d634..0000000000 --- a/packages/python/graphics/Pillow/patches/Pillow-2.7.0-crosscompiling-0.1.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff --git a/setup.py b/setup.py -index 90687d5..2f2be57 100644 ---- a/setup.py -+++ b/setup.py -@@ -296,10 +296,9 @@ class pil_build_ext(build_ext): - # XXX Kludge. Above /\ we brute force support multiarch. Here we - # try Barry's more general approach. Afterward, something should - # work ;-) -- self.add_multiarch_paths() - - elif sys.platform.startswith("gnu"): -- self.add_multiarch_paths() -+ pass - - elif sys.platform.startswith("netbsd"): - _add_directory(library_dirs, "/usr/pkg/lib") -@@ -337,21 +336,6 @@ class pil_build_ext(build_ext): - else: - TCL_ROOT = None - -- # add standard directories -- -- # look for tcl specific subdirectory (e.g debian) -- if _tkinter: -- tcl_dir = "/usr/include/tcl" + TCL_VERSION -- if os.path.isfile(os.path.join(tcl_dir, "tk.h")): -- _add_directory(include_dirs, tcl_dir) -- -- # standard locations -- _add_directory(library_dirs, "/usr/local/lib") -- _add_directory(include_dirs, "/usr/local/include") -- -- _add_directory(library_dirs, "/usr/lib") -- _add_directory(include_dirs, "/usr/include") -- - # on Windows, look for the OpenJPEG libraries in the location that - # the official installer puts them - if sys.platform == "win32": diff --git a/packages/python/graphics/Pillow/patches/Pillow-3.1.0-crosscompiling-0.1.patch b/packages/python/graphics/Pillow/patches/Pillow-3.1.0-crosscompiling-0.1.patch new file mode 100644 index 0000000000..da996daede --- /dev/null +++ b/packages/python/graphics/Pillow/patches/Pillow-3.1.0-crosscompiling-0.1.patch @@ -0,0 +1,94 @@ +diff -Naur Pillow-3.1.0/setup.py Pillow-3.1.0.patch/setup.py +--- Pillow-3.1.0/setup.py 2016-01-04 11:07:30.000000000 +0100 ++++ Pillow-3.1.0.patch/setup.py 2016-01-11 02:05:31.504822915 +0100 +@@ -241,66 +241,10 @@ + _add_directory(include_dirs, "/usr/X11/include") + + elif sys.platform.startswith("linux"): +- arch_tp = (plat.processor(), plat.architecture()[0]) +- if arch_tp == ("x86_64", "32bit"): +- # 32-bit build on 64-bit machine. +- _add_directory(library_dirs, "/usr/lib/i386-linux-gnu") +- else: +- for platform_ in arch_tp: +- +- if not platform_: +- continue +- +- if platform_ in ["x86_64", "64bit"]: +- _add_directory(library_dirs, "/lib64") +- _add_directory(library_dirs, "/usr/lib64") +- _add_directory( +- library_dirs, "/usr/lib/x86_64-linux-gnu") +- break +- elif platform_ in ["i386", "i686", "32bit"]: +- _add_directory( +- library_dirs, "/usr/lib/i386-linux-gnu") +- break +- elif platform_ in ["aarch64"]: +- _add_directory(library_dirs, "/usr/lib64") +- _add_directory( +- library_dirs, "/usr/lib/aarch64-linux-gnu") +- break +- elif platform_ in ["arm", "armv7l"]: +- _add_directory( +- library_dirs, "/usr/lib/arm-linux-gnueabi") +- break +- elif platform_ in ["ppc64"]: +- _add_directory(library_dirs, "/usr/lib64") +- _add_directory( +- library_dirs, "/usr/lib/ppc64-linux-gnu") +- _add_directory( +- library_dirs, "/usr/lib/powerpc64-linux-gnu") +- break +- elif platform_ in ["ppc"]: +- _add_directory(library_dirs, "/usr/lib/ppc-linux-gnu") +- _add_directory( +- library_dirs, "/usr/lib/powerpc-linux-gnu") +- break +- elif platform_ in ["s390x"]: +- _add_directory(library_dirs, "/usr/lib64") +- _add_directory( +- library_dirs, "/usr/lib/s390x-linux-gnu") +- break +- elif platform_ in ["s390"]: +- _add_directory(library_dirs, "/usr/lib/s390-linux-gnu") +- break +- else: +- raise ValueError( +- "Unable to identify Linux platform: `%s`" % platform_) +- +- # XXX Kludge. Above /\ we brute force support multiarch. Here we +- # try Barry's more general approach. Afterward, something should +- # work ;-) +- self.add_multiarch_paths() ++ pass + + elif sys.platform.startswith("gnu"): +- self.add_multiarch_paths() ++ pass + + elif sys.platform.startswith("freebsd"): + _add_directory(library_dirs, "/usr/local/lib") +@@ -345,21 +289,6 @@ + else: + TCL_ROOT = None + +- # add standard directories +- +- # look for tcl specific subdirectory (e.g debian) +- if _tkinter: +- tcl_dir = "/usr/include/tcl" + TCL_VERSION +- if os.path.isfile(os.path.join(tcl_dir, "tk.h")): +- _add_directory(include_dirs, tcl_dir) +- +- # standard locations +- _add_directory(library_dirs, "/usr/local/lib") +- _add_directory(include_dirs, "/usr/local/include") +- +- _add_directory(library_dirs, "/usr/lib") +- _add_directory(include_dirs, "/usr/include") +- + # on Windows, look for the OpenJPEG libraries in the location that + # the official installer puts them + if sys.platform == "win32": From 32a6ce8ea63f25fc14603d62d9feb7b48ceaef62 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 11 Jan 2016 01:34:12 +0100 Subject: [PATCH 2/3] linux: update to linux-4.4 Signed-off-by: Stephan Raue --- packages/linux/package.mk | 4 ++-- ...001-Thermal-initialize-thermal-zone-device-correctly.patch | 0 ...Thermal-handle-thermal-zone-device-properly-during-s.patch | 0 ...Thermal-do-thermal-zone-update-after-a-cooling-devic.patch | 0 .../patches/{4.4-rc8 => 4.4}/linux-003-no_dev_console.patch | 0 .../{4.4-rc8 => 4.4}/linux-004-fix-build-with-gcc-5.patch | 0 .../{4.4-rc8 => 4.4}/linux-051-ouya_controller_support.patch | 0 .../{4.4-rc8 => 4.4}/linux-052-XBOX_remote_support.patch | 0 .../{4.4-rc8 => 4.4}/linux-053-spinelplus-remote-0.2.patch | 0 ...n_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch | 0 .../linux-056-add_Adaptec_eHome_Infrared_Receiver.patch | 0 ...-Removed-MCE-customer-code-restriction-in-rc6-decode.patch | 0 ...inux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch | 0 ...linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch | 0 .../{4.4-rc8 => 4.4}/linux-062-imon_pad_ignore_diagonal.patch | 0 .../linux-063-xpad-fix_xbox360_wireless.patch | 0 .../linux-203-stb0899_enable_low_symbol_rate.patch | 0 .../linux-212-mantis_stb0899_faster_lock.patch | 0 .../patches/{4.4-rc8 => 4.4}/linux-221-ngene-octopus.todo | 0 .../{4.4-rc8 => 4.4}/linux-222-stb0899_signal_quality.patch | 0 .../linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch | 0 .../linux-227-ds3000-invalid-symbol-rate.patch | 0 .../{4.4-rc8 => 4.4}/linux-230-elgato-eyetv-sat-v3.patch | 0 .../patches/{4.4-rc8 => 4.4}/linux-706-Sitecom-N300.patch | 0 .../linux-950-saa716x_PCIe_interface_chipset.patch | 0 ...0.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch | 0 .../linux-999-i915-implement-passthrough-colors.patch | 0 .../{4.4-rc8 => 4.4}/linux-999-i915-use-legacy-turbo.patch | 0 ...9.02-0001-pm-disable-async-suspend-resume-by-default.patch | 0 ...eMMC-Don-t-initialize-partitions-on-RPMB-flagged-are.patch | 0 30 files changed, 2 insertions(+), 2 deletions(-) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-0001-Thermal-initialize-thermal-zone-device-correctly.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-0002-Thermal-handle-thermal-zone-device-properly-during-s.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-0003-Thermal-do-thermal-zone-update-after-a-cooling-devic.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-003-no_dev_console.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-004-fix-build-with-gcc-5.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-051-ouya_controller_support.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-052-XBOX_remote_support.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-053-spinelplus-remote-0.2.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-062-imon_pad_ignore_diagonal.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-063-xpad-fix_xbox360_wireless.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-203-stb0899_enable_low_symbol_rate.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-212-mantis_stb0899_faster_lock.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-221-ngene-octopus.todo (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-222-stb0899_signal_quality.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-227-ds3000-invalid-symbol-rate.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-230-elgato-eyetv-sat-v3.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-706-Sitecom-N300.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-950-saa716x_PCIe_interface_chipset.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-999-i915-implement-passthrough-colors.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-999-i915-use-legacy-turbo.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-999.02-0001-pm-disable-async-suspend-resume-by-default.patch (100%) rename packages/linux/patches/{4.4-rc8 => 4.4}/linux-999.05-eMMC-Don-t-initialize-partitions-on-RPMB-flagged-are.patch (100%) diff --git a/packages/linux/package.mk b/packages/linux/package.mk index af628dffe4..5e761064bb 100644 --- a/packages/linux/package.mk +++ b/packages/linux/package.mk @@ -40,8 +40,8 @@ case "$LINUX" in PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET imx6-status-led imx6-soc-fan" ;; *) - PKG_VERSION="4.4-rc8" - PKG_URL="http://www.kernel.org/pub/linux/kernel/v4.x/testing/$PKG_NAME-$PKG_VERSION.tar.xz" + PKG_VERSION="4.4" + PKG_URL="http://www.kernel.org/pub/linux/kernel/v4.x/$PKG_NAME-$PKG_VERSION.tar.xz" ;; esac diff --git a/packages/linux/patches/4.4-rc8/linux-0001-Thermal-initialize-thermal-zone-device-correctly.patch b/packages/linux/patches/4.4/linux-0001-Thermal-initialize-thermal-zone-device-correctly.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-0001-Thermal-initialize-thermal-zone-device-correctly.patch rename to packages/linux/patches/4.4/linux-0001-Thermal-initialize-thermal-zone-device-correctly.patch diff --git a/packages/linux/patches/4.4-rc8/linux-0002-Thermal-handle-thermal-zone-device-properly-during-s.patch b/packages/linux/patches/4.4/linux-0002-Thermal-handle-thermal-zone-device-properly-during-s.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-0002-Thermal-handle-thermal-zone-device-properly-during-s.patch rename to packages/linux/patches/4.4/linux-0002-Thermal-handle-thermal-zone-device-properly-during-s.patch diff --git a/packages/linux/patches/4.4-rc8/linux-0003-Thermal-do-thermal-zone-update-after-a-cooling-devic.patch b/packages/linux/patches/4.4/linux-0003-Thermal-do-thermal-zone-update-after-a-cooling-devic.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-0003-Thermal-do-thermal-zone-update-after-a-cooling-devic.patch rename to packages/linux/patches/4.4/linux-0003-Thermal-do-thermal-zone-update-after-a-cooling-devic.patch diff --git a/packages/linux/patches/4.4-rc8/linux-003-no_dev_console.patch b/packages/linux/patches/4.4/linux-003-no_dev_console.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-003-no_dev_console.patch rename to packages/linux/patches/4.4/linux-003-no_dev_console.patch diff --git a/packages/linux/patches/4.4-rc8/linux-004-fix-build-with-gcc-5.patch b/packages/linux/patches/4.4/linux-004-fix-build-with-gcc-5.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-004-fix-build-with-gcc-5.patch rename to packages/linux/patches/4.4/linux-004-fix-build-with-gcc-5.patch diff --git a/packages/linux/patches/4.4-rc8/linux-051-ouya_controller_support.patch b/packages/linux/patches/4.4/linux-051-ouya_controller_support.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-051-ouya_controller_support.patch rename to packages/linux/patches/4.4/linux-051-ouya_controller_support.patch diff --git a/packages/linux/patches/4.4-rc8/linux-052-XBOX_remote_support.patch b/packages/linux/patches/4.4/linux-052-XBOX_remote_support.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-052-XBOX_remote_support.patch rename to packages/linux/patches/4.4/linux-052-XBOX_remote_support.patch diff --git a/packages/linux/patches/4.4-rc8/linux-053-spinelplus-remote-0.2.patch b/packages/linux/patches/4.4/linux-053-spinelplus-remote-0.2.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-053-spinelplus-remote-0.2.patch rename to packages/linux/patches/4.4/linux-053-spinelplus-remote-0.2.patch diff --git a/packages/linux/patches/4.4-rc8/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch b/packages/linux/patches/4.4/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch rename to packages/linux/patches/4.4/linux-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3.6.114c13.patch diff --git a/packages/linux/patches/4.4-rc8/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch b/packages/linux/patches/4.4/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch rename to packages/linux/patches/4.4/linux-056-add_Adaptec_eHome_Infrared_Receiver.patch diff --git a/packages/linux/patches/4.4-rc8/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch b/packages/linux/patches/4.4/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch rename to packages/linux/patches/4.4/linux-057-Removed-MCE-customer-code-restriction-in-rc6-decode.patch diff --git a/packages/linux/patches/4.4-rc8/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch b/packages/linux/patches/4.4/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch rename to packages/linux/patches/4.4/linux-057-add_SMK_Manufacturing_Inc_Infrared_Receiver.patch diff --git a/packages/linux/patches/4.4-rc8/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch b/packages/linux/patches/4.4/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch rename to packages/linux/patches/4.4/linux-058.05-hid_sony-add_autorepeat_for_PS3_remotes.patch diff --git a/packages/linux/patches/4.4-rc8/linux-062-imon_pad_ignore_diagonal.patch b/packages/linux/patches/4.4/linux-062-imon_pad_ignore_diagonal.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-062-imon_pad_ignore_diagonal.patch rename to packages/linux/patches/4.4/linux-062-imon_pad_ignore_diagonal.patch diff --git a/packages/linux/patches/4.4-rc8/linux-063-xpad-fix_xbox360_wireless.patch b/packages/linux/patches/4.4/linux-063-xpad-fix_xbox360_wireless.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-063-xpad-fix_xbox360_wireless.patch rename to packages/linux/patches/4.4/linux-063-xpad-fix_xbox360_wireless.patch diff --git a/packages/linux/patches/4.4-rc8/linux-203-stb0899_enable_low_symbol_rate.patch b/packages/linux/patches/4.4/linux-203-stb0899_enable_low_symbol_rate.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-203-stb0899_enable_low_symbol_rate.patch rename to packages/linux/patches/4.4/linux-203-stb0899_enable_low_symbol_rate.patch diff --git a/packages/linux/patches/4.4-rc8/linux-212-mantis_stb0899_faster_lock.patch b/packages/linux/patches/4.4/linux-212-mantis_stb0899_faster_lock.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-212-mantis_stb0899_faster_lock.patch rename to packages/linux/patches/4.4/linux-212-mantis_stb0899_faster_lock.patch diff --git a/packages/linux/patches/4.4-rc8/linux-221-ngene-octopus.todo b/packages/linux/patches/4.4/linux-221-ngene-octopus.todo similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-221-ngene-octopus.todo rename to packages/linux/patches/4.4/linux-221-ngene-octopus.todo diff --git a/packages/linux/patches/4.4-rc8/linux-222-stb0899_signal_quality.patch b/packages/linux/patches/4.4/linux-222-stb0899_signal_quality.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-222-stb0899_signal_quality.patch rename to packages/linux/patches/4.4/linux-222-stb0899_signal_quality.patch diff --git a/packages/linux/patches/4.4-rc8/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch b/packages/linux/patches/4.4/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch rename to packages/linux/patches/4.4/linux-223-Fix-video-artifacts-with-tt-3600-s2-usb.patch diff --git a/packages/linux/patches/4.4-rc8/linux-227-ds3000-invalid-symbol-rate.patch b/packages/linux/patches/4.4/linux-227-ds3000-invalid-symbol-rate.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-227-ds3000-invalid-symbol-rate.patch rename to packages/linux/patches/4.4/linux-227-ds3000-invalid-symbol-rate.patch diff --git a/packages/linux/patches/4.4-rc8/linux-230-elgato-eyetv-sat-v3.patch b/packages/linux/patches/4.4/linux-230-elgato-eyetv-sat-v3.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-230-elgato-eyetv-sat-v3.patch rename to packages/linux/patches/4.4/linux-230-elgato-eyetv-sat-v3.patch diff --git a/packages/linux/patches/4.4-rc8/linux-706-Sitecom-N300.patch b/packages/linux/patches/4.4/linux-706-Sitecom-N300.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-706-Sitecom-N300.patch rename to packages/linux/patches/4.4/linux-706-Sitecom-N300.patch diff --git a/packages/linux/patches/4.4-rc8/linux-950-saa716x_PCIe_interface_chipset.patch b/packages/linux/patches/4.4/linux-950-saa716x_PCIe_interface_chipset.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-950-saa716x_PCIe_interface_chipset.patch rename to packages/linux/patches/4.4/linux-950-saa716x_PCIe_interface_chipset.patch diff --git a/packages/linux/patches/4.4-rc8/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch b/packages/linux/patches/4.4/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch rename to packages/linux/patches/4.4/linux-990.06-hda-Avoid-outputting-HDMI-audio-before-prepare-.patch diff --git a/packages/linux/patches/4.4-rc8/linux-999-i915-implement-passthrough-colors.patch b/packages/linux/patches/4.4/linux-999-i915-implement-passthrough-colors.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-999-i915-implement-passthrough-colors.patch rename to packages/linux/patches/4.4/linux-999-i915-implement-passthrough-colors.patch diff --git a/packages/linux/patches/4.4-rc8/linux-999-i915-use-legacy-turbo.patch b/packages/linux/patches/4.4/linux-999-i915-use-legacy-turbo.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-999-i915-use-legacy-turbo.patch rename to packages/linux/patches/4.4/linux-999-i915-use-legacy-turbo.patch diff --git a/packages/linux/patches/4.4-rc8/linux-999.02-0001-pm-disable-async-suspend-resume-by-default.patch b/packages/linux/patches/4.4/linux-999.02-0001-pm-disable-async-suspend-resume-by-default.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-999.02-0001-pm-disable-async-suspend-resume-by-default.patch rename to packages/linux/patches/4.4/linux-999.02-0001-pm-disable-async-suspend-resume-by-default.patch diff --git a/packages/linux/patches/4.4-rc8/linux-999.05-eMMC-Don-t-initialize-partitions-on-RPMB-flagged-are.patch b/packages/linux/patches/4.4/linux-999.05-eMMC-Don-t-initialize-partitions-on-RPMB-flagged-are.patch similarity index 100% rename from packages/linux/patches/4.4-rc8/linux-999.05-eMMC-Don-t-initialize-partitions-on-RPMB-flagged-are.patch rename to packages/linux/patches/4.4/linux-999.05-eMMC-Don-t-initialize-partitions-on-RPMB-flagged-are.patch From 390d30f543357830ee6a577e743613a8204e86fd Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 11 Jan 2016 02:03:40 +0100 Subject: [PATCH 3/3] llvm: update to llvm-3.7.1 Signed-off-by: Stephan Raue --- packages/lang/llvm/package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lang/llvm/package.mk b/packages/lang/llvm/package.mk index 4ce401dc87..8689901c13 100644 --- a/packages/lang/llvm/package.mk +++ b/packages/lang/llvm/package.mk @@ -17,7 +17,7 @@ ################################################################################ PKG_NAME="llvm" -PKG_VERSION="3.7.0" +PKG_VERSION="3.7.1" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL"