diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2013-08-29 23:39:54 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-09-03 19:49:41 +0200 |
commit | 0879762ec4206333173d6a0abaa21f1398bac2a4 (patch) | |
tree | 6085007e42650a136e0296c3387dea41396a1170 | |
parent | 636ce2e82daff0751a366f30bd2582a4be9a6aa7 (diff) | |
download | meta-openembedded-0879762ec4206333173d6a0abaa21f1398bac2a4.tar.gz |
cramfs: remove, we use mkfs.cramfs from util-linux
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Acked-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-filesystems/recipes-filesystems/cramfs/cramfs_1.1.bb | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/meta-filesystems/recipes-filesystems/cramfs/cramfs_1.1.bb b/meta-filesystems/recipes-filesystems/cramfs/cramfs_1.1.bb deleted file mode 100644 index 0bca0e1f4..000000000 --- a/meta-filesystems/recipes-filesystems/cramfs/cramfs_1.1.bb +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | DESCRIPTION = "Builds cramfs filesystems for embedded systems" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" | ||
4 | DEPENDS = "zlib" | ||
5 | |||
6 | PE = "1" | ||
7 | |||
8 | SRC_URI = "http://sourceforge.net/projects/cramfs/files/cramfs/1.1/${BPN}-${PV}.tar.gz" | ||
9 | |||
10 | SRC_URI[md5sum] = "d3912b9f7bf745fbfea68f6a9b9de30f" | ||
11 | SRC_URI[sha256sum] = "133caca2c4e7c64106555154ee0ff693f5cf5beb9421ce2eb86baee997d22368" | ||
12 | |||
13 | EXTRA_OEMAKE = "\ | ||
14 | 'CC=${CC}' \ | ||
15 | 'CFLAGS=${CFLAGS}' \ | ||
16 | 'LDFLAGS=${LDFLAGS}' \ | ||
17 | " | ||
18 | |||
19 | do_compile_prepend() { | ||
20 | ln -sf GNUmakefile Makefile | ||
21 | } | ||
22 | |||
23 | do_install() { | ||
24 | install -d ${D}${bindir} | ||
25 | install mkcramfs ${D}${bindir} | ||
26 | install cramfsck ${D}${bindir} | ||
27 | } | ||
28 | |||
29 | BBCLASSEXTEND = "native" | ||