diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2010-04-12 10:39:50 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-04-12 20:16:13 +0200 |
commit | 16f464bd8cff6b6a27d9bfe691f7adc875d01ac2 (patch) | |
tree | d235ad1dba36225ca211cc7c606ecaab4ff883c5 /recipes/linux/linux_2.6.30.bb | |
parent | 44985d56bc556786812a0a02d6219afd31a7381d (diff) |
recipes: move checksums to recipes from checksums.ini, part 2 manual adjustement
* all: multiple checked items in SRC_URI (needs name= param)
* other fixes like non-existent URL, checksums moved ot .inc or included .bb (ie for -native)
* ...
* tested with micro/micro-uclibc/Angstrom/SHR with
SOURCE_MIRROR_FETCH="True" (ignoring COMPATIBLE_*
* also tested -c fetch with s/SRC_URI_append_[^ ]*/SRC_URI_append/g and
s/SRC_URI_[^ ]*/SRC_URI_append/g to catch all URLs used only for
distro/machine/virtual override (see
http://build.shr-project.org/tests/jama/SRC_URI.removeOverrides.patch)
* in case I downloaded different checksum then what was in checksums.ini
I used the old one from checksums.ini and put my checksum in comment
* I'll send to ML list of recipes which cannot be downloaded (weren't
converted) and where I got different checksums
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes/linux/linux_2.6.30.bb')
-rw-r--r-- | recipes/linux/linux_2.6.30.bb | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/recipes/linux/linux_2.6.30.bb b/recipes/linux/linux_2.6.30.bb index 05cb652a07..7f97c1a816 100644 --- a/recipes/linux/linux_2.6.30.bb +++ b/recipes/linux/linux_2.6.30.bb @@ -15,9 +15,9 @@ DEFAULT_PREFERENCE_kixrp435 = "1" DEFAULT_PREFERENCE_at91sam9263ek = "-1" DEFAULT_PREFERENCE_tosa = "-1" -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ - ${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/patch-${PV}.10.bz2;patch=1 \ - http://maxim.org.za/AT91RM9200/2.6/2.6.30-at91.patch.gz;patch=1 \ +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2;name=kernel \ + ${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/patch-${PV}.10.bz2;patch=1;name=stablepatch \ + http://maxim.org.za/AT91RM9200/2.6/2.6.30-at91.patch.gz;patch=1;name=at91patch \ file://aufs2-30.patch;patch=1 \ file://defconfig" @@ -26,5 +26,10 @@ SRC_URI_append_mpc8315e-rdb = " file://mpc8315erdb-add-msi-to-dts.patch;patch=1" SRC_URI_append_at91sam9263ek = " file://hrw-linux-2.6.30-exp.patch;patch=1 " -SRC_URI[md5sum] = "7a80058a6382e5108cdb5554d1609615" -SRC_URI[sha256sum] = "d7b9f19b92fd5c693c16cd62f441d051b699f28ec6a175d1b464e58bacd8c78f" +SRC_URI[kernel.md5sum] = "7a80058a6382e5108cdb5554d1609615" +SRC_URI[kernel.sha256sum] = "d7b9f19b92fd5c693c16cd62f441d051b699f28ec6a175d1b464e58bacd8c78f" + +SRC_URI[stablepatch.md5sum] = "6485fe0cf0f0220493647505bfd2f7b0" +SRC_URI[stablepatch.sha256sum] = "a1ffb806d7d0083aa8d0525cbccede4172f4a44c8df1ddfeece629b6d8304201" +SRC_URI[at91patch.md5sum] = "f13ab353b11329ce3d605b6f40e77fa6" +SRC_URI[at91patch.sha256sum] = "41991e8aa2e5fe8e5dfd47b1e5c446fa03c3ee96a5eae54fd6ec15d1d9afef30" |