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/busybox | |
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/busybox')
-rw-r--r-- | recipes/busybox/busybox_1.7.2.bb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/recipes/busybox/busybox_1.7.2.bb b/recipes/busybox/busybox_1.7.2.bb index f9dbaa9ef9..cd22797129 100644 --- a/recipes/busybox/busybox_1.7.2.bb +++ b/recipes/busybox/busybox_1.7.2.bb @@ -18,10 +18,10 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \ SRC_URI[tarball.md5sum] = "c91ec9756e2000073a9dd8fa9fc3f89e" SRC_URI[tarball.sha256sum] = "83c4cc813124a43f13e2ebb83cea9da9909d63891b824bf4bc7006f0567db7cf" -SRC_URI += "http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-ash.patch;patch=1 \ - http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-iptun.patch;patch=1 \ - http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-logger.patch;patch=1 \ - http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-tail.patch;patch=1 \ +SRC_URI += "http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-ash.patch;patch=1;name=patch1 \ + http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-iptun.patch;patch=1;name=patch2 \ + http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-logger.patch;patch=1;name=patch3 \ + http://busybox.net/downloads/fixes-1.7.2/busybox-1.7.2-tail.patch;patch=1;name=patch4 \ file://defconfig" EXTRA_OEMAKE += "V=1 ARCH=${TARGET_ARCH} CROSS_COMPILE=${TARGET_PREFIX}" @@ -120,11 +120,11 @@ pkg_prerm_${PN} () { while read link; do case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; esac; bn=`basename $link`; sh /usr/bin/update-alternatives --remove $bn $to; done </etc/busybox.links } -SRC_URI[md5sum] = "4149857c0b2c7f3d52a1f2cec5d7778d" -SRC_URI[sha256sum] = "73706e7d77144a6270da02ede61cde3c2e3b0e716d879737ac9d478b29233ba9" -SRC_URI[md5sum] = "6c5f498e0677fd91b5b0e85ec5ac3b23" -SRC_URI[sha256sum] = "b80a8c173c7a7a40a504585c6af5c74396c8fdbbb1cec179de9edcc030aa6a9a" -SRC_URI[md5sum] = "43c292e93bf92623aaa29dd0e243e9a9" -SRC_URI[sha256sum] = "5117584a563c512b68cd9678d3cf54e6186f5a062836398791385f8ed73cca86" -SRC_URI[md5sum] = "c211189556c59a2665af45bffe5a5878" -SRC_URI[sha256sum] = "f44c3c2d7d9b3fc8a5f9fb6ac587ae4170d2515d72f9e76deb8c071ce9847abe" +SRC_URI[patch1.md5sum] = "4149857c0b2c7f3d52a1f2cec5d7778d" +SRC_URI[patch1.sha256sum] = "73706e7d77144a6270da02ede61cde3c2e3b0e716d879737ac9d478b29233ba9" +SRC_URI[patch2.md5sum] = "6c5f498e0677fd91b5b0e85ec5ac3b23" +SRC_URI[patch2.sha256sum] = "b80a8c173c7a7a40a504585c6af5c74396c8fdbbb1cec179de9edcc030aa6a9a" +SRC_URI[patch3.md5sum] = "43c292e93bf92623aaa29dd0e243e9a9" +SRC_URI[patch3.sha256sum] = "5117584a563c512b68cd9678d3cf54e6186f5a062836398791385f8ed73cca86" +SRC_URI[patch4.md5sum] = "c211189556c59a2665af45bffe5a5878" +SRC_URI[patch4.sha256sum] = "f44c3c2d7d9b3fc8a5f9fb6ac587ae4170d2515d72f9e76deb8c071ce9847abe" |