diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2011-12-23 12:21:11 +0000 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2011-12-23 16:05:32 +0000 |
commit | 5f4469e31f6ee6d137cdc44c82cac4a0741d3dcc (patch) | |
tree | aff5ba5087a53496d21103e3d63b85c09397ab7e /recipes-kernel | |
parent | bda7721c422dc34d77a07e9c0b5955e3e8676902 (diff) | |
download | meta-fsl-arm-5f4469e31f6ee6d137cdc44c82cac4a0741d3dcc.tar.gz |
linux-imx: use git repository to fetch the kernel
This removes the patches tarball and simplify the recipe a bit.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-kernel')
-rw-r--r-- | recipes-kernel/linux/linux-imx/linux-2.6.35.3-imx_11.09.01.bz2 | bin | 6634466 -> 0 bytes | |||
-rw-r--r-- | recipes-kernel/linux/linux-imx_2.6.35.3.bb | 21 |
2 files changed, 3 insertions, 18 deletions
diff --git a/recipes-kernel/linux/linux-imx/linux-2.6.35.3-imx_11.09.01.bz2 b/recipes-kernel/linux/linux-imx/linux-2.6.35.3-imx_11.09.01.bz2 deleted file mode 100644 index 1c0c830..0000000 --- a/recipes-kernel/linux/linux-imx/linux-2.6.35.3-imx_11.09.01.bz2 +++ /dev/null | |||
Binary files differ | |||
diff --git a/recipes-kernel/linux/linux-imx_2.6.35.3.bb b/recipes-kernel/linux/linux-imx_2.6.35.3.bb index 804ba97..759e904 100644 --- a/recipes-kernel/linux/linux-imx_2.6.35.3.bb +++ b/recipes-kernel/linux/linux-imx_2.6.35.3.bb | |||
@@ -4,29 +4,14 @@ | |||
4 | DESCRIPTION = "Linux kernel for imx platforms" | 4 | DESCRIPTION = "Linux kernel for imx platforms" |
5 | LICENSE = "GPLv2" | 5 | LICENSE = "GPLv2" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" |
7 | PR = "r2" | 7 | PR = "r3" |
8 | 8 | ||
9 | inherit kernel | 9 | inherit kernel |
10 | COMPATIBLE_MACHINE = "(imx53qsb|imx53ard)" | 10 | COMPATIBLE_MACHINE = "(imx53qsb|imx53ard)" |
11 | 11 | ||
12 | REL="11.09.01" | 12 | SRC_URI = "git://opensource.freescale.com/pub/scm/imx/linux-2.6-imx.git;tag=rel_imx_2.6.35_11.09.01;protocol=http \ |
13 | SRC_URI = "http://www.kernel.org/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2;name=source \ | ||
14 | file://linux-${PV}-imx_${REL}.bz2;name=patchs \ | ||
15 | file://egalax_ts-enable-single-event-support.patch \ | 13 | file://egalax_ts-enable-single-event-support.patch \ |
16 | file://defconfig \ | 14 | file://defconfig \ |
17 | " | 15 | " |
18 | SRC_URI[source.md5sum] = "5ebff49fd65a7bad234ce103b0b3ede0" | ||
19 | SRC_URI[source.sha256sum] = "83149a9ab30f8dfe45c63d735018422909cf0dd3f5b5501e42f7349f4044f5f1" | ||
20 | SRC_URI[patchs.md5sum] = "02b43a4ed6e4d0adc6841ee07fee02f1" | ||
21 | SRC_URI[patchs.sha256sum] = "7d3adf8f83e49b57f3de74e6684bc6ffc823de4f17b817535bb9a94a6a44ce5b" | ||
22 | 16 | ||
23 | do_apply_dist_patchs () { | 17 | S = "${WORKDIR}/git" |
24 | # Apply distributed kernel patchs | ||
25 | cd ${S} | ||
26 | tar xf ${WORKDIR}/linux-${PV}-imx_${REL} | ||
27 | ./patches/patch-kernel.sh | ||
28 | } | ||
29 | |||
30 | addtask apply_dist_patchs after do_unpack before do_patch | ||
31 | |||
32 | S = "${WORKDIR}/linux-${PV}" | ||