aboutsummaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-04-02 16:00:52 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-03 14:04:58 +0100
commitf64aae05005b4202af9078e04a511c0c832d01d1 (patch)
tree7d89aeed05567df505d0a77056b80d291cc1ef97 /documentation
parent12e5386477715731e4cf9d18d7eec4b15df2a3f8 (diff)
downloadopenembedded-core-contrib-f64aae05005b4202af9078e04a511c0c832d01d1.tar.gz
documentation/dev-manual/dev-manual-common-tasks.xml: Updated makefile section
Fixes [YOCTO #1888] Per Darren Hart I swapped in the real example and added some text explaining what the user needs to do if their source is from a tarball. Reported-by: Darren Hart <darren.hart@intel.com> (From yocto-docs rev: a1991f0b6f32a0a296ae4d115a834ed61042720b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml48
1 files changed, 37 insertions, 11 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 83ee5b55ac..aadb43238b 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -788,25 +788,51 @@
SECTION = "base"
DEPENDS = "zlib lzo e2fsprogs util-linux"
HOMEPAGE = "http://www.linux-mtd.infradead.org/"
- LICENSE = "GPLv2"
+ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
- file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c"
+ file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c"
- SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=v${PV}"
+ SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=995cfe51b0a3cf32f381c140bf72b21bf91cef1b \
+ file://add-exclusion-to-mkfs-jffs2-git-2.patch"
S = "${WORKDIR}/git/"
- EXTRA_OEMAKE = "'CC=${CC}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' \
- 'BUILDDIR=${S}'"
+ PR = "r1"
+
+ EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' \
+ 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' 'BUILDDIR=${S}'"
do_install () {
- oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} \
- INCLUDEDIR=${includedir}
- install -d ${D}${includedir}/mtd/
- for f in ${S}/include/mtd/*.h; do
- install -m 0644 $f ${D}${includedir}/mtd/
- done
+ oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} \
+ INCLUDEDIR=${includedir}
+ install -d ${D}${includedir}/mtd/
+ for f in ${S}/include/mtd/*.h; do
+ install -m 0644 $f ${D}${includedir}/mtd/
+ done
}
+
+ PARALLEL_MAKE = ""
+
+ BBCLASSEXTEND = "native"
+ </literallayout>
+ </para>
+
+ <para>
+ If your sources are available as a tarball instead of a Git repository, you
+ will need to provide the URL to the tarball as well as an
+ <filename>md5</filename> or <filename>sha256</filename> sum of
+ the download.
+ Here is an example:
+ <literallayout class='monospaced'>
+ SRC_URI="ftp://ftp.infradead.org/pub/mtd-utils/mtd-utils-1.4.9.tar.bz2"
+ SRC_URI[md5sum]="82b8e714b90674896570968f70ca778b"
+ </literallayout>
+ You can generate the <filename>md5</filename> or <filename>sha256</filename> sums
+ by using the <filename>md5sum</filename> or <filename>sha256sum</filename> commands
+ with the target file as the only argument.
+ Here is an example:
+ <literallayout class='monospaced'>
+ $ md5sum mtd-utils-1.4.9.tar.bz2 82b8e714b90674896570968f70ca778b mtd-utils-1.4.9.tar.bz2
</literallayout>
</para>
</section>