diff options
-rw-r--r-- | meta-oe/recipes-support/cramfs/cramfs_cvs.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/cramfs/cramfs_cvs.bb b/meta-oe/recipes-support/cramfs/cramfs_cvs.bb new file mode 100644 index 000000000..667097c86 --- /dev/null +++ b/meta-oe/recipes-support/cramfs/cramfs_cvs.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | DESCRIPTION = "Builds cramfs filesystems for embedded systems" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://${WORKDIR}/linux/COPYING;md5=9579385572eb40eded61dcb07e0038a4" | ||
4 | DEPENDS = "zlib" | ||
5 | SRCDATE = "20110110" | ||
6 | PV = "1.1+cvs${SRCDATE}" | ||
7 | |||
8 | SRC_URI = "cvs://anonymous@cramfs.cvs.sourceforge.net/cvsroot/cramfs;module=linux" | ||
9 | S = "${WORKDIR}/linux/scripts/cramfs" | ||
10 | |||
11 | EXTRA_OEMAKE = "\ | ||
12 | 'CC=${CC}' \ | ||
13 | 'CFLAGS=${CFLAGS}' \ | ||
14 | 'LDFLAGS=${LDFLAGS}' \ | ||
15 | " | ||
16 | |||
17 | |||
18 | do_compile_prepend() { | ||
19 | ln -s GNUmakefile Makefile | ||
20 | } | ||
21 | |||
22 | do_install() { | ||
23 | install -d ${D}${bindir} | ||
24 | install mkcramfs ${D}${bindir} | ||
25 | install cramfsck ${D}${bindir} | ||
26 | } | ||
27 | |||
28 | BBCLASSEXTEND = "native" | ||
29 | |||