summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Felice <tony.felice@timesys.com>2014-08-18 17:48:30 -0400
committerOtavio Salvador <otavio@ossystems.com.br>2014-08-19 11:27:12 -0300
commit9761af6b059b3d6daac931b5e226b279f14fee32 (patch)
tree81673a33766434bfc5660cc97587d0f94d9f010c
parentf3a857f9b60476039a253d9168b32c8f1ff81ef0 (diff)
downloadmeta-fsl-arm-9761af6b059b3d6daac931b5e226b279f14fee32.tar.gz
kernel-module-mcc: Update to version 1.06
This includes the following main changes: * Increase max code size of MQX binary that can be loaded to SRAM from 128KB to 256KB. * Add compatibility for the 3.13+ Linux kernel. Functionality with the 3.0 kernel remains unchanged. * Integrate patch that removes bashisms from kernel-module-mcc's Makefile. Signed-off-by: Anthony Felice <tony.felice@timesys.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-kernel/kernel-module-mcc/kernel-module-mcc/remove_bashisms_kmod.patch18
-rw-r--r--recipes-kernel/kernel-module-mcc/kernel-module-mcc_1.06.bb (renamed from recipes-kernel/kernel-module-mcc/kernel-module-mcc_1.04.bb)7
2 files changed, 3 insertions, 22 deletions
diff --git a/recipes-kernel/kernel-module-mcc/kernel-module-mcc/remove_bashisms_kmod.patch b/recipes-kernel/kernel-module-mcc/kernel-module-mcc/remove_bashisms_kmod.patch
deleted file mode 100644
index ed051fb..0000000
--- a/recipes-kernel/kernel-module-mcc/kernel-module-mcc/remove_bashisms_kmod.patch
+++ /dev/null
@@ -1,18 +0,0 @@
1Replacing bash brace expansion with a Posix compliant syntax to make
2do_install succeed also when using a dash shell.
3
4Upstream-Status: Pending
5
6Signed-off-by: Max Krummenacher <max.oss.09@gmail.com>
7--- mcc-kmod-1.04/Makefile.orig 2014-08-09 11:22:34.890376334 +0200
8+++ mcc-kmod-1.04/Makefile 2014-08-09 11:23:49.720729465 +0200
9@@ -14,8 +14,7 @@
10 $(MAKE) -C $(KERNEL_SRC) M=$(PWD) modules_install INSTALL_MOD_PATH=$(DESTDIR)
11 @echo Copying mcc headers to toolchain
12 mkdir -p $(DESTDIR)/usr/include/linux
13- cp -f {mcc_linux.h,mcc_common.h,mcc_config.h} $(DESTDIR)/usr/include/linux/
14-
15+ cp -f mcc_linux.h mcc_common.h mcc_config.h $(DESTDIR)/usr/include/linux/
16
17 clean:
18 $(MAKE) -C $(KERNEL_SRC) M=$(PWD) clean
diff --git a/recipes-kernel/kernel-module-mcc/kernel-module-mcc_1.04.bb b/recipes-kernel/kernel-module-mcc/kernel-module-mcc_1.06.bb
index ef10a58..b215d9c 100644
--- a/recipes-kernel/kernel-module-mcc/kernel-module-mcc_1.04.bb
+++ b/recipes-kernel/kernel-module-mcc/kernel-module-mcc_1.06.bb
@@ -5,11 +5,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c8959abcbbe4d6676c58eab9354019e6"
5 5
6inherit module 6inherit module
7 7
8SRC_URI = "http://repository.timesys.com/buildsources/m/mcc-kmod/mcc-kmod-${PV}/mcc-kmod-${PV}.tar.bz2 \ 8SRC_URI = "http://repository.timesys.com/buildsources/m/mcc-kmod/mcc-kmod-${PV}/mcc-kmod-${PV}.tar.bz2"
9 file://remove_bashisms_kmod.patch "
10 9
11SRC_URI[md5sum] = "d72e8f6575605906be94ac2d26e6bc26" 10SRC_URI[md5sum] = "d0507968592af5d8781e8bdbbb249e7d"
12SRC_URI[sha256sum] = "f86a860e68cefdce70796572d97ddd4cc5e08d9f13117b431599add55bf1a651" 11SRC_URI[sha256sum] = "43f834ddf9845da843c7790a307a0dbc8b04a40deed06aed7c3c99ad3a273f6c"
13 12
14S = "${WORKDIR}/mcc-kmod-${PV}" 13S = "${WORKDIR}/mcc-kmod-${PV}"
15 14