From d5e730317a4d1aa94bdfbf25654847fe788d70df Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Wed, 5 Aug 2015 08:50:26 -0300 Subject: Drop Freescale official Linux kernel for i.MX23, i.MX28 and i.MX5 SoC families The Linux kernel provided by Freescale for i.MX28 and i.MX5 is too old (2.6.35.3) and there are no plans to upgrade it, as the OE-Core is going to use GCC 5.2 as default compiler soon and it is not possible to compile this kernel with the new toolchain, thus the removal. The metadata related to the i.MX23, i.MX28 and i.MX5 SoC family, which is dependant of this Linux kernel support, has been removed in this commit so if someone ever wants to bring it back it is easy to find out all the necessary changes. The recipes affected are: - alsa-state - amd-gpu-x11-bin - gtk+3 - imx-lib - imx-test - imx-vpu - libfslcodec - linux-imx - mesa - qt4-embedded-free - qt4-x11-free - qtbase - xf86-video-imxfb Signed-off-by: Otavio Salvador Acked-by: Daiane Angolini --- recipes-bsp/imx-test/imx-test.inc | 4 --- ...ix-build-in-OpenEmbedded-Core-environment.patch | 30 ---------------------- recipes-bsp/imx-test/imx-test/clocks.sh | 29 --------------------- .../imx-test/imx-test/revert_epdc_hdr_change.patch | 30 ---------------------- recipes-bsp/imx-test/imx-test_5.1.bb | 5 +--- 5 files changed, 1 insertion(+), 97 deletions(-) delete mode 100644 recipes-bsp/imx-test/imx-test/Fix-build-in-OpenEmbedded-Core-environment.patch delete mode 100755 recipes-bsp/imx-test/imx-test/clocks.sh delete mode 100644 recipes-bsp/imx-test/imx-test/revert_epdc_hdr_change.patch (limited to 'recipes-bsp/imx-test') diff --git a/recipes-bsp/imx-test/imx-test.inc b/recipes-bsp/imx-test/imx-test.inc index a459ea91d..7174b0525 100644 --- a/recipes-bsp/imx-test/imx-test.inc +++ b/recipes-bsp/imx-test/imx-test.inc @@ -3,12 +3,10 @@ SUMMARY = "Test programs for IMX BSP" DESCRIPTION = "Unit tests for the IMX BSP" SECTION = "base" -DEPENDS_mx5 = "virtual/kernel imx-lib imx-vpu" DEPENDS_mx6q = "virtual/kernel imx-lib imx-vpu" DEPENDS_mx6dl = "virtual/kernel imx-lib imx-vpu" DEPENDS_mx6sl = "virtual/kernel imx-lib" DEPENDS_mx6sx = "virtual/kernel imx-lib" -DEPENDS_mxs = "virtual/kernel" DEPENDS_mx6ul = "virtual/kernel imx-lib" DEPENDS_mx7 = "virtual/kernel imx-lib" @@ -28,8 +26,6 @@ INHIBIT_PACKAGE_DEBUG_SPLIT = "1" PLATFORM_mx6 = "IMX6Q" PLATFORM_mx6sl = "IMX6SL" PLATFORM_mx6sx = "IMX6SX" -PLATFORM_mx53 = "IMX53" -PLATFORM_mx51 = "IMX51" PLATFORM_mx7 = "IMX7D" PLATFORM_mx6ul = "IMX6UL" diff --git a/recipes-bsp/imx-test/imx-test/Fix-build-in-OpenEmbedded-Core-environment.patch b/recipes-bsp/imx-test/imx-test/Fix-build-in-OpenEmbedded-Core-environment.patch deleted file mode 100644 index 7497e91da..000000000 --- a/recipes-bsp/imx-test/imx-test/Fix-build-in-OpenEmbedded-Core-environment.patch +++ /dev/null @@ -1,30 +0,0 @@ -From fd826140db0f2a867ef588cccf2e5322cc77126a Mon Sep 17 00:00:00 2001 -From: Otavio Salvador -Date: Mon, 19 Jan 2015 16:56:29 -0200 -Subject: [PATCH] Fix build in OpenEmbedded-Core environment -Organization: O.S. Systems Software LTDA. - -Some of the unit-tests were not being built due to differences on how -the build system behaves when running inside of the OE-Core. This -fixes those minor issues and increases the number of tests available. - -Upstream-Status: Pending - -Signed-off-by: Otavio Salvador - -diff --git a/test/ar3k_bt/Makefile b/test/ar3k_bt/Makefile -index 92e2901..75d3e78 100755 ---- a/test/ar3k_bt/Makefile -+++ b/test/ar3k_bt/Makefile -@@ -21,7 +21,7 @@ all: $(OBJS) - CFLAGS += -lbluetooth - - $(OBJDIR)/hciattach-ar3k.bin : -- $(CC) ${INC} -Wall -lbluetooth -g hciattach_ath3k.c hciattach.c hciattach_qualcomm.c hciattach_st.c hciattach_tialt.c hciattach_ti.c -o hciattach-ar3k.bin -+ $(CC) ${INC} -Wall -lbluetooth -g hciattach_ath3k.c hciattach.c hciattach_qualcomm.c hciattach_st.c hciattach_tialt.c hciattach_ti.c -o $(OBJDIR)/hciattach-ar3k.bin - - clean: - rm -f *.o hciattach-ar3k.bin --- -2.1.4 - diff --git a/recipes-bsp/imx-test/imx-test/clocks.sh b/recipes-bsp/imx-test/imx-test/clocks.sh deleted file mode 100755 index 2121bef6b..000000000 --- a/recipes-bsp/imx-test/imx-test/clocks.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -# This script is taken directly from the section 5.10 of the Freescale Application Note -# AN4509 and it simple prints the CPU clocks in a nice format - -saved_path=$PWD -if ! mount|grep -sq '/sys/kernel/debug'; then - mount -t debugfs none /sys/kernel/debug -fi - -printf "%-24s %-20s %3s %9s\n" "clock" "parent" "use" "flags" "rate" - -for foo in $(find /sys/kernel/debug/clock -type d); do - if [ "$foo" = '/sys/kernel/debug/clock' ]; then - continue - fi - cd $foo - ec="$(cat usecount)" - rate="$(cat rate)" - flag="$(cat flags)" - clk="$(basename $foo)" - cd .. - parent="$(basename $PWD)" - if [ "$parent" = 'clock' ]; then - parent=" ---" - fi - printf "%-24s %-24s %2d %2d %10d\n" "$clk" "$parent" "$ec" "$flag" "$rate" - cd $saved_path -done diff --git a/recipes-bsp/imx-test/imx-test/revert_epdc_hdr_change.patch b/recipes-bsp/imx-test/imx-test/revert_epdc_hdr_change.patch deleted file mode 100644 index 4fb0564af..000000000 --- a/recipes-bsp/imx-test/imx-test/revert_epdc_hdr_change.patch +++ /dev/null @@ -1,30 +0,0 @@ -From e559eb0a9573b9011c03efaf42364dce67af893a Mon Sep 17 00:00:00 2001 -From: Lauren Post -Date: Tue, 10 Sep 2013 10:58:28 -0500 -Subject: [PATCH] ENGR00279068-2 epdc_test_driver: Update header name change - of mxc_epdc.h - -Upstream-Status: Pending - -Signed-off-by: Lauren Post -Signed-off-by: Frank Li ---- - module_test/epdc_test_driver.c | 4 ++-- - 1 file changed, 1 insertions(+), 1 deletions(-) - -diff --git a/module_test/epdc_test_driver.c b/module_test/epdc_test_driver.c -index fb15aec..447246f 100644 ---- a/module_test/epdc_test_driver.c -+++ b/module_test/epdc_test_driver.c -@@ -36,7 +36,7 @@ - - #include - #include --#include -+#include - - /* major number of device */ - static int gMajor; --- -1.7.9.5 - diff --git a/recipes-bsp/imx-test/imx-test_5.1.bb b/recipes-bsp/imx-test/imx-test_5.1.bb index ff42c7fe5..82df7652a 100644 --- a/recipes-bsp/imx-test/imx-test_5.1.bb +++ b/recipes-bsp/imx-test/imx-test_5.1.bb @@ -2,10 +2,7 @@ include imx-test.inc -SRC_URI_append_mx5 = " file://clocks.sh" -SRC_URI_append_mxs = " file://clocks.sh" - SRC_URI[md5sum] = "5991439d4b20abac1095688164d26f40" SRC_URI[sha256sum] = "042d0b03d7838395a6b35d0ca7159f1f4b6cf3055dcc4a12a1b66488fca987b1" -COMPATIBLE_MACHINE = "(mxs|mx5|mx6|mx7)" +COMPATIBLE_MACHINE = "(mx6|mx7)" -- cgit v1.2.3-54-g00ecf