diff options
author | Rich Schmitt <B43082@freescale.com> | 2015-01-09 17:09:09 +0800 |
---|---|---|
committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2015-01-12 16:56:06 +0800 |
commit | b99b6101764b8fc76fc4bcd309d00cb94a625b7b (patch) | |
tree | b2a57f8aabc5befc0cd4fecb6f2a3d194ad24ed7 | |
parent | 3e377f6b33ec471677aeccb450c4b84926c3130f (diff) | |
download | meta-freescale-b99b6101764b8fc76fc4bcd309d00cb94a625b7b.tar.gz |
uio-seville: update to revision 35af73f
This includes following fixes:
35af73f Fix: Copy user-space buffer of injected control frame to kernel
00c8040 Add multiple error labels in the probe function
2835689 Fix: Remove memory leaks when the module is removed or fails on probing
d770a37 Fix: Remove compile warning on 32b
89e29fc Fix: Remove unnecessary checks
adbb47e Beautify: Rename macros into more proper names
d5cac6e Add "poll()" function for NPI device
220cee3 Replace rescheduling with work queues
2a5fe4e Add cacheline support for extraction of control frames
6f14f0b Fix: UIO device might not be removed properly if module fails to initialize
2dcea55 Removed unecessary includes
1077880 Add UIO driver
68ab7bd Initial empty repository
update COMPATIBLE_MACHINE to use soc_family.
Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
-rwxr-xr-x | meta-fsl-ppc/recipes-kernel/uio-seville/uio-seville_0.1.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta-fsl-ppc/recipes-kernel/uio-seville/uio-seville_0.1.bb b/meta-fsl-ppc/recipes-kernel/uio-seville/uio-seville_0.1.bb index 0307a6dd..51e1475a 100755 --- a/meta-fsl-ppc/recipes-kernel/uio-seville/uio-seville_0.1.bb +++ b/meta-fsl-ppc/recipes-kernel/uio-seville/uio-seville_0.1.bb | |||
@@ -2,11 +2,14 @@ DESCRIPTION = "UIO driver for T1040 L2 Switch" | |||
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e" |
4 | 4 | ||
5 | SRC_URI = "git://git.freescale.com/ppc/sdk/l2switch-uio.git" | 5 | SRC_URI = "git://git.freescale.com/ppc/sdk/l2switch-uio.git;branch=sdk-v1.7.x" |
6 | SRCREV = "1077880ff3557d44dc5dd9fe5e2f4ee1474fb25f" | 6 | SRCREV = "35af73f3ba00745777f32787400d9eb0317d7ff5" |
7 | 7 | ||
8 | inherit module | 8 | inherit module |
9 | 9 | ||
10 | S = "${WORKDIR}/git/uio-driver" | 10 | S = "${WORKDIR}/git/uio-driver" |
11 | 11 | ||
12 | COMPATIBLE_MACHINE = "(t1040qds|t1040rdb|t1040rdb-64b)" | 12 | COMPATIBLE_MACHINE ?= "(none)" |
13 | COMPATIBLE_MACHINE_t1040 = ".*" | ||
14 | COMPATIBLE_MACHINE_t1042 = ".*" | ||
15 | |||